| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We should let the responder to decide what to do with the given
overridden response block, and not short circuit it.
Fixes #5280
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
Compute asset paths from the request if RAILS_RELATIVE_URL_ROOT not set
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
not set.
This should fix the following issue:
"Rails is not a Rack Application (SCRIPT_NAME vs. relative_url_root ?)"
https://github.com/rails/rails/issues/910
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Added parsing of arbitrary media type parameters.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Based on #4918.
Related to #4127.
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
force response body to be read in assert_template
|
|/ / / / / / / |
|
| |_|_|/ / /
|/| | | | |
| | | | | |
| | | | | | |
builder
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Update I18n defaults for activerecord.errors.messages.record_invalid
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
activerecord/test/cases/validations/i18n_generate_message_validation_test.rb
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
namespace
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
looked up in errors.messages.record_invalid
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Small typo fix
|
| | | | | | | | |
|
| | | | | | | | |
|
| |_|/ / / / /
|/| | | | | |
| | | | | | |
| | | | | | | |
This was implemented in 2ee4dd856d47113625589bc5410b5a6669ea02d5
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This guide reflects features that have not yet
been implemented.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Now all the models need to explicitly declare the accessible attributes
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Only add the whitelist_attributes option if ActiveRecord is present
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Change the default for newly generated applications to whitelist all attribute assignment. Also update the generated model classes so users are reminded of the importance of attr_accessible.
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fix message assertions for quoting database name in "show tables" for mysql
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix ActiveRecord warning in tests with Marshal
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This apparently fix the warning related to @new_record variable not
being initialized in AR's test suit, when an association is built and
the object is marshalled/loaded.
See these tests in AR's base_test.rb:
test_marshalling_with_associations
test_marshalling_new_record_round_trip_with_associations
Closes #3720.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix GH #4674. Reset column information and sequence name when setting table_name.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
table_name.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
castlerock/remove_unwanted_require_karnel_reporting
AS/kernel/reporting no where used in ts_isolated
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Route root helper shortcut
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Allow the root route helper to accept just a string
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Fix GH #3163. Should quote database on mysql/mysql2.
|
|/ / / / / / |
|
| | | | | | |
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | | |
isolate_namespace
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This makes rails behave properly when you serve static assets
and you have X-Sendfile headers enabled. Nevertheless in most
cases you should not rely on that and serve static assets with
a webserver like Apache or Nginx (as you already have it in
place anyway if you use X-Sendfile)
|
|\ \ \ \
| | | | |
| | | | | |
Refactor and cleanup in some ActiveRecord modules
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Avoid double hash lookups in AR::Reflection when reflecting associations/aggregations
* Minor cleanups: use elsif, do..end, if..else instead of unless..else
* Simplify DynamicMatchers#respond_to?
* Use "where" instead of scoped with conditions hash
* Extract `scoped_by` method pattern regexp to constant
* Extract noisy class_eval from method_missing in dynamic matchers
* Extract readonly check, avoid calling column#to_s twice in persistence
* Refactor predicate builder, remove some variables
|
|\ \ \ \ \
| | | | | |
| | | | | | |
simplify namespace assignment in fields_for
|