Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Need to add config.assets.compile=true to access `.assets` | Arthur Neves | 2015-04-26 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | sprockets-rails will only add `Rails.application.assets` if compile is no false. See change on sprockets-rails https://github.com/rails/sprockets-rails/commit/d7c7ee19991c565eb77ee143be2d009ba4472122 | |||||
* | | | assets:cache:clean wont clean cache anymore | Arthur Neves | 2015-04-26 | 1 | -11/+0 | |
| | | | | | | | | | | | | | | | See the behaviour change on sprockets-rails https://github.com/rails/sprockets-rails/commit/56725e5843662189c6701478f7598db306d5fb02 | |||||
* | | | Revert "Fix multiple suggestion test" | Arthur Neves | 2015-04-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | This reverts commit 6a7cf515123889360d272e8ab4be045578dfc0fb. | |||||
* | | | Fix multiple suggestion test | Arthur Neves | 2015-04-25 | 1 | -1/+1 | |
| | | | ||||||
* | | | Add test for multiple suggested generator names. | Josef Šimánek | 2015-04-25 | 1 | -0/+6 | |
| | | | ||||||
* | | | Why do we add a top-level constant here? | Akira Matsuda | 2015-04-25 | 1 | -4/+2 | |
|/ / | ||||||
* | | Remove sqlite support from `rails dbconsole` | Andrew White | 2015-04-22 | 1 | -6/+0 | |
| | | | | | | | | | | | | Support for versions of SQLite less than 3 was removed in #6011 as part of the Rails 4.0 release. Therefore there is no need to have support for it in the `rails dbconsole` command anymore. | |||||
* | | Implicitly skip spring for `rails new --dev` | Godfrey Chan | 2015-04-20 | 1 | -0/+8 | |
| | | | | | | | | | | | | Spring seems like an obvious foot gun for the `--dev` setup, presumably you are about to make lots of changes to the codebase, so it should always reload the framework. | |||||
* | | fix indent in routes when using namespaced controllers | yuuji.yaginuma | 2015-04-14 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before: namespace :foo do namespace :bar do get 'baz/index' end end After: namespace :foo do namespace :bar do get 'baz/index' end end | |||||
* | | Rename railties/bin to railties/exe | Islam Wazery | 2015-04-11 | 2 | -2/+2 | |
| | | | | | | | | | | | | That will match the new Bundler executables convention. Bundler Blog Post: http://bundler.io/blog/2015/03/20/moving-bins-to-exe.html Also updated the necessary tests. | |||||
* | | bugfix CodeStatics#calculate_directory_statics when dir has source extension | Pablo Vizcay | 2015-04-09 | 1 | -0/+20 | |
| | | ||||||
* | | Merge pull request #19034 from jvanbaarsen/explicit-job-base-class | Matthew Draper | 2015-03-30 | 3 | -4/+10 | |
|\ \ | | | | | | | | | | Add explicit base class for ActiveJob jobs | |||||
| * | | Add explicit base class for ActiveJob jobs | Jeroen van Baarsen | 2015-03-23 | 3 | -4/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | * Jobs generated now inherent from ApplicationJob * ApplicationJob inherents from ActiveJob::Base * Added entry to changelog Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | |||||
* | | | Test using sprockets 3 | Rafael Mendonça França | 2015-03-29 | 3 | -11/+11 | |
| | | | ||||||
* | | | respect `pluralize_table_names` when generate fixture file. fixes #19519 | yuuji.yaginuma | 2015-03-27 | 1 | -0/+10 | |
| | | | ||||||
* | | | Revert "Merge pull request #19404 from dmathieu/remove_rack_env" | Jeremy Kemper | 2015-03-20 | 6 | -19/+74 | |
| | | | | | | | | | | | | | | | | | | | | | Preserving RACK_ENV behavior. This reverts commit 7bdc7635b885e473f6a577264fd8efad1c02174f, reversing changes made to 45786be516e13d55a1fca9a4abaddd5781209103. | |||||
* | | | Remove `#build_original_fullpath` method | eileencodes | 2015-03-20 | 1 | -27/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing `#build_original_fullpath` because it is no longer used by the Rails' source code or called in the `#call` method becasue the previous commit now uses `fullpath` from Rack. The method was nodoc'ed so it's safe to remove. NOTE: I did this as a separate commit so if this does cause a problem with engines etc reverting is easy. | |||||
* | | | Merge pull request #19404 from dmathieu/remove_rack_env | Aaron Patterson | 2015-03-19 | 6 | -74/+19 | |
|\ \ \ | | | | | | | | | Don't fallback to RACK_ENV when RAILS_ENV is not present | |||||
| * | | | don't fallback to RACK_ENV when RAILS_ENV is not present | Damien Mathieu | 2015-03-19 | 6 | -74/+19 | |
| | | | | ||||||
* | | | | Use absolute path on find_method location for the runner | Arthur Neves | 2015-03-19 | 1 | -4/+5 | |
| | | | | ||||||
* | | | | method_source needs to be a hard dependency on railties | Arthur Neves | 2015-03-19 | 1 | -7/+0 | |
| | | | | ||||||
* | | | | Merge pull request #19216 from senny/bin_test_runner | Yves Senn | 2015-03-19 | 4 | -41/+203 | |
|\ \ \ \ | | | | | | | | | | | `bin/rails test` runner (rerun snippets, run tests by line, option documentation) | |||||
| * | | | | run `test_test.rb` using the `bin/rails test`. | Yves Senn | 2015-03-18 | 1 | -17/+1 | |
| | | | | | ||||||
| * | | | | Fix reporter test and verbose mode | Arthur Neves | 2015-03-18 | 1 | -9/+7 | |
| | | | | | ||||||
| * | | | | move `ENV["BACKTRACE"]` support into the TestRunner. | Yves Senn | 2015-03-18 | 1 | -0/+10 | |
| | | | | | ||||||
| * | | | | `-p`, `--pattern` to run tests using a pattern. | Yves Senn | 2015-03-18 | 1 | -2/+1 | |
| | | | | | ||||||
| * | | | | use `bin/rails t` runner in `test_runner_test.rb`. | Yves Senn | 2015-03-18 | 2 | -28/+21 | |
| | | | | | ||||||
| * | | | | Fix relative dir call on test runner | Arthur Neves | 2015-03-18 | 1 | -10/+14 | |
| | | | | | ||||||
| * | | | | Add tests for runner#test_files method | Arthur Neves | 2015-03-18 | 1 | -0/+14 | |
| | | | | | ||||||
| * | | | | Run multiple files on runner | Arthur Neves | 2015-03-18 | 1 | -2/+16 | |
| | | | | | ||||||
| * | | | | `-e` / `--environment` for the test runner. | Yves Senn | 2015-03-18 | 1 | -0/+14 | |
| | | | | | ||||||
| * | | | | get rid of NAMED_PATTERNS in favor of running a whole directory | Yves Senn | 2015-03-18 | 1 | -0/+8 | |
| | | | | | ||||||
| * | | | | add tests for our minitest reporter. | Yves Senn | 2015-03-18 | 1 | -0/+76 | |
| | | | | | ||||||
| * | | | | Show the right file when test raises | Arthur Neves | 2015-03-18 | 1 | -0/+1 | |
| | | | | | ||||||
| * | | | | Better file:line parsing and filter method by file too | Arthur Neves | 2015-03-18 | 1 | -0/+26 | |
| | | | | | ||||||
| * | | | | spike of a `OptionParser` backed test runner. | Yves Senn | 2015-03-18 | 1 | -0/+21 | |
| |/ / / | ||||||
* / / / | Add a new-line to the end of route method generated code. | Arthur Neves | 2015-03-18 | 1 | -0/+24 | |
|/ / / | | | | | | | | | | | | | | | | | | | | | | Fix regression on route method that was added by bac812a7ef2660a2fe2ab00822e5e66228379822. The regression was that when calling the `route` method, we were not appending a \n anymore. [fixes #19316] | |||||
* / / | Fix deprecation warning in rails_info_controller tests | Semyon Pupkov | 2015-03-17 | 1 | -8/+8 | |
|/ / | | | | | | | Use keyword arguments in request methods | |||||
* | | add mailer suffix to comments for email previews | yuuji.yaginuma | 2015-03-15 | 1 | -5/+5 | |
| | | ||||||
* | | Merge pull request #19221 from matthewd/random-tests | Matthew Draper | 2015-03-06 | 1 | -5/+0 | |
|\ \ | | | | | | | Run all our tests in random order | |||||
| * | | Revert "Leave all our tests as order_dependent! for now" | Matthew Draper | 2015-03-06 | 1 | -5/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 2f52f969885b2834198de0045748436a4651a94e. Conflicts: actionmailer/test/abstract_unit.rb actionview/test/abstract_unit.rb activemodel/test/cases/helper.rb activerecord/test/cases/helper.rb activesupport/test/abstract_unit.rb railties/test/abstract_unit.rb | |||||
* | | | pass a config to the route set | Aaron Patterson | 2015-03-05 | 1 | -0/+13 | |
|/ / | | | | | | | | | This way we can get the relative_url_root from the application without setting another global value | |||||
* | | Created rake restart task. | Hyonjee Joo | 2015-02-26 | 1 | -0/+31 | |
| | | | | | | | | | | | | Fixes #18876. Rake restart touches `tmp/restart.txt` to restart application on next request. Updated tests and documentation accordingly. | |||||
* | | Change filter on /rails/info/routes to use an actual path regexp from rails | brainopia | 2015-02-23 | 1 | -0/+25 | |
| | | | | | | | | | | | | | | | | Change filter on /rails/info/routes to use an actual path regexp from rails and not approximate javascript version. Oniguruma supports much more extensive list of features than javascript regexp engine. Fixes #18402. | |||||
* | | Require `belongs_to` by default. | Josef Šimánek | 2015-02-21 | 2 | -1/+37 | |
| | | | | | | | | Deprecate `required` option in favor of `optional` for belongs_to. | |||||
* | | Merge pull request #18994 from tgxworld/run_delete_middleware_operations_last | Guillermo Iguaran | 2015-02-19 | 1 | -0/+16 | |
|\ \ | | | | | | | Allow Rack::Runtime to be deleted from middleware stack. | |||||
| * | | Allow Rack::Runtime to be deleted from middleware stack. | Guo Xiang Tan | 2015-02-19 | 1 | -0/+16 | |
| | | | | | | | | | | | | Fixes: https://github.com/rails/rails/issues/16433. | |||||
* | | | Remove unused gsub_app_file method from Bukkit. | Josef Šimánek | 2015-02-19 | 1 | -6/+0 | |
| | | | ||||||
* | | | Merge pull request #18393 from y-yagi/fix_mailer | Rafael Mendonça França | 2015-02-18 | 2 | -16/+25 | |
|\ \ \ | |/ / |/| | | follow up to #18074 | |||||
| * | | follow up to #18074 | yuuji.yaginuma | 2015-01-08 | 2 | -16/+25 | |
| | | | | | | | | | | | | | | | * ignore mailer suffix when generate test files * add mailer suffix to view files |