| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \
| |/ / /
|/| | | |
Cookie-base session store auto-upgrade
|
| | | |
| | | |
| | | |
| | | | |
Automatically configure cookie-based sessions to use the best cookie jar given the app's config
|
| | | |
| | | |
| | | |
| | | | |
Introduced in 59d20af2238f7ab553f41b96282722889d8d4393.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
doesn't exist anymore in Gemfile
|
|/ / / |
|
| | |
| | |
| | |
| | | |
provided
|
| | |
| | |
| | |
| | | |
based on a discussion with @rafaelfranca
|
| | |
| | |
| | |
| | |
| | |
| | | |
- Remove obsolete/misleading comment about assets only being used production
- Remove unnecessary group :assets
- Eliminate blank lines if options[:skip_javascript] is not specified
|
| | |
| | |
| | |
| | | |
v3 of pull request based on additional feedback from @jeremy
|
| | |
| | |
| | |
| | | |
completes https://github.com/rails/rails/commit/6f3f0f86332004fcee5c2f05d52bbff08c22f980
|
|\ \ \
| | | |
| | | | |
Add #to_s method to VERSION modules
|
| | | | |
|
|/ / / |
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We used to pass the Rails::Application subclass to #run.
The Rails server then called #to_app to convert that class to the
actual Rack application.
if you surround `#run` with a call to `#map` the server no longer
convertes the class to the instance and we end up with unnecessary
delegation calls on every request.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* adds password_digest attribute to the migration
* adds has_secure_password to the model
* adds password and password_confirmation password_fields to _form.html
* omits password entirely from index.html and show.html
* adds password and password_confirmation to the controller
* adds unencrypted password and password_confirmation to the controller test
* adds encrypted password_digest to the fixture
|
| |
| |
| |
| |
| |
| | |
https://github.com/rails/rails/pull/3180\#issuecomment-14705821 has
mention of rendering going from 1-2ms to 4 seconds with this on,
which seems reasonable: debugging is slow.
|
|\ \
| | |
| | | |
Add `rails test` command to run the test suite
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* `rails test -f` will run the test suites with all fixtures loaded
* New application will now generated without `fixtures :all` line
enabled by default.
|
|/ / |
|
| |
| |
| | |
minor comment fix for consistency
|
| | |
|
|\ \
| | |
| | | |
New 404, 422, 500 pages, they are more stylish and bring ruby essence…
|
| | |
| | |
| | |
| | |
| | |
| | | |
moving changelog note to unreleased section
New beauty pages(404, 422, 500)
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Change default root route helper
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 3eef1c7c5d0c4538efb9e061b6fe68011f0352b1.
The css compressor should be set in sass-rails plugin. Check
https://github.com/rails/sass-rails/commit/339529f9f6433047df6358c0439e6641cb74f045
for the fix.
|
| |
| |
| |
| |
| |
| |
| | |
With the new sprockets-rails we need to explicitly set the CSS
compressor.
See https://github.com/rails/sprockets-rails#changes-from-rails-3x
|
|\ \
| | |
| | | |
Remove `--builder` option from `rails` command
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Ability to use a custom builder by passing `--builder` (or `-b`) has
been removed. Consider using application template instead. See this
guide for more detail:
http://guides.rubyonrails.org/rails_application_templates.html
|
|\ \ \
| | | |
| | | | |
remove config.auto_explain_threshold_in_seconds
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We discussed that the auto explain feature is rarely used.
This PR removes only the automatic explain. You can still display
the explain output for any given relation using `ActiveRecord::Relation#explain`.
As a side-effect this should also fix the connection problem during
asset compilation (#9385). The auto explain initializer in the `ActiveRecord::Railtie`
forced a connection.
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 304f4d4c25ccabdbf97d37dd7a92a54d0b63a9c9.
As it turns out everything should behave as it did and we don't
need to move this configuration option.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Most application developers shouldn't be adding paths to
`config.autoload_paths` as it won't be eagerly loaded so
remove it from the generated config/application.rb file.
If a developer does want to autoload from paths outside of the app
directory then they should add the path to `config.eager_load_paths`
as these paths are also autoloaded as well.
|
| |
| |
| |
| |
| |
| | |
User should know that he can overwrite the previous migration. This
comes in handy especially when generating models which were previously
created then removed.
|