| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
[ci skip] Downcases filter names
|
|/ |
|
|\
| |
| |
| |
| | |
[Rails4 regression] prevent thin and puma cause error in Non ASCII URL
on Windows
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Windows
* https://github.com/rails/rails/issues/19187
* https://github.com/rails/rails/pull/19533
* https://github.com/macournoyer/thin/issues/268
These are serious Rails 4 regression for Redmine Bitnami Windows users.
https://community.bitnami.com/t/problems-with-3-0-1-installation-see-report-inside/30195/
It is not caused on webrick users.
Related:
* https://github.com/rack/rack/issues/732#issuecomment-67677272
* https://github.com/phusion/passenger/issues/1328
|
| |
| |
| |
| |
| |
| | |
Related: #19617, #19187, #19533, #19689, #19675.
'drb/unix' does not exist on mingw.
|
|/
|
|
|
|
|
| |
Related: #19617, #19187, #19533, #19689, #19675.
This is POC (Proof Of Concept) which bundler does not remove mingw lines.
https://github.com/rails/rails/pull/19617#issuecomment-90293795
|
|\
| |
| | |
Add Active Job to Configuring Guide [ci skip]
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
supercaracal/fix_force_ssl_redirection_flash_error
Fix fails to force_ssl_redirection if session_store is disabled
|
| | | |
|
|\ \ \
| |_|/
|/| | |
bugfix CodeStatics#calculate_directory_statics when dir has source ext
|
| |/ |
|
|/
|
|
| |
see: http://www.openwall.com/lists/oss-security/2015/04/07/11
|
|\
| |
| | |
A shorter and more concise version of select..size
|
| | |
|
| |
| |
| |
| | |
They may be fixed at #19470
|
|\ \
| | |
| | | |
fix for actionview parent layout bug
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit fixes issue #19626
Don't need to check layout conditions if there is no condition
test for parent layout bug fix
|
|\ \ \
| | | |
| | | | |
avoid error when sort mixture keys in symbol and string
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
it is avoid sort errot within different and mixed keys.
used `sort_by` + `block` to list parameter by keys.
keep minimum changes
|
|\ \ \ \
| | | | |
| | | | | |
Allow AS::Cache::FileStore#clear without cache directory
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Currently `Rails.cache.clear` raises Errno::ENOENT if it's run just
after cloning a new Rails project. It should succeed without removing
files or directories.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
fix documentation for SchemaStatements#add_foreign_key
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The implementation of the generation of the foreign key name was changed
between Rails 4.2.0 and 4.2.1 from a random to a deterministic behavior,
however the documentation still describes the old randomized behavior.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Batch touch parent records
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
[fixes #18606]
Make belongs_to use touch over touch_later when running the callbacks.
Add more tests and small method rename
Thanks Jeremy for the feedback.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This make the config/initializers run before the railties are loaded
what can break some configurations.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
treble37/update-docs-ActionDispatch__Request__Session.create-for-pr
added docs for ActionDispatch::Request::Session#create
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Change join model name constant to private constant
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
This will resolve the fixme message which is about making constant invisible.
|
|\ \ \ \ \
| |_|/ / /
|/| | | |
| | | | | |
Add charset and collation options support for MySQL string and text columns.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
columns
Example:
create_table :foos do |t|
t.string :string_utf8_bin, charset: 'utf8', collation: 'utf8_bin'
t.text :text_ascii, charset: 'ascii'
end
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Accept lambda as child_index option in #fields_for method
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix a regression introduced by removing unnecessary db call when replacing
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When replacing a has_many association with the same one, there is nothing to do with database but a setter method should still return the substituted value for backward compatibility.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Raise ArgumentError if an unrecognised callback is skipped
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
At present, if you skip a callback that hasn't been defined,
activesupport callbacks silently does nothing. However, it's easy to
mistype the name of a callback and mistakenly think that it's being
skipped, when it is not.
This problem even exists in the current test suite.
CallbacksTest::SkipCallbacksTest#test_skip_person attempts to skip
callbacks that were never set up.
This PR changes `skip_callback` to raise an `ArgumentError` if the
specified callback cannot be found.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix AS::Callbacks raising an error when `:run` callback is defined.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This reverts commit 796cab45561fce268aa74e6587cdb9cae3bb243e.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
It behaves in the same way that the abstract adapter.
[ci skip]
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Fix URL rails-framework-hooks
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
correct the directory which rake notes look by default [ci skip]
|
| | |_|_|_|_|/ /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
correct spell of exist [ci skip]
|