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
Tsukuru Tanimichi 592c06d7cb Add :skip_sprockets to Rails::PluginBuilder::PASSTHROUGH_OPTIONS
`rails plugin new` with `--full` and `--skip-sprockets` options generates a dummy application that throws `NoMethodError`.

```
% rails plugin new my_engine -S --full --skip-gemspec
% cd my_engine
% bin/rails test
rails aborted!
NoMethodError: undefined method `assets' for #<Rails::Application::Configuration:0x007f83aa1e6100>
```
2016-11-14 20:56:49 +09:00

1.9 KiB

  • Add :skip_sprockets to Rails::PluginBuilder::PASSTHROUGH_OPTIONS

    Tsukuru Tanimichi

  • Allow the use of listen's 3.1.x branch

    Esteban Santana Santana

  • Run Minitest.after_run hooks when running rails test.

    Michael Grosser

  • Run before_configuration callbacks as soon as application constant inherits from Rails::Application.

    Fixes #19880.

    Yuji Yaginuma

  • A generated app should not include Uglifier with --skip-javascript option.

    Ben Pickles

  • Set session store to cookie store internally and remove the initializer from the generated app.

    Prathamesh Sonpatki

  • Set the server host using the HOST environment variable.

    mahnunchik

  • Add public API to register new folders for rake notes:

    config.annotations.register_directories('spec', 'features')
    

    John Meehan

  • Display name of the class defining the initializer along with the initializer name in the output of rails initializers.

    Before: disable_dependency_loading

    After: DemoApp::Application.disable_dependency_loading

    ta1kt0me

  • Do not run bundle install when generating a new plugin.

    Since bundler 1.12.0, the gemspec is validated so the bundle install command will fail just after the gem is created causing confusion to the users. This change was a bug fix to correctly validate gemspecs.

    Rafael Mendonça França

  • Default config.assets.quiet = true in the development environment. Suppress logging of assets requests by default.

    Kevin McPhillips

  • Ensure /rails/info routes match in development for apps with a catch-all globbing route.

    Nicholas Firth-McCoy

  • Added a shared section to config/secrets.yml that will be loaded for all environments.

    DHH

Please check 5-0-stable for previous changes.