| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
7.0.0 was released on June 16, 2014
http://unicode-inc.blogspot.com.ar/2014/10/unicode-version-70-complete-text-of.html
ruby bin/generate_tables
|
|\
| |
| | |
[ci skip] add "Qu" to Backends Features list
|
|/ |
|
| |
|
|
|
|
|
|
|
|
| |
`default_proc` makes a hash unmarshallable, and adds unneccessary
overhead. Since we control all access to the hash, let's just handle it
in that method. This has the side effect of improving performance on
initialization (but not neccessarily on access). We'll need to profile
further once the tests are passing.
|
|
|
|
|
|
|
| |
In real usage, we give the builder a types hash with a default value of
`Type::Value.new`. This means we need to explicitly check for the key,
rather than the truthiness of the type to determine if it's a known but
uninitialized attribute
|
|
|
|
|
|
|
|
|
|
| |
We don't know which attributes will or won't be used, and we don't want
to create massive bottlenecks at instantiation. Rather than doing *any*
iteration over types and values, we can lazily instantiate the object.
The lazy attribute hash should not fully implement hash, or subclass
hash at any point in the future. It is not meant to be a replacement,
but instead implement its own interface which happens to overlap.
|
|
|
|
|
|
|
|
|
|
| |
This reverts commit 8fee923888192a658d8823b31e77ed0683dfd665.
Conflicts:
activerecord/lib/active_record/attribute_set/builder.rb
This solution sucks, and is hard to actually apply across the board.
Going to try other solutions
|
|\
| |
| | |
Simplify and fix grammar [ci skip]
|
|/
|
| |
[skip ci]
|
|\
| |
| | |
Build fix when running in isolation
|
| |
| |
| |
| |
| | |
`Computer` class needs to be require
See #17217 for more details
|
| |
| |
| |
| | |
There is a significant performance difference between the two. Closes
|
|\ \
| | |
| | | |
Add basic tests for ActionDispatch::ExceptionWrapper
|
| | | |
|
|\ \ \
| |_|/
|/| | |
[ci skip] Corrections to testing guide.
|
|/ /
| |
| |
| | |
Partially revert https://github.com/rails/rails/commit/c31e638a37946a120f6dbf207127d36beea5ab85.
|
|\ \
| | |
| | | |
[ci skip] Remove deprecated testing tasks
|
|/ /
| |
| |
| |
| | |
This has changed recently and so rake test:all and rake
test:all:db are deprecated.
|
| |
| |
| |
| |
| | |
also increase the version of pg required so that people will get the
GVL friendly version
|
|\ \
| | |
| | | |
[ci skip] Improve upon testing tasks guide
|
|/ /
| |
| |
| | |
Add missing testing tasks and also improve upon tasks descriptions
|
|\ \
| | |
| | | |
[ci skip] Capybara added to other testing approaches
|
|/ / |
|
|\ \ |
|
|/ /
| |
| |
| | |
name keywords
|
|\ \
| | |
| | | |
Abstract encoding strategy for ActiveSupport::MessageVerifier
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Fix Rails::Paths::Path.unshift interface
|
| | | |
|
|\ \ \
| | | |
| | | | |
Follow the coding conventions
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
simplify rake test vs rake test:all
|
| | |
| | |
| | |
| | | |
Renames `rake test:all` to `rake test` by changing old `rake test:run` to previous version of `rake test:all`. Removes old definition of `rake test`. Also renames `rake test:all:db` to `rake test:db` and deprecates `rake test:all` & `rake test:all:db`
|
|\ \ \
| | | |
| | | | |
[ci skip] Use American English and replace "behaviour" with "behavior".
|
|/ / /
| | |
| | | |
Update to consistently use American English [ci skip]
|
|\ \ \
| | | |
| | | | |
Time includes DateAndTime::Zones acts_like(:time)
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
add a Table#name accessor like TableDefinition#name
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Closes #17586
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Replaces the following in two places:
```diff
-require ::File.expand_path('../config/environment', __FILE__)
+require ::File.expand_path('../config/environment', __FILE__)
```
|
|\ \ \ \ \ |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Just prefer secrets over config
|
| |\ \ \ \ \
| | |/ / / /
| |/| | | |
| | | | | | |
Allow fallback to LegacyKeyGenerator when secret_key_base is not set but secrets.secret_token is
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- `secrets.secret_token` is now used in all places `config.secret_token` was
- `secrets.secret_token`, when not present in `config/secrets.yml`,
now falls back to the value of `config.secret_token`
- when `secrets.secret_token` is set, it over-writes
`config.secret_token` so they are the same (for backwards-compatibility)
- Update docs to reference app.secrets in all places
- Remove references to `config.secret_token`, `config.secret_key_base`
- Warn that missing secret_key_base is deprecated
- Add tests for secret_token, key_generator, and message_verifier
- the legacy key generator is used with the message verifier when
secrets.secret_key_base is blank and secret_token is set
- app.key_generator raises when neither secrets.secret_key_base nor
secret_token are set
- app.env_config raises when neither secrets.secret_key_base nor
secret_token are set
- Add changelog
Run focused tests via
ruby -w -Itest test/application/configuration_test.rb -n '/secret_|key_/'
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
remove never called method `limited_update_conditions`
|