lib/scrivito/generator_helper.rb in scrivito_sdk-1.9.1 vs lib/scrivito/generator_helper.rb in scrivito_sdk-1.10.0.rc1

- old
+ new

@@ -1,13 +1,11 @@ module Scrivito module GeneratorHelper - class << self - def attribute_definition(arg) - if %w(enum multienum).include?(arg.type.to_s) - "attribute :#{arg.name}, :#{arg.type}, values: []" - else - "attribute :#{arg.name}, :#{arg.type}" - end + def self.attribute_definition(arg) + if %w(enum multienum).include?(arg.type.to_s) + "attribute :#{arg.name}, :#{arg.type}, values: []" + else + "attribute :#{arg.name}, :#{arg.type}" end end end end