| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
[ci skip]
|
|\
| |
| | |
[ci skip] Replace `ActiveResource` with `Active Resource`
|
|/ |
|
|\
| |
| |
| | |
Update documentation examples for String#remove [skip ci]
|
| | |
|
|\ \
| |/
|/| |
[ci skip] Fix table of 4_1_release_notes.md
|
|/ |
|
|\
| |
| | |
Remove reference to workingwithrails.com since it is being retired
|
|/ |
|
| |
|
|\
| |
| | |
Removed non-standard and unused require 'active_support/deprecation'
|
| |
| |
| |
| | |
parts out of active_support.
|
|/
|
|
|
|
|
|
|
|
| |
It is very slow since it will precompile even plugins.
Also it is very unlikely that any application will use this patterns
since it is not a good practice to include all assets manually in the
page.
[ci skip]
|
|\
| |
| | |
Guides mistake about page caching.
|
|/
|
|
| |
DHH's key-based cache expiration isn't alternative to page caching. It's true about action caching but not page caching. I propose to remove this line as confusing, page caching is still best if applicable.
[ci skip]
|
|\
| |
| | |
Fix regression when passing a value different of String.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The previous version of rails(4.2.0) you can pass objects
to the default option of translation helper.
For example:
```ruby
t('foo', default: 1)
```
But on rails 4.2.1 version this kind of use stopped to work,
because started only to accept String types.
Now with this fix we can use orther value types on this
helper again.
|
|\ \
| | |
| | | |
[ci-skip] correct doc about custom validators
|
|/ / |
|
|\ \
| | |
| | | |
fix NameError in `skip_filter`. callback doesn't exist.
|
| |/ |
|
|\ \
| | |
| | | |
Fix wording in template inheritance section of layout guide [ci skip]
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Haven't diagnosed yet. No similarly failing tests in Rails to work from.
cc @tenderlove, @eileencodes
Revert "there is always an integration session, so remove the check"
Revert "lazily create the integration session"
Revert "use before_setup to set up test instance variables"
This reverts commits 4cf3b8ac47f109fa83a6f66eb97d6cb0eace0d05, 303567e554de26822f3107be55c471d6477a745f, and fa63448420d3385dbd043aca22dba973b45b8bb2.
|
| |/
|/|
| |
| |
| | |
This reverts commit b6dd0c4ddebf5e7aab0a669915cb349ec65e5b88, reversing
changes made to de9a3748c436f849dd1877851115cd94663c2725.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Various behaviors needed by associations (such as creating the through
record) are lost when `where` is called, since we stop having a
`CollectionProxy` and start having an `AssociationRelation` which does
not contain this behavior. I *think* we should be able to rm
`AssociationRelation`, but we have tests saying the changes required to
do that would be bad (Without saying why. Of course. >_>)
Fixes #19073.
|
|\ \
| | |
| | | |
Change filter on /rails/info/routes to use an actual path regexp from rails
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change filter on /rails/info/routes to use an actual path regexp from rails
and not approximate javascript version. Oniguruma supports much more
extensive list of features than javascript regexp engine.
Fixes #18402.
|
|\ \ \
| | | |
| | | | |
Section explaining how rails runner accepts code in a ruby file.
|
| | | |
| | | |
| | | |
| | | | |
[ci skip]
|
|/ / / |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Fix typos in ActionView::Helpers::FormBuilder comment [ci skip]
|
|/ / |
|
|\ \
| | |
| | | |
Guides: Template Inheritance (new in guides, feature in since 3.1)
|
| |\ \ |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Add `SchemaMigration.create_table` support any unicode charsets for MySQL.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
MySQL unicode support is not only `utf8mb4`.
Then, The index length problem is not only `utf8mb4`.
http://dev.mysql.com/doc/refman/5.6/en/charset-unicode.html
SELECT * FROM information_schema.character_sets WHERE maxlen > 3;
+--------------------+----------------------+------------------+--------+
| CHARACTER_SET_NAME | DEFAULT_COLLATE_NAME | DESCRIPTION | MAXLEN |
+--------------------+----------------------+------------------+--------+
| utf8mb4 | utf8mb4_general_ci | UTF-8 Unicode | 4 |
| utf16 | utf16_general_ci | UTF-16 Unicode | 4 |
| utf16le | utf16le_general_ci | UTF-16LE Unicode | 4 |
| utf32 | utf32_general_ci | UTF-32 Unicode | 4 |
+--------------------+----------------------+------------------+--------+
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | | |
rebyn/fix/17161-remove-objs-from-has_many-updates-fields
Add specs for adding-to/clear has_many collections’s behavior on `updated_at`
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There are behaviors mentioned in #17161 that:
1. are not documented properly, and
2. don't have specs
This commit addresses the spec absence. For has_many collections,
1. addition (<<) should update the associated object's updated_at (if any)
2. .clear, depending on options[:dependent], calls delete_all, destroy_all, or nullifies the associated object(s)' foreign key.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Use logger environment settings in Rails console.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Bug was discovered and discussed in #18395.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes regression in #18423. Merge default headers for new responses,
but don't merge when creating a response from the last session request.
hat tip @senny :heart:
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Fix a backtracking problem in String#truncate_words
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fixes #19070.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Mession/fix_test_dependency_of_erb_template_partial_with_layout
Fix dependency tracker bug
|
| |/ / / / / / |
|