Sha256: e321e707cde52a540f99fbc3faa34fbb0448648f25c7cca9c037913a62548d3d
Contents?: true
Size: 645 Bytes
Versions: 27
Compression:
Stored size: 645 Bytes
Contents
# frozen_string_literal: true 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 end end end module Rails module Generators class GeneratedAttribute def type_class return "Time" if type == :datetime return "String" if type == :text return "Mongoid::Boolean" if type == :boolean type.to_s.camelcase end end end end
Version data entries
27 entries across 27 versions & 1 rubygems