| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Use of `whether or not` instead of `regardless if ... or not`
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
kamipo/dump_indexes_in_create_for_generates_sql_in_one_query
Dump indexes in `create_table` for generates SQL in one query
|
| | |
| | |
| | |
| | |
| | | |
If the adapter supports indexes in create table, it generates SQL
in one query.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
See the rationale in the comment in this patch.
To benchmark this I ran a number of variations, ultimately narrowing to
require 'benchmark/ips'
str = ''
regexp = /\A[[:space:]]*\z/
Benchmark.ips do |x|
x.report('regexp') { regexp === str }
x.report('empty') { str.empty? || regexp === str }
x.compare!
end
This benchmark has consistently reported speedups around 3.5x:
Calculating -------------------------------------
regexp 69.197k i/100ms
empty 115.468k i/100ms
-------------------------------------------------
regexp 2. 6.3%) i/s - 13.839M
empty 9. 8.8%) i/s - 47.804M
Comparison:
empty: 9642607.6 i/s
regexp: 2768351.9 i/s - 3.48x slower
Sometimes even reaching 4x.
Running the same bechmark on strings of 10 or 100 characters (with
whitespace or present) has shown a slowdown of just about 1.01/1.02.
Marginal, we seem to have a worthwhile trade-off here.
|
|\ \ \
| | | |
| | | | |
use rails command in `time:zones` task desc [ci skip]
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Fix example for css_class_attribute and fix indentation
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[ci skip] Small grammar fix
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Add ActiveSupport::TimeZone.country_zones helper
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
That helper will return time zones for any country that tzdata knows about.
So it will be much simpler for non-US people to list own country time zones
in HTML selects or anywhere.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
neumayr/date_select_helper_with_css_classes_accept_hash
date_select helper with_css_classes option also accept a hash
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
`date_select` helper `:with_css_classes` option now accepts a hash of strings
for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
the select type with the given css class value.
```erb
<%= f.date_select :birthday, with_css_classes: { month: "my-month", year: "my-year" } %>
```
```html
<select id="user_birthday_3i" name="user[birthday(3i)]">…</select>
<select id="user_birthday_2i" name="user[birthday(2i)]" class="my-month">…</select>
<select id="user_birthday_1i" name="user[birthday(1i)]" class="my-year">…</select>
```
Optional, add global `html_options` to modify every select tag in the set.
```erb
<%= f.date_select :birthday, with_css_classes: { month: "my-month", year: "my-year" }, { class: "my-date optional" } %>
```
Supported DateHelper methods: `select_day`, `select_month`, `select_year`,
`select_hour`, `select_minute`, `select_second`, `select_datetime`, `select_time`,
`time_select`, `date_select` and `datetime_select`.
`:with_css_classes` option was added to the `date_select` with #7975.
|
| | | |
| | | |
| | | |
| | | | |
[ci skip]
|
|\ \ \ \
| | | | |
| | | | | |
Add html_safe support to ActionView Array#OutputSafetyHelper
|
| | | | | |
|
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Object#inspect recursively inspects instance variables, exposing all
internal state, including sensitive internal cache objects. Override
Cache#inspect to give a high-level summary that never interferes with
concurrent cache writes.
|
|\ \ \ \
| | | | |
| | | | | |
Fix `test_blank_columns_created_in_block`
|
|/ / / /
| | | |
| | | |
| | | | |
Follow up to 1683410.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
samphilipd/sam/do_not_clobber_options_in_route_definitions
Do not destructively mutate passed options hash in route definitions
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Fixes #24030
An example scope might be specified as such:
```ruby
HTML = { constraints: { format: :html } }.freeze
scope HTML do
get 'x'
end
```
This currently raises an error because the mapper attempts to
destructively modify the passed options hash. This is dangerous because
this options hash might even be shared with other scopes.
We should instead always instantiate a new object instead of modifying
the passed options.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
remove rails 4 specification in bin/rails for plugins [ci skip]
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove unecessary comment
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
comments.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
Added documentation for ActiveJob queue adapter for a specific job. [ci skip]
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip] Added note on child class maintaining parent's queue adapter.
[ci skip] Added note on child class maintaining parent's queue adapter.
[ci skip] removed documentation for child class inheriting the queue adapter.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Define `arel_visitor` method on all adapters
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
`Arel::Visitors::VISITORS` was removed at https://github.com/rails/arel/pull/412.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Small typo on a method name:
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- clear_test_deliviers -> clear_test_deliveries
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove reference to unknown method `dirty?` in docs [ci skip]
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
[ci skip]
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Update send_data documentation [ci skip]
|
|/ / / / / / /
| | | | | | |
| | | | | | | |
Add missing period after sentence.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Change the Hash.to_xml with a lamda example
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Update 'foo'.to_xml(lambda { |options, key| options[:builder].b(key) })
to {foo: lambda { |options, key| options[:builder].b(key) }}.to_xml
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Remove unused `table_with_autoincrement` table
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
connection adapters column, delegation in Active Record have not use …
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
‘set’
found these commits https://github.com/rails/rails/commit/9cc8c6f3730df3d94c81a55be9ee1b7b4ffd29f6, https://github.com/rails/rails/commit/9d79334a1dee67e31222c790e231772deafcaeb8 that also should remove it.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
prathamesh-sonpatki/add-test-for-warn-on-records-fetched-greater-than
Add missing test case for record_fetched_greater_than config
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- The negative scenario test case was missing earlier.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Address ORA-00923 error by quoting a reserved word "SIZE"
|
| | |_|/ / / / /
| |/| | | | | | |
|
| | | | | | | | |
|