can_be_imported.rb 201 B

12345678910
  1. module CanBeImported
  2. extend ActiveSupport::Concern
  3. # methods defined here are going to extend the class, not the instance of it
  4. class_methods do
  5. def importable?
  6. true
  7. end
  8. end
  9. end