Sha256: f98e4519c70bec23a6af909534f62aa1499e4ba03428e6dc0f83653e3a302032

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 KB

Contents

require 'rails/generators/named_base'
require 'rails/generators/migration'
require 'rails/generators/active_model'

module Toystore
  module Generators
    class Base < ::Rails::Generators::NamedBase
      def self.source_root
        @_toystore_source_root ||= File.expand_path("../#{base_name}/#{generator_name}/templates", __FILE__)
      end
    end

    class ActiveModel < ::Rails::Generators::ActiveModel
      def self.all(klass)
        "raise 'all is not supported'"
      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
      # Override type_class to return correct for uuid and automatically camel
      # case all other types.
      def type_class
        return 'SimpleUUID::UUID' if type.to_s == 'uuid'
        return type.to_s.camelcase
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
toystore-0.13.2 lib/generators/toystore.rb
toystore-0.13.1 lib/generators/toystore.rb
toystore-0.13.0 lib/generators/toystore.rb