| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \
| | | |
| | | | |
Bump ruby version [ci skip]
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Bump ruby version [ci skip]
|
|/ / / |
|
| | |
| | |
| | |
| | | |
Closes #11062
|
|\ \ \
| | | |
| | | | |
Rack::Logger naked rescue fix
|
| | | |
| | | |
| | | |
| | | | |
Similar to #11497.
|
|/ / /
| | |
| | |
| | | |
This makes the rack_logger_test.rb runnable by itself (outside of the `rake test` suite).
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Fix in-memory tests
|
| | |
| | |
| | |
| | | |
[ci skip]
|
|\ \ \
| | | |
| | | | |
Update Assets Pipeline Guide [ci skip]
|
| | | |
| | | |
| | | |
| | | | |
by default included to precompile only non-js/css files from `app/assets` and `application.(css|js)`
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Remove privatizing of Fixnum#/ from assert_distance_of_time_in_words
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
MRI reimplemented Date in C so it doesn't hit this division anymore
while JRuby still uses the old stdlib implementation of Date so
it will always hit this.
With this change the actionview date_helper_test.rb tests should pass on JRuby.
|
|\ \ \
| | | |
| | | | |
[Jruby] Make all tests in ActionView::TemplateDigestorTest green
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Missing tmp directory will cause the test to fail on JRuby. will commit
adds tmp directory & 22 TemplateDigestorTests which were failing before
are now green.
Further Discussion on this can be seen at #11743
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This change was breaking the Railties tests. See
https://travis-ci.org/rails/rails/jobs/9865969
|
| | | |
| | | |
| | | |
| | | | |
The deprecation message was removed on 50cbc03d18c5984347965a94027879623fc44cce but the code was not.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The pattern is event.component
Closes #11769
Conflicts:
railties/CHANGELOG.md
|
|\ \ \ \
| | | | |
| | | | | |
Load fixtures from linked folders[master]
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Removed confusing statement about adding route for show action in getting started guide [ci skip]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- routes for CRUD already exists as `resources :posts` is in
`config/routes.rb`
- So we don't have to add any new route in the `config/routes.rb`
- As per #11644, the adding of routes which are already there confuses user, so here its
changed to referring output of `rake routes`
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Free result_metadata directly instead of freeing 2nd, redundant call.
|
| |/ / / / /
| | | | | |
| | | | | | |
`result_metadata` returns a new object each time it is called, so calling `result_metadata.free` is essentially a noop. Instead call `free` directly on the metadata when we're done with it.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Create sqlite3 directory if not present
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If the `db/` directory is not present on a remote machine it will blow up in unexpected ways with error messages that do not indicate there is a missing directory:
```
SQLite3::CantOpenException: unable to open database file
```
This PR checks to see if a directory exists for the sqlite3 file and if not creates it for you.
This PR is an alternative to #11692 as suggested by @josevalim
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Passing the actual ID is not idiomatic.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Added data for permit array into scalar value
[ci skip]
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fix: documentation for ActiveModel::Errors [ci skip]
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Pass assert_dom_equal message arg to underlying assertion
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
#assert_dom_equal and #assert_dom_not_equal both take a "failure"
message argument, but this argument was not utilized.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[ci skip]
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Rails.logger should have level specified by config.log_level.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
Fix bug when log level of Rails.logger (which was set via config.logger) does not match the config.log_level.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
update guide to reflect default HMAC SHA1 in MessageVerifier used in SignedCookieStore
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
SignedCookieStore [ci skip]
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Minor optimization and code cleanup in query_methods.rb
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Use symbols rather than strings where possible to avoid extra object construction
- Use destructive methods where possible to avoid extra object construction
- Use array union rather than concat followed by uniq
- Use shorthand block syntax where possible
- Use consistent multiline block styles, method names, method parenteses style, and spacing
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Added to 'Security' section in 'Getting Started with Rails' guide, including reference to 'Ruby on Rails Security Guide'.
|
| | |_|_|/ / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
Guide'. [ci skip]
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
Fix active_record_validations.md document, `:save` for `on:` validation helper was never available
|