Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add `Style/EmptyLinesAroundMethodBody` in `.rubocop.yml` and remove extra ↵ | Ryuta Kamizono | 2017-02-12 | 1 | -1/+0 |
| | | | | empty lines | ||||
* | Fix rubocop violations | Rafael Mendonça França | 2017-02-09 | 1 | -1/+1 |
| | |||||
* | remove `ActiveSupport.halt_callback_chains_on_return_false` from everywhere | yuuji.yaginuma | 2017-02-08 | 2 | -4/+0 |
| | |||||
* | Correct spelling | Benjamin Fleischer | 2017-02-05 | 1 | -2/+2 |
| | | | | | | | ``` go get -u github.com/client9/misspell/cmd/misspell misspell -w -error -source=text . ``` | ||||
* | Merge pull request #27802 from domcleal/27801-multiple-rake-tests | Kasper Timm Hansen | 2017-02-05 | 3 | -7/+28 |
|\ | | | | | Collect all file patterns when running multiple rake test tasks | ||||
| * | Collect all file patterns when running multiple rake test tasks | Dominic Cleal | 2017-02-04 | 3 | -7/+28 |
| | | | | | | | | | | | | | | Replaces the rake_patterns instance variable with simple require, as `autorun` will run tests from all eagerly required test files. Fixes #27801 | ||||
* | | Merge pull request #27891 from y-yagi/ignore_yarn_error_log | Eileen M. Uchitelle | 2017-02-03 | 2 | -0/+6 |
|\ \ | | | | | | | Ignore yarn error log file | ||||
| * | | Ignore yarn error log file | yuuji.yaginuma | 2017-02-03 | 2 | -0/+6 |
| |/ | |||||
* / | generate mailer layout files only when it does not exist | yuuji.yaginuma | 2017-02-02 | 1 | -1/+1 |
|/ | | | | If already have layout files, in many cases use it. | ||||
* | Don't mutate raw_source in mailer preview interceptor | Eugene Kenny | 2017-01-30 | 1 | -0/+34 |
| | | | | | | | | The raw_source method is documented as returning the exact value that was used to create the body; mutating it breaks that contract. Additionally, if the value used to create the body is blank, raw_source returns a frozen string which causes the interceptor to raise an error. | ||||
* | Merge pull request #27842 from richseviora/master | Rafael França | 2017-01-31 | 1 | -0/+10 |
|\ | | | | | Added warning for reserved YAML keywords. | ||||
| * | Added warning for reserved YAML keywords. | Rich Seviora | 2017-01-30 | 1 | -0/+10 |
| | | | | | | | | | | | | Update i18n.md Addressed Feedback | ||||
* | | Merge pull request #27647 from Shopify/fully-eagerload-journey | Rafael França | 2017-01-30 | 2 | -1/+17 |
|\ \ | | | | | | | Fully initialize routes before the first request is handled | ||||
| * | | Fully initialize routes before the first request is handled | Jean Boussier | 2017-01-18 | 2 | -1/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `AD::Journey::GTG::Simulator` is lazily built the first time `Journey::Router#find_routes` is invoked, which happens when the first request is served. On large applications with many routes, building the simulator can take several hundred milliseconds (~700ms for us). Triggering this initialization during the boot process reduces the impact of deploys on the application response time. | ||||
* | | | Merge pull request #27797 from y-yagi/correctly_check_error_message | Arthur Nogueira Neves | 2017-01-30 | 1 | -2/+4 |
|\ \ \ | | | | | | | | | correctly check error message | ||||
| * | | | correctly check error message | yuuji.yaginuma | 2017-01-25 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | `assert_raise` does not check error message. However, in some tests, it seems like expecting error message checking with `assert_raise`. Instead of specifying an error message in `assert_raise`, modify to use another assert to check the error message. | ||||
* | | | | Merge pull request #27784 from y-yagi/add_warnings_option_to_test_runner | Rafael França | 2017-01-30 | 4 | -0/+31 |
|\ \ \ \ | |_|_|/ |/| | | | add warnings option to test runner | ||||
| * | | | add warnings option to test runner | yuuji.yaginuma | 2017-01-24 | 4 | -0/+31 |
| | | | | |||||
* | | | | Modernize SQL Server database YAML for Linux/vNext. | Ken Collins | 2017-01-27 | 1 | -21/+4 |
| | | | | |||||
* | | | | remove warning from `bin/setup` test | yuuji.yaginuma | 2017-01-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes the following warnings. ``` test/application/bin_setup_test.rb:43: warning: ambiguous first argument; put parentheses or a space even after `/' operator ``` | ||||
* | | | | s/an/a/ | Akira Matsuda | 2017-01-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | [ci skip] | ||||
* | | | | Merge pull request #27772 from y-yagi/remove_unreachable_code | Santiago Pastorino | 2017-01-24 | 2 | -8/+0 |
|\ \ \ \ | |_|/ / |/| | | | remove unreachable code | ||||
| * | | | remove unreachable code | yuuji.yaginuma | 2017-01-23 | 2 | -8/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | `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. | ||||
* | | | | Bundler 1.14 compat | Matthew Draper | 2017-01-23 | 1 | -1/+4 |
| | | | | |||||
* | | | | do not run `git init` when specify the `pretend` option | yuuji.yaginuma | 2017-01-23 | 2 | -1/+2 |
| |/ / |/| | | | | | | | | | | | When specifying the `pretend` option, expect that no processing will be done, so do not execute `git init` as well. | ||||
* | | | Merge two tests that needs to initialize Rails before accessing `Rails` | Akira Matsuda | 2017-01-23 | 1 | -16/+1 |
|/ / | | | | | | | | | Fixes "NameError: uninitialized constant ApplicationTests::ConfigurationTests::CustomTest::Rails" when run individually | ||||
* | | Merge pull request #27734 from y-yagi/update_create_table_statements_in_sqlite3 | Andrew White | 2017-01-19 | 1 | -2/+2 |
|\ \ | | | | | | | update CREATE TABLE statements generated by `sqlite3` command | ||||
| * | | update CREATE TABLE statements generated by `sqlite3` command | yuuji.yaginuma | 2017-01-19 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | From SQLite 3.16.0, `IF NOT EXISTS` set to CREATE TABLE statements. Ref: https://www.sqlite.org/src/info/c7021960f5c070fb Fixes #27635. | ||||
* | | | Make Yarn quieter during precompilation as that is typically run by a deploy ↵ | David Heinemeier Hansson | 2017-01-19 | 1 | -1/+1 |
|/ / | | | | | | | tool like Capistrano and we dont need the play-by-play | ||||
* | | only enhance when `assets:precompile` task is defined | yuuji.yaginuma | 2017-01-18 | 1 | -1/+3 |
| | | |||||
* | | load yarn.rake | yuuji.yaginuma | 2017-01-18 | 1 | -0/+1 |
| | | | | | | | | Follow up to b1c08d8d9b921fdcf3813b5c20a0c3fab96eccca | ||||
* | | Merge pull request #27632 from dixpac/repo_initialize | Rafael Mendonça França | 2017-01-18 | 4 | -2/+20 |
|\ \ | | | | | | | | | | Initalize git repo when creatin new rails app | ||||
| * | | Initalize git repo when creatin new rails app | dixpac | 2017-01-12 | 4 | -2/+20 |
| | | | | | | | | | | | | | | | * If `--skip-git` is not specified initalize git repo when creating new rails app | ||||
* | | | Merge pull request #27653 from s-jcs/feature/adjust_indentation_for_generator | Rafael França | 2017-01-18 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | match indentations in environment template | ||||
| * | | | match indentations | nin042 | 2017-01-12 | 1 | -1/+1 |
| | | | | |||||
* | | | | Add channel_prefix support to ActionCable redis/evented_redis adapters. | Chad Ingram | 2017-01-17 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge pull request #27706 from y-yagi/allow_to_pass_describe_option_to_rake | Rafael França | 2017-01-17 | 2 | -2/+4 |
|\ \ \ \ | | | | | | | | | | | allow to pass describe option to rake | ||||
| * | | | | allow to pass describe option to rake | yuuji.yaginuma | 2017-01-17 | 2 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since `Thor::HELP_MAPPINGS` contains `-D`, so `bin/rails -D` show rails's help. But, in Rails 5.0.1, `bin/rails -D` show the description of rake task. I think that it is better to have the same behavior. | ||||
* | | | | | Fix all rubocop violations | Rafael Mendonça França | 2017-01-17 | 2 | -3/+2 |
| | | | | | |||||
* | | | | | Merge pull request #27717 from JunichiIto/fix-byebug-platform | Rafael França | 2017-01-17 | 2 | -1/+5 |
|\ \ \ \ \ | | | | | | | | | | | | | Install Byebug gem as default in Windows (mingw and x64_mingw) platform. | ||||
| * | | | | | Change `platform` to `platforms` | Junichi Ito | 2017-01-18 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Install Byebug gem as default in Windows (mingw and x64_mingw) platform. | Junichi Ito | 2017-01-18 | 2 | -1/+5 |
| |/ / / / | |||||
* | | | | | Move config reset to ensure block | Andrew White | 2017-01-17 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | We don't want to leak the extra migration path to other railties tests. | ||||
* | | | | | Move config reset to ensure block | Andrew White | 2017-01-17 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | We don't want to leak the extra migration path to other railties tests. | ||||
* | | | | | Merge pull request #27674 from kjg/migration_generator_honor_path_config | Andrew White | 2017-01-17 | 2 | -0/+20 |
|\ \ \ \ \ | | | | | | | | | | | | | Generate migrations at path set by `config.paths["db/migrate"]` | ||||
| * | | | | | Generate migrations at path set by `config.paths["db/migrate"]` | Kevin Glowacz | 2017-01-16 | 2 | -0/+20 |
| |/ / / / | |||||
* | | | | | Be a bit more explicit rather than relying on the default task | David Heinemeier Hansson | 2017-01-17 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Make yarn install available as a rake task via yarn:install so we can use ↵ | David Heinemeier Hansson | 2017-01-17 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | that as a dependency for assets:precompile | ||||
* | | | | | Don't pollute Object with rubinius_skip and jruby_skip | Akira Matsuda | 2017-01-17 | 1 | -9/+9 |
|/ / / / | | | | | | | | | | | | | we call them only in the tests | ||||
* | | | | Merge pull request #27601 from y-yagi/make_work_all_commands_from_engine | Kasper Timm Hansen | 2017-01-15 | 10 | -54/+124 |
|\ \ \ \ | | | | | | | | | | | Make all rails commands work in engine |