Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use Ruby 1.9 Hash syntax in railties | Robin Dupret | 2012-10-14 | 6 | -12/+12 |
| | |||||
* | Update test locations | Mike Moore | 2012-10-09 | 1 | -2/+6 |
| | | | | | | | | | | | | | | Change the default test locations to avoid confusion around the common testing terms "unit" and "functional". Add new rake tasks for the new locations, while maintaining backwards compatibility with the old rake tasks. New testing locations are as follows: app/models -> test/models (was test/units) app/helpers -> test/helpers (was test/units/helpers) app/controllers -> test/controllers (was test/functional) app/mailers -> test/mailers (was test/functional) | ||||
* | Assets cache shouldn't be shared between different environments | Guillermo Iguaran | 2012-09-28 | 1 | -1/+3 |
| | |||||
* | oops, should be directory | Aaron Patterson | 2012-08-13 | 1 | -1/+1 |
| | |||||
* | speed up cache directory creation | Aaron Patterson | 2012-08-13 | 1 | -3/+9 |
| | | | | | | Let Rake control the cache directories. If the directory already exists, rake will skip creating it (vs the previous task which would always try to mkdir_p) | ||||
* | Remove `:rails_env` task since it is not needed anymore. | Rafael Mendonça França | 2012-08-02 | 1 | -7/+0 |
| | |||||
* | Rename RouteInspector to RoutesInspector | Carlos Antonio da Silva | 2012-07-08 | 1 | -1/+1 |
| | | | | Follow the consistency defined in dbc43bc. | ||||
* | move route_inspector to actionpack | @schneems and @mattt | 2012-07-07 | 1 | -2/+2 |
| | | | | this is so we can show route output in the development when we get a routing error. Railties can use features of ActionDispatch, but ActionDispatch should not depend on Railties. | ||||
* | Rename RouteInspect to RoutesInspector for consistency | José Valim | 2012-06-29 | 1 | -2/+2 |
| | |||||
* | fix stylesheet template dir | Sugino Yasuhiro | 2012-06-09 | 1 | -1/+1 |
| | |||||
* | Revert "Only include Rake::DSL if it's defined." | Akira Matsuda | 2012-06-01 | 1 | -1/+1 |
| | | | | | | This reverts commit 82c3aca17e78d25f217702e530586673f2a219d7. Reason: Ruby 1.9.3 is shipped with Rake > 0.9 | ||||
* | Add code statistics for Javascript and | Arun Agrawal | 2012-05-31 | 1 | -0/+1 |
| | | | | | | | CoffeeScript files to `rake stats` task Orignal PR was #2270 Thanks to @nfm | ||||
* | remove unused route reloading code | schneems | 2012-05-30 | 1 | -2/+0 |
| | | | Since the environment is initialized each time rake is run, routes don't need to be re-loaded. https://github.com/rails/rails/pull/6461#r869953 | ||||
* | do not set the ENGINE_PATH to nil | Aaron Patterson | 2012-05-24 | 1 | -1/+1 |
| | |||||
* | Only include Rake::DSL if it's defined. | Joe Van Dyk | 2012-04-23 | 1 | -1/+1 |
| | | | | rake < 0.9 doesn't define Rake::DSL. | ||||
* | Remove Active Resource source files from the repository | Prem Sichanugrist | 2012-03-13 | 1 | -6/+0 |
| | | | | | | | | | | Dear Active Resource, It's not that I hate you or anything, but you didn't get much attention lately. There're so many alternatives out there, and I think people have made their choice to use them than you. I think it's time for you to have a big rest, peacefully in this Git repository. I will miss you, @sikachu. | ||||
* | ruby19: no need to rescue when requiring 'rdoc/task' in Ruby >= 1.9 | Akira Matsuda | 2012-02-27 | 1 | -7/+1 |
| | |||||
* | show stats for app/mailers | Akira Matsuda | 2012-01-16 | 1 | -0/+1 |
| | |||||
* | Rails::Plugin has gone | Santiago Pastorino | 2012-01-03 | 1 | -39/+1 |
| | |||||
* | It should be README.rdoc fixes #4067 | Arun Agrawal | 2011-12-20 | 1 | -1/+1 |
| | |||||
* | I suck, forgot to also change rake's task description | Piotr Sarnacki | 2011-11-25 | 1 | -1/+1 |
| | |||||
* | Allow to display engine's routes when running `rake routes ENGINES=true` | Piotr Sarnacki | 2011-11-24 | 1 | -1/+1 |
| | |||||
* | CHANGELOG => CHANGELOG.md | Arun Agrawal | 2011-11-09 | 1 | -2/+2 |
| | | | | I missed these in previous commit | ||||
* | CHANGELOG to CHANGELOG.md | Arun Agrawal | 2011-11-08 | 1 | -5/+5 |
| | |||||
* | Added environment rake task to engines | Steven Anderson | 2011-10-18 | 1 | -0/+1 |
| | |||||
* | testing.rake should set the default task, closes #2564 | José Valim | 2011-10-07 | 1 | -2/+0 |
| | |||||
* | move route inspecting to an object so that we can more easily test it | Aaron Patterson | 2011-09-09 | 1 | -31/+3 |
| | |||||
* | Further monkey-patching to avoid deprecation warnings | Pivotal Casebook | 2011-08-08 | 1 | -0/+2 |
| | |||||
* | fixes #2368. rake about not showing the middleware, db adapter and db schema ↵ | Vijay Dev | 2011-07-31 | 1 | -1/+1 |
| | | | | version | ||||
* | Improve rails:template undefined LOCATION variable error message fixed | Raghunadh | 2011-07-23 | 1 | -3/+3 |
| | |||||
* | removing inline source option from rdoc task. fixes #2169 | Aaron Patterson | 2011-07-21 | 1 | -3/+3 |
| | |||||
* | Improve formatting of route to Rack application in rake routes. | Hendy Tanata | 2011-07-17 | 1 | -3/+3 |
| | | | | | | | | | | This route: match 'foo/:id' => RackApp, :id => /[A-Z]\d{5}/ is shown as: /foo/:id(.:format) RackApp {:id=>/[A-Z]\d{5}/} | ||||
* | Better formatting of route requirements in rake:routes. | Hendy Tanata | 2011-07-16 | 1 | -1/+9 |
| | | | | | | | | | | Previously it was: {:controller=>"photos", :action=>"show", :id=>/[A-Z]\d{5}/} Now it becomes: photos#show {:id=>/[A-Z]\d{5}/} | ||||
* | Use cache/assets instead. | José Valim | 2011-07-12 | 1 | -2/+1 |
| | |||||
* | assets.cache_store now defaults to filesystem. You will want to share ↵ | José Valim | 2011-07-12 | 1 | -1/+2 |
| | | | | tmp/assets_cache between deploys. | ||||
* | fix engines rake tasks | Jake Varghese | 2011-07-04 | 1 | -0/+2 |
| | |||||
* | [IMPORTANT] Make "sprockets/railtie" require explicit. | José Valim | 2011-06-29 | 1 | -26/+0 |
| | | | | | | | | | | This makes "sprockets/railtie" explicit. This means that sprockets will be loaded when you require "rails/all". If you are not using requiring "rails/all", you need to manually load it with all other framework railties. In order to be complete, this commit also adds --skip-sprockets to the rails generator. | ||||
* | Railties: added tests for rake assets:clean | James A. Rosen | 2011-06-21 | 1 | -2/+2 |
| | |||||
* | rake assets:clean also removes directories | James A. Rosen | 2011-06-21 | 1 | -1/+1 |
| | | | | | | See https://github.com/rails/rails/pull/1776#issuecomment-1402894, 2df2bfdb4b1165dce4b5bc3fe046147d793fead4, and 7440a254c4e724a5bbf6a0f4c8edb6d8d0432433. | ||||
* | Create an :assets group in the Gemfile. | José Valim | 2011-06-21 | 1 | -5/+10 |
| | | | | | | | | | This group is required by default only on development and test (you can change it on config/application.rb). `rake assets:precompile` will automatically add the assets group to Rails.groups (and consequently Bundler.require) and should work transparently. | ||||
* | assets:clean task now cleans up images | James A. Rosen | 2011-06-19 | 1 | -1/+1 |
| | |||||
* | sprockets gzips assets now | Xavier Noria | 2011-06-07 | 1 | -1/+4 |
| | |||||
* | refectored assets:clean task | Vishnu Atrai | 2011-05-30 | 1 | -3/+1 |
| | |||||
* | rename task and Rake::FileList used | Vishnu Atrai | 2011-05-27 | 1 | -3/+3 |
| | |||||
* | Add rake task to implement assets:cleanup, fixes Github Issues # 1284 | Bhavin Kamani | 2011-05-27 | 1 | -0/+10 |
| | |||||
* | Merge pull request #1305 from amatsuda/require_rdoc_task_fail2 | José Valim | 2011-05-25 | 1 | -0/+2 |
|\ | | | | | Ensure RDoc::Task exists even if 'rdoc/task' was not required | ||||
| * | Ensure RDoc::Task exists even if 'rdoc/task' was not required | Akira Matsuda | 2011-05-26 | 1 | -0/+2 |
| | | |||||
* | | Renaming helper in the Rake task, but why is this needed in the first place? ↵ | wycats | 2011-05-25 | 1 | -1/+1 |
|/ | | | | (paging JP) | ||||
* | require 'rake/rdoctask' if failed to require 'rdoc/task' | Akira Matsuda | 2011-05-26 | 1 | -1/+5 |
| | | | | | fixes a regression introduced by b921679d0dd3d5ca16f0362c2b34e7703cfe15e5 require 'rdoc/task' fails if the system RDoc version is below 2.4.2 (e.g. CRuby 1.8.7) | ||||
* | fixes Rake::RDocTask deprecation warnings from rake 0.9.0 | Vijay Dev | 2011-05-25 | 1 | -2/+2 |
| |