| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| | |
Active Record's subclass_from_attributes shouldn't assume :type is for STI unless there is a type column.
|
|/
|
|
|
|
|
| |
The `subclass_from_attrs` method is called even if the column specified by
the `inheritance_column` setting doesn't exist. This prevents setting associations
via the attributes hash if the association name clashes with the value of the setting,
typically `:type`. This worked previously in Rails 3.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Example:
class Conversation < ActiveRecord::Base
enum status: [ :active, :archived ]
end
Before:
Conversation::STATUS # => { "active" => 0, "archived" => 1 }
After:
Conversation.statuses # => { "active" => 0, "archived" => 1 }
|
|\
| |
| | |
Single quotes for controller generated routes. This is more consistent with all other Rails generated code.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Write routes in route.rb with single quotes
get 'welcome/index'
instead of
get "welcome/index"
|
|\ \
| | |
| | | |
Fix fields_for documentation with index option [ci skip]
|
| |/
| |
| |
| |
| |
| |
| | |
- fields_for documentation with index option was wrong.
- It does not work with passing model as it is.
- Changed the example by passing id of the address object.
- Fixes #13125.
|
|\ \
| | |
| | | |
[ci skip] Grammar correction
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Set NameError#name
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
[ci skip] Added alias to CSRF
|
|/ / / |
|
| | | |
|
| | |
| | |
| | |
| | | |
It's not public API, but is not private scoped.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
"serie" => "series"
|
| | | | |
|
| | | | |
|
|/ / / |
|
|/ /
| |
| |
| | |
More to come.
|
|\ \
| | |
| | | |
Favor canonical environment variables for secrets
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Prefixing an environment variable with `RAILS_` should be used when there is otherwise a conflict, such as `RAILS_ENV` or if it is being used for a very Rails specific value.
If we remove the prefix of `RAILS_` in the case of `RAILS_SECRET_KEY_BASE` then we can push for a pseudo standard among other frameworks that will accept a common environment key `SECRET_KEY_BASE` to keep your app secure. This is beneficial for containerized deployments such as docker, Heroku, etc. So that the container need to know one less thing about your app (it can just set it no-matter what language or framework you are using).
This change also allows the defaults to be consistent with the way the secret key is accessed so `secrets.secret_key_base` is aliased to `SECRET_KEY_BASE` instead of `RAILS_SECRET_KEY_BASE`.
|
|\ \ \
| |/ /
|/| | |
removed extra comma [ci skip]
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| | |
This prevents Rails from assigning meaningless log levels to third
party loggers like log4r. If `Rails.logger` is not `kind_of?(::Logger)`
we simply assign the `config.log_level` as is.
This bug was introduced by #11665.
|
|\ \
| | |
| | | |
Updated Changelog to reflect removal of :dependent => :restrict
|
|/ /
| |
| |
| |
| | |
Based on https://github.com/rails/rails/issues/2502, the option has
been removed.
|
|\ \
| | |
| | | |
[JRuby] Fix incorrect RUBY_ENGINE value
|
| | |
| | |
| | |
| | |
| | |
| | | |
This Adds helpers(jruby_skip & rbx_skip). In Future, Plan is to use
these helpers instead of calls directly to
RUBY_ENGINE/RbConfig/JRUBY_VERSION
|
|/ / |
|
| |
| |
| |
| |
| | |
This has no effect on the API docs. The main API page is taken from:
railties/RDOC_MAIN.rdoc
|
| | |
|
|\ \
| | |
| | | |
Skip Spring App Generator tests on JRuby
|
| | |
| | |
| | |
| | |
| | | |
Spring makes extensive use of Process.fork, so won't be able to provide
JRuby Support, hence skip these tests on JRuby.
|
|\ \ \
| | | |
| | | | |
Clarify behavior of json_escape [ci skip]
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The behavior of json_escape was fixed in 2f1c5789, but the doc
changes and example in that commit incorrectly indicated that the
return value would be html-safe. Since quotation marks are
preserved, the raw value is not safe to use in other contexts
(specifically HTML attributes).
|
|\ \ \ \
| |_|/ /
|/| | | |
use enum labels as form values. Achieved by `_before_type_cast`.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Closes #13650, #13672
This is an alternate implementation to solve #13650. Currently form fields
contain the enum value (eg. "1"). This breaks because the setter `enum=`
expects the label (eg. "active").
ActiveRecord::Enum allows you to use labels in your application but store numbers.
We should make sure that all parts after AR are dealing with labels and not the
underlying mapping to a number.
This patch defines `_before_type_cast` on every enum column to return the label.
This method is later used to fetch the value to display in form fields.
I deliberately copied the implementation of the enum getter instead of delegating to it.
This allows you to overwrite the getter and for example return a `Value Object` but have it
still work for form fields.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Kudos to @zzak for taking over SDoc and make it work with RDoc 4.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The templates were written as if for a given gem you could either pass a version
or options, but not both. But you may want to specify a version and also a group
or whether the gem has to be required, for example.
|
|\ \ \ \
| | | | |
| | | | | |
Fix iterating over DateTime by doing strict checking for Time objects
|
| | | | |
| | | | |
| | | | |
| | | | | |
- Fixes #13667
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Removing without_thor_debug
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
a1d0c0fa3d8ca97edc8f2a1d6ba96af19221dbad
as bundler 1.5.2 is out now
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* master: (536 commits)
doc, API example on how to use `Model#exists?` with multiple IDs. [ci skip]
Restore DATABASE_URL even if it's nil in connection_handler test
[ci skip] - error_messages_for has been deprecated since 2.3.8 - lets reduce any confusion for users
Ensure Active Record connection consistency
Revert "ask the fixture set for the sql statements"
Check `respond_to` before delegation due to: https://github.com/ruby/ruby/commit/d781caaf313b8649948c107bba277e5ad7307314
Adding Hash#compact and Hash#compact! methods
MySQL version 4.1 was EOL on December 31, 2009 We should at least recommend modern versions of MySQL to users.
clear cache on body close so that cache remains during rendering
add a more restricted codepath for templates fixes #13390
refactor generator tests to use block form of Tempfile
Fix typo [ci skip]
Move finish_template as the last public method in the generator
Minor typos fix [ci skip]
make `change_column_null` reversible. Closes #13576.
create/drop test and development databases only if RAILS_ENV is nil
Revert "Speedup String#to"
typo fix in test name. [ci skip].
`core_ext/string/access.rb` test what we are documenting.
Fix typo in image_tag documentation
...
Conflicts:
actionpack/CHANGELOG.md
|