| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This removes 8 runtime gem dependencies from Rails:
```
Using hitimes 1.2.3
Using timers 4.1.1
Using celluloid-essentials 0.20.5
Using celluloid-extras 0.20.5
Using celluloid-fsm 0.20.5
Using celluloid-pool 0.20.5
Using celluloid-supervision 0.20.5
Using celluloid 0.17.2
```
|
| |
|
|
|
|
|
|
|
| |
This fixes the case when you try to render an html you know safe and the
file is named something.html. With this commit the content of the html
won't be escaped anymore because AV won't use Raw handler and choose
Html handler instead.
|
|\
| |
| | |
[ci skip] Update doc/resource link removed by #21211
|
| | |
|
|\ \
| |/
|/| |
[ci skip] Add job suffix to sample's job file name
|
|/ |
|
| |
|
|\
| |
| | |
Fix `unsigned?` and `blob_or_text_column` for Enum columns in MySQL
|
| | |
|
|\ \
| | |
| | | |
Add ActionController:Renderers test
|
| | | |
|
| | |
| | |
| | |
| | | |
To complement actionpack/test/controller/metal/renderers_test.rb
|
|\ \ \
| | | |
| | | | |
activerecord: allocate fewer objects
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Fix user name in doc [ci skip]
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Allow add_to_transaction with null transaction
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes https://github.com/rails/rails/issues/22819
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
stevenspiel/titleize_model_name_for_default_submit_button_value
titleize the model name on default submit buttons
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Replace x.times.map{} with Array.new(x){} in AD::Journey::Path::Pattern
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The former is slightly more readable, performant and has fewer method calls.
```ruby
Benchmark.ips do |x|
x.report('times.map') { 5.times.map{} }
x.report('Array.new') { Array.new(5){} }
x.compare!
end
__END__
Calculating -------------------------------------
times.map 21.188k i/100ms
Array.new 30.449k i/100ms
-------------------------------------------------
times.map 311.613k (± 3.5%) i/s - 1.568M
Array.new 590.374k (± 1.2%) i/s - 2.954M
Comparison:
Array.new: 590373.6 i/s
times.map: 311612.8 i/s - 1.89x slower
```
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
Fix typo in test description
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Updated Gemfile.lock with latest change related to sucker_punch dependency
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Followup of https://github.com/rails/rails/commit/bc194937ad6c1fa12bca73cfc05de39a97ba783d.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
move CHANGELOG entry to the appropriate position [ci skip]
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
petabyte and exabyte numeric conversion has been added after the 5.0.0.beta1 release.
ref: 85048e90ab6ff6963919a9d10493b3910cd67b68
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove FIXME comments about the `Arel::Nodes::Quoted` [ci skip]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The `Arel::Nodes::Quoted` was removed already.
Follow up to f916aa247bddba0c58c50822886bc29e8556df76.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
prathamesh-sonpatki/rm-duplicate-entry-for-cache-key
Remove duplicate entry for ActiveRecord::Relation#cache_key from Rails 5 release notes [ci skip]
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
release notes [ci skip]
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Ensure sucker_punch < v2 is installed due to the change in public API
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
correctly presence check of `application_record.rb` in plugin
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Added support for bigdecimals in perform_later
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Refactor `case_{sensitive|insensitive}_comparison`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Before:
```
SELECT 1 AS one FROM "topics" WHERE "topics"."title" = 'abc' LIMIT $1 [["LIMIT", 1]]
```
After:
```
SELECT 1 AS one FROM "topics" WHERE "topics"."title" = $1 LIMIT $2 [["title", "abc"], ["LIMIT", 1]]
```
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[ci skip]
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
rthbound/adds-exception-object-to-instrumenter-payload
Adds exception object to instrumenter's payload
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Adds new key/value pair to payload when an exception is raised
e.g. `:exception_object=> #<RuntimeError: FAIL>`
- Updates relevant test
- Adds CHANGELOG entry
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
prathamesh-sonpatki/create-application-model-under-namespaced-dir-in-plugin
Create application_record.rb under namespaced directory in plugin
|