Sha256: 30ff720c939482826aef5cfcf0fe2871e223209c85305acf050910abbd15ba99

Contents?: true

Size: 916 Bytes

Versions: 68

Compression:

Stored size: 916 Bytes

Contents

require File.dirname(__FILE__) + '/../scripts'

module Rails::Generator::Scripts
  class Destroy < Base
    mandatory_options :command => :destroy

    protected
    def usage_message
      usage = "\nInstalled Generators\n"
      Rails::Generator::Base.sources.each do |source|
        label = source.label.to_s.capitalize
        names = source.names
        usage << "  #{label}: #{names.join(', ')}\n" unless names.empty?
      end

      usage << <<end_blurb

script/generate command. For instance, 'script/destroy migration CreatePost'
will delete the appropriate XXX_create_post.rb migration file in db/migrate,
while 'script/destroy scaffold Post' will delete the posts controller and
views, post model and migration, all associated tests, and the map.resources
:posts line in config/routes.rb.

For instructions on finding new generators, run script/generate.
end_blurb
      return usage
    end
  end
end

Version data entries

68 entries across 67 versions & 12 rubygems

Version Path
radiant-0.9.0.rc2 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
webroar-0.3.1 src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
webroar-0.3.0 src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
usher-0.7.0 spec/rails2_3/vendor/rails/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
ginst-2009.12.8 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
rails-2.3.5 lib/rails_generator/scripts/destroy.rb
ginst-2009.11.24 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
ginst-2009.11.23 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
ginst-2.0.1 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
ginst-2.0.0 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
view_mapper-0.3.0 test/rails_generator/scripts/destroy.rb
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
radiant-rc-0.9.0 vendor/rails/railties/lib/rails_generator/scripts/destroy.rb
view_mapper-0.2.0 test/rails_generator/scripts/destroy.rb
view_mapper-0.1.0 test/rails_generator/scripts/destroy.rb