1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/CHANGELOG.md
schneems 6ce18ba7dc Fix rails plugin --help
Right now if you run the `rails plugin --help` command it fails because rails expects a command in `railties/lib/rails/commands/plugin.rb` that does not exist because the file is named `plugin_new`. This is the error:

```
ruby-2.0.0-p0  ~/documents/projects/tmp/vanilla (master)
$ rails plugin --help
/Users/schneems/.rvm/gems/ruby-2.0.0-p0/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:in `require': cannot load such file -- rails/commands/plugin (LoadError)
	from /Users/schneems/.rvm/gems/ruby-2.0.0-p0/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:in `block in require'
	from /Users/schneems/.rvm/gems/ruby-2.0.0-p0/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:213:in `load_dependency'
	from /Users/schneems/.rvm/gems/ruby-2.0.0-p0/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:in `require'
	from /Users/schneems/.rvm/gems/ruby-2.0.0-p0/gems/railties-4.0.0/lib/rails/commands.rb:49:in `<top (required)>'
	from bin/rails:4:in `require'
	from bin/rails:4:in `<main>'
```
2013-06-29 14:34:46 +03:00

999 B
Raw Blame History

  • Fix rails plugin --help command.

    Richard Schneeman

  • Omit turbolinks configuration completely on skip_javascript generator option.

    Nikita Fedyashev

  • Removed deprecated rake tasks for running tests: rake test:uncommitted and rake test:recent.

    John Wang

  • Clearing autoloaded constants triggers routes reloading [Fixes #10685].

    Xavier Noria

  • Fixes bug with scaffold generator with --assets=false --resource-route=false. Fixes #9525.

    Arun Agrawal

  • Rails::Railtie no longer forces the Rails::Configurable module on everything that subclasses it. Instead, the methods from Rails::Configurable have been moved to class methods in Railtie and the Railtie has been made abstract.

    John Wang

  • Changes repetitive th tags to use colspan attribute in index.html.erb template.

    Sıtkı Bağdat

Please check 4-0-stable for previous changes.