Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Do not generate app/assets directory for api apps | Santiago Pastorino | 2015-06-11 | 1 | -1/+2 | |
| | ||||||
* | Generate appropriate initializers for an api app | Santiago Pastorino | 2015-06-11 | 1 | -1/+8 | |
| | ||||||
* | rails new --api generates an api app skeleton | Santiago Pastorino | 2015-06-11 | 1 | -0/+76 | |
| | ||||||
* | Add AC::API + its middleware stack integration test | Santiago Pastorino | 2015-06-11 | 1 | -0/+29 | |
| | ||||||
* | Add config.api_only option to application and remove appropriate middleware ↵ | Santiago Pastorino | 2015-06-11 | 1 | -0/+27 | |
| | | | | when true | |||||
* | add option to avoid generating scaffold.css | masarakki | 2015-06-09 | 1 | -0/+14 | |
| | ||||||
* | Merge pull request #19571 from kaspth/improve-runner-integration | Yves Senn | 2015-06-08 | 3 | -138/+142 | |
|\ | | | | | | | Improve Test Runner's Minitest integration. | |||||
| * | Improve test runner's Minitest integration. | Kasper Timm Hansen | 2015-06-04 | 3 | -138/+142 | |
| | | | | | | | | | | | | | | | | | | | | | | This also adds free mix and matching of directories, files and lines filters. Like so: bin/rails test models/post_test.rb test/integration models/person_test.rb:26 You can also mix in a traditional Minitest filter: bin/rails test test/integration -n /check_it_out/ | |||||
* | | Merge pull request #20444 from y-yagi/can_use_path_helper_method_in_console | Rafael Mendonça França | 2015-06-06 | 1 | -0/+12 | |
|\ \ | | | | | | | modify console of app method in that can use the path helpers | |||||
| * | | modify console of app method in that can use the path helpers | yuuji.yaginuma | 2015-06-05 | 1 | -0/+12 | |
| | | | ||||||
* | | | Remove warning for setting eager_load | Arun Agrawal | 2015-06-05 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | AppTemplate::Application.new does not run load hooks. To load this configuration we need to use create which will run load hooks to load this configuration. | |||||
* | | | Removed duplicate test cases for template execution | Ronak Jangir | 2015-06-04 | 1 | -9/+0 | |
| |/ |/| | ||||||
* | | Merge pull request #18587 from ↵ | Rafael Mendonça França | 2015-06-03 | 1 | -0/+13 | |
|\ \ | |/ |/| | | | | | | | chrismcg/allow_deliver_later_queue_name_to_be_configured Allow configuration of ActionMailer queue name | |||||
| * | Allow configuration of ActionMailer queue name | Chris McGrath | 2015-06-02 | 1 | -0/+13 | |
| | | ||||||
* | | Merge pull request #20387 from y-yagi/fix_engine_generated_controller_test | Yves Senn | 2015-06-02 | 2 | -0/+25 | |
|\ \ | | | | | | | | | | set engine's route in the functional test is generated in the engine | |||||
| * | | add test to run generated test files inside mountable engine | yuuji.yaginuma | 2015-06-02 | 3 | -16/+25 | |
| | | | ||||||
| * | | add engine's namespace to fixture name | yuuji.yaginuma | 2015-05-31 | 1 | -0/+1 | |
| | | | ||||||
| * | | set engine's route in the functional test is generated in the engine | yuuji.yaginuma | 2015-05-31 | 1 | -0/+15 | |
| | | | ||||||
* | | | Merge pull request #20357 from ronakjangir47/remove_mocha1 | Rafael Mendonça França | 2015-06-01 | 1 | -27/+52 | |
|\ \ \ | | | | | | | | | Removed use of mocha from railties actions_test | |||||
| * | | | Removed use of mocha from railties actions_test | Ronak Jangir | 2015-06-01 | 1 | -27/+52 | |
| |/ / | ||||||
* | | | Merge pull request #20138 from tgxworld/deprecated_assert_template | Rafael Mendonça França | 2015-06-01 | 1 | -1/+1 | |
|\ \ \ | |/ / |/| | | Deprecate `assert_template` and `assigns()`. | |||||
| * | | Remove `assigns` and `assert_template`. | Guo Xiang Tan | 2015-05-30 | 1 | -1/+1 | |
| | | | ||||||
* | | | Add test to ensure tmp:clear works when tmp is missing | Yoong Kang Lim | 2015-05-30 | 1 | -0/+7 | |
| | | | | | | | | | | | | See #20299. | |||||
* | | | Generate a `.keep` file in `tmp` folder | Yoong Kang Lim | 2015-05-30 | 1 | -0/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A lot of scripts assumes the existence of this folder and most would fail if it is absent. One example of this is `rake restart` (before the previous commit) – it tries to `touch tmp/restart.txt`, which would fail if `tmp` does not exist, which was the case for a freshly-cloned project as `tmp` is `.gitignored` by default. See #20299. [Yoong Kang Lim, Sunny Juneja] | |||||
* | | | `rake restart` should work without a `tmp` folder | Yoong Kang Lim | 2015-05-30 | 1 | -2/+10 | |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | In restart.rake, the creation of tmp/restart.txt would fail if the tmp folder does not exist in the app. This is a problem because apps cloned using git would not have the tmp folder, as the folder is in .gitignore. This commit creates the tmp folder if it does not exist. Fixes #20299 [Yoong Kang Lim, Sunny Juneja] | |||||
* | | Merge pull request #20017 from eliotsykes/configurable-static-index-filename | Rafael Mendonça França | 2015-05-28 | 1 | -0/+21 | |
|\ \ | | | | | | | | | | config.static_index configures directory Index "index.html" filename | |||||
| * | | config.static_index configures directory index "index.html" filename | Eliot Sykes | 2015-05-28 | 1 | -0/+21 | |
| | | | | | | | | | | | | | | | | | | Set `config.static_index` to serve a static directory index file not named `index`. For example, to serve `main.html` instead of `index.html` for directory requests, set `config.static_index` to `"main"`. | |||||
* | | | Deprecate `:nothing` option for render method | Mehmet Emin İNAÇ | 2015-05-28 | 1 | -9/+9 | |
|/ / | | | | | | | `head` method works similar to `render` method with `:nothing` option | |||||
* | | Merge pull request #20326 from hderms/dh/fix_task_bug | Rafael Mendonça França | 2015-05-27 | 1 | -0/+48 | |
|\ \ | | | | | | | | | | Fix rake method definition leaking onto Object | |||||
| * | | add fixed file | Dermot Haughey | 2015-05-27 | 1 | -0/+46 | |
| | | | | | | | | | | | | | | | | | | add framework_test add another test | |||||
* | | | Fix file name | Rafael Mendonça França | 2015-05-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | This is a leftover of #19867 | |||||
* | | | Merge pull request #19867 from radar/rename-app-rails-loader | Rafael Mendonça França | 2015-05-27 | 1 | -8/+8 | |
|\ \ \ | |/ / |/| | | Remove redundant 'Rails' from Rails::AppRailsLoader constant | |||||
| * | | Remove redundant 'Rails' from Rails::AppRailsLoader constant | Ryan Bigg | 2015-05-21 | 1 | -8/+8 | |
| | | | ||||||
* | | | Merge pull request #20248 from ronakjangir47/remove_mocha | Rafael Mendonça França | 2015-05-25 | 1 | -18/+34 | |
|\ \ \ | | | | | | | | | Remove use of mocha in the railties generators tests | |||||
| * | | | Remove use of mocha in the railties generators tests | Ronak Jangir | 2015-05-22 | 1 | -18/+34 | |
| | | | | ||||||
* | | | | Omit .keep in .gitignore when generated with --skip-keeps. | Ben Pickles | 2015-05-22 | 1 | -1/+5 | |
|/ / / | ||||||
* | | | Remove use of mocha in the railties path tests | Roque Pinel | 2015-05-18 | 1 | -59/+88 | |
| | | | ||||||
* | | | removing unused and already required require's | Ankit Gupta | 2015-05-11 | 2 | -3/+0 | |
| | | | | | | | | | | | | | | | custom test - Does not include EnvHelpers and the require is not needed path generation test - require abstract_unit which has . rails/all requires rails and corresponding | |||||
* | | | Refactor railties console and dbconsole commands | Mehmet Emin İNAÇ | 2015-05-10 | 1 | -8/+4 | |
| | | | | | | | | | | | | fix minor convention problems | |||||
* | | | add test coverage for `bin/setup`. | Yves Senn | 2015-05-06 | 1 | -0/+54 | |
| | | | | | | | | | | | | Make sure this script keeps working and has consistent output. | |||||
* | | | list reserved words in generator error | Sean Linsley | 2015-05-05 | 2 | -2/+2 | |
| | | | ||||||
* | | | Fix constant in void context warnings | Andrew White | 2015-05-05 | 1 | -2/+2 | |
| | | | ||||||
* | | | Document inline image mailer preview interceptor | Andrew White | 2015-05-04 | 2 | -7/+20 | |
| | | | | | | | | | | | | Explain what the interceptor is used for and how to remove it. | |||||
* | | | Fix railties configuration test | Andrew White | 2015-05-04 | 1 | -2/+2 | |
| | | | ||||||
* | | | Add support for inline images to mailer previews | Andrew White | 2015-05-04 | 2 | -8/+10 | |
| | | | | | | | | | | | | | | | Use a preview interceptor to search for inline cid: urls in src attributes and convert them to data urls. | |||||
* | | | Fix mailer previews with attachments | Andrew White | 2015-05-04 | 1 | -0/+190 | |
| | | | | | | | | | | | | | | | | | | Use the mail gem's own API to locate the correct part. Fixes #14435. | |||||
* | | | Fix generator tests | Rafael Mendonça França | 2015-05-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | In my machine the output is different | |||||
* | | | Remove unneeded base file | Rafael Mendonça França | 2015-05-03 | 2 | -57/+53 | |
| | | | | | | | | | | | | We are only using for one test class | |||||
* | | | Remove unused private classes | Rafael Mendonça França | 2015-05-03 | 1 | -60/+0 | |
| | | | | | | | | | | | | | | | | | | | | | The usage of these classes where removed at 8017e6af31caa58a58787274ff0ca01397219e49. cc @arthurnn @senny | |||||
* | | | Merge pull request #19093 from ↵ | Rafael Mendonça França | 2015-05-03 | 1 | -0/+30 | |
|\ \ \ | | | | | | | | | | | | | | | | | remomueller/fix-actionmailer-preview-links-on-subdirectories Mailer preview now uses `url_for` to fix links to emails for apps runnin... |