Sha256: 6b856ef3bf1541116252bd2fabc3f0fdb10c6bbc29efbabf03abc724d6b375e9
Contents?: true
Size: 1.51 KB
Versions: 21
Compression:
Stored size: 1.51 KB
Contents
# encoding: utf-8 require "rails/generators/named_base" require "rails/generators/active_model" module Mongoid module Generators class Base < ::Rails::Generators::NamedBase 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 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 delete "#{name}.delete" end def destroy "#{name}.destroy" end end end end module Rails module Generators class GeneratedAttribute 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
21 entries across 21 versions & 2 rubygems