| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / / / |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This message could be generated by `assert_predicate`, https://github.com/rails/rails/commit/1853a4f2c8b2bddfbde6aae80abb08310295201c#commitcomment-20546113
but I'd rather handwrite the message string if I could reduce magic from the code by doing so.
|
|\ \ \ \
| | | | |
| | | | | |
Keep the value of `$,` and restore it
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
As unit tests, we do not know the value of `$,` when this
test case started. It' better to keep the value when the
test case fnished.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
% ruby -ve "p 'ほげ'.encode(Encoding::UTF_8_MAC)"
jruby 1.7.26 (1.9.3p551) 2016-08-26 69763b8 on Java HotSpot(TM) 64-Bit Server VM 1.8.0_45-b14 +jit [darwin-x86_64]
"\u307B\u3052"
% ruby -ve "p 'ほげ'.encode(Encoding::UTF_8_MAC)"
jruby 9.1.7.0 (2.3.1) 2017-01-11 68056ae Java HotSpot(TM) 64-Bit Server VM 25.45-b02 on 1.8.0_45-b14 +jit [darwin-x86_64]
"\u307B\u3051\u3099"
% ruby -ve "p 'ほげ'.encode(Encoding::UTF_8_MAC)"
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-darwin14]
"\u307B\u3051\u3099"
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Give a message to `#test_duplicable` assertion
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Giving a message helps us to know what happened
when we look at Travis CI.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Erubi offers the following advantages for Rails:
* Works with ruby's --enable-frozen-string-literal option
* Has 88% smaller memory footprint
* Does no freedom patching (Erubis adds a method to Kernel)
* Has simpler internals (1 file, <150 lines of code)
* Has an open development model (Erubis doesn't have a
public source control repository or bug tracker)
* Is not dead (Erubis hasn't been updated since 2011)
Erubi is a simplified fork of Erubis that contains just the
parts that are generally needed (which includes the parts
that Rails uses). The only intentional difference in
behavior is that it does not include support for <%=== tags
for debug output. That could be added to the ActionView ERB
handler if it is desired.
The Erubis template handler remains in a deprecated state
so that code that accesses it directly does not break. It
can be removed after Rails 5.1.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
remove unreachable code
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
`app_path` is a required argument. Therefore, if `app_path` is not
specified, it becomes an error in thor's option parsing, does not reach
this check.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
kenta-s/fix-sample-code-for-expand_cache_key-usage
Fix sample code for `expand_cache_key` usage [ci skip]
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Delete PATH_INFO after each controller test request
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Prevents PATH_INFO from being used to infer the request format in later
test requests when no explicit format is given.
As the request PATH_INFO may be set before a request, it can't be
deleted during pre-request scrubbing.
Fixes #27774
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
y-yagi/do_not_run_git_init_when_specify_the_pretent_option
do not run `git init` when specify the `pretend` option
|
|/ / /
| | |
| | |
| | |
| | | |
When specifying the `pretend` option, expect that no processing will be
done, so do not execute `git init` as well.
|
| | |
| | |
| | |
| | |
| | | |
Fixes "NameError: uninitialized constant ApplicationTests::ConfigurationTests::CustomTest::Rails"
when run individually
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
kenta-s/add-module-name-to-backtrace-cleaner-sample-code
Add module name to BacktraceCleaner usage example [ci skip]
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
Make BigDecimal casting consistent on different platforms
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Right now it behaves differently on JRuby:
```
--- expected
+++ actual
@@ -1 +1 @@
-#<BigDecimal:5f3c866c,'0.333333333333333333',18(20)>
+#<BigDecimal:16e0afab,'0.3333333333333333',16(20)>
```
My initial PR (https://github.com/rails/rails/pull/27324)
offered to let the precision to be decided by the platform and
change the test expection, but other contributors suggested
that we should change the default precision in Rails
to be consistent of all platforms.
The value (18) comes from the max default precision that comes
from casting Rational(1/3) to BigDecimal.
|
|\ \
| | |
| | | |
move `db_migrate_path` method to `Migration` module
|
| |/
| |
| |
| |
| | |
Since `Migration` module is included in both `MigrationGenerator` and
`ModelGenerator`, no need to define a common method for each class.
|
|\ \
| |/
|/| |
Add changelog entry for #27425 [ci skip]
|
|/ |
|
|\
| |
| |
| |
| | |
kenta-s/remove-unnecessary-comments-in-cache_helper
Remove unnecessary comments in cache_helper.rb [ci skip]
|
| | |
|
|\ \
| | |
| | | |
Clean up wording in Action Mailer Basics [ci skip]
|
|/ / |
|
|/
|
|
| |
#27715 [ci skip] (#27730)
|
|\
| |
| | |
add missing comment out [ci skip]
|
|/ |
|
|\
| |
| | |
add missing comment out [ci skip]
|
| | |
|
|\ \
| | |
| | | |
Specify the queue to be used with assert_enqueued_jobs
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Add missing tests for ActionView::Template::Text
|
|/ / |
|
|\ \
| | |
| | | |
Mention ActiveRecord's config.example.yml
|
|/ /
| |
| |
| | |
This will help people figure out what credentials and tables are required to
run ActiveRecord specs.
|
|\ \
| | |
| | | |
update CREATE TABLE statements generated by `sqlite3` command
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
From SQLite 3.16.0, `IF NOT EXISTS` set to CREATE TABLE statements.
Ref: https://www.sqlite.org/src/info/c7021960f5c070fb
Fixes #27635.
|
|\ \ \
| | | |
| | | | |
`find_templates` should be able to handle 5 arguments
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Deprecate `initialize_schema_migrations_table` and `initialize_internal_metadata_table`
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
`initialize_internal_metadata_table`
These internal initialize methods are no longer used internally.
|
|\ \ \ \
| |/ / /
|/| | | |
Allocation free Integer#to_s
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This reverts commit 39c77eb1843f79925c7195e8869afc7cb7323682, reversing
changes made to 9f6f51be78f8807e18fc6562c57af2fdbf8ccb56.
|