| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix spelling. [CI SKIP]
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This was caused by #15327.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update documentation to match change in #5942 [ci skip]
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
[ci skip] Modify a web-console PR link for release noted
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[ci skip] Updated documentation syntax of other parameter for rdoc
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Adjusted punctuation and grammar for Form Helpers guide [ci skip]
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[ci skip] Updated documentation syntax of block parameter for rdoc
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
[ci skip] Updated include to reference record parameter for rdoc
|
|/ / / / / |
|
|\| | | |
| | | | |
| | | | | |
[ci skip] Updated documentation syntax of block parameter for rdoc
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
[ActiveJob] Autoload adapters
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Speed up JRuby tests by improving the startup time
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Emulate `jruby --dev` which improves JRuby's startup time.
See
https://github.com/jruby/jruby/wiki/Improving-startup-time#use-the---dev-flag
Follow @headius' idea and give Java more memory to reduce GC time.
|
| |/ / /
|/| | |
| | | |
| | | | |
Otherwise, it's possible for GC to run in between, and fail the test.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
tomkadwill/has_and_belongs_to_many_documenting_extension_param
[ci skip] Added documentation for has_and_belongs_to_many extension parameter
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Cache the value of `changed_attributes` when calling `changes_applied`
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
`changes_applied` calles `changes`, which will call `changed_attributes`
multiple times in a loop. This method actually performs work now, so we
should cache the results while looping over it when we know it cannot
change.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Also duplicated find_by tests from relations_test.rb to finder_test.rb now
that we have a completely different implementation on the class (in core.rb
with AST caching stuff).
* Also removed a (failing) test that used mocks. Now that we have tests for the
behavior, there's no point having another test that tests the implementation
(that it delegates). Further, what the test was implying is nolonger true with
the current implementation, because Class.find_by is a real method now.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Added web links
|
|/ / / / /
| | | | |
| | | | | |
Added web links to resque, delayed_job and sidekiq
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[ci skip] make assert messages consistent
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Use ActiveSupport::Concern
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fix a few typos and made some tiny improvements. Refs #16576.
[Zachary Scott & Robin Dupret]
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
[ci skip] use proper apostrophe
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Provide a builder for form labels to customize wrapping around I18n content
|
| | | | | | | |
|
| |_|_|/ / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is a reacon to https://github.com/rails/rails/commit/d6c1205584b1ba597db4071b168681678b1e9875#commitcomment-7502487
This backwards incompatibility was introduced with d6c12055 to fix #7516.
However both `connection.default_sequence_name` and `model.sequence_name` are public API.
The PostgreSQL adapter should honor the interface and return strings.
/cc @matthewd @chancancode
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
[ActiveJob] Add activesupport as dependency [ci skip]
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Add I18n support for `:placeholder` HTML option is passed to form fields
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Fix `ActiveSupport::Duration#instance_of?` to behave like `#is_a?`
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Since Rubinius is relying on #instance_of? for its definition of #eql?
(http://git.io/MtmbbA) but ActiveSupport::Duration should behave like
is_a? it returns true with `Fixnum`.
Thus, for the moment, the last assertion is failing so we have to skip
this test.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
For the sake of backward-compatibility, we need to make #instance_of?
return true for Fixnum. On the other hand, the method should still
give true for ActiveSupport::Duration itself which was not the case
before.
|