Sha256: b6eed2f0bf414d9dcbea47ad36bb4e08d3ba3eb169656378ea9bc794befa43b0
Contents?: true
Size: 1.5 KB
Versions: 171
Compression:
Stored size: 1.5 KB
Contents
# encoding: utf-8 require "rails/generators/named_base" require "rails/generators/active_model" module Mongoid #:nodoc: module Generators #:nodoc: class Base < ::Rails::Generators::NamedBase #:nodoc: def self.source_root @_mongoid_source_root ||= File.expand_path("../#{base_name}/#{generator_name}/templates", __FILE__) end unless methods.include?(:module_namespacing) # This is only defined on Rails edge at the moment, so include here now # as per: https://github.com/mongoid/mongoid/issues/744 def module_namespacing(&block) yield if block end end end class ActiveModel < ::Rails::Generators::ActiveModel #:nodoc: def self.all(klass) "#{klass}.all" end def self.find(klass, params=nil) "#{klass}.find(#{params})" end def self.build(klass, params=nil) if params "#{klass}.new(#{params})" else "#{klass}.new" end end def save "#{name}.save" end def update_attributes(params=nil) "#{name}.update_attributes(#{params})" end def errors "#{name}.errors" end def destroy "#{name}.destroy" end end end end module Rails module Generators class GeneratedAttribute #:nodoc: def type_class return "Time" if type.to_s == "datetime" return "String" if type.to_s == "text" type.to_s.camelcase end end end end
Version data entries
171 entries across 79 versions & 4 rubygems