7 lines
121 B
Ruby
7 lines
121 B
Ruby
|
module Importable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
attr_accessor :importing
|
||
|
alias_method :importing?, :importing
|
||
|
end
|