From 0b5db19fd366fbb92b367cd1994c51d355ff6e9e Mon Sep 17 00:00:00 2001 From: Ariel Davis Date: Thu, 1 Aug 2019 11:26:59 -0700 Subject: [PATCH] Super up more --- lib/thor/actions.rb | 1 + lib/thor/invocation.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/thor/actions.rb b/lib/thor/actions.rb index 6b10862cd..d932fb6da 100644 --- a/lib/thor/actions.rb +++ b/lib/thor/actions.rb @@ -12,6 +12,7 @@ module Actions attr_accessor :behavior def self.included(base) #:nodoc: + super(base) base.extend ClassMethods end diff --git a/lib/thor/invocation.rb b/lib/thor/invocation.rb index b1114098f..4c7f89366 100644 --- a/lib/thor/invocation.rb +++ b/lib/thor/invocation.rb @@ -1,6 +1,7 @@ class Thor module Invocation def self.included(base) #:nodoc: + super(base) base.extend ClassMethods end