aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/resource/resource_generator.rb
blob: 8d787aaa75affc8395be9442602fda006928840a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'generators/rails/model/model_generator'

module Rails
  module Generators
    class ResourceGenerator < ModelGenerator
      hook_for :resource_controller do |base, controller|
        base.invoke controller, [ base.name.pluralize, base.options[:actions] ]
      end

      class_option :actions, :type => :array, :default => [], :banner => "ACTION ACTION",
                             :desc => "Actions for the resource controller", :aliases => "-a"

      class_option :singleton, :type => :boolean, :default => false, :aliases => "-i",
                               :desc => "Supply to create a singleton controller"

      def add_resource_route
        route "map.resource#{:s unless options[:singleton]} :#{pluralize?(file_name)}"
      end

      protected

        def pluralize?(name)
          if options[:singleton]
            name
          else
            name.pluralize
          end
        end

    end
  end
end