Sha256: e85040f34946a1ff7d5dac0cb8f1caa56504d18da7779161b5b2c4a8e1a2232f
Contents?: true
Size: 1.23 KB
Versions: 25
Compression:
Stored size: 1.23 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 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" return type.to_s.camelcase end end end end
Version data entries
25 entries across 25 versions & 4 rubygems