aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks
Commit message (Collapse)AuthorAgeFilesLines
...
* testing.rake should set the default task, closes #2564José Valim2011-10-071-2/+0
|
* move route inspecting to an object so that we can more easily test itAaron Patterson2011-09-091-31/+3
|
* Further monkey-patching to avoid deprecation warningsPivotal Casebook2011-08-081-0/+2
|
* fixes #2368. rake about not showing the middleware, db adapter and db schema ↵Vijay Dev2011-07-311-1/+1
| | | | version
* Improve rails:template undefined LOCATION variable error message fixedRaghunadh2011-07-231-3/+3
|
* removing inline source option from rdoc task. fixes #2169Aaron Patterson2011-07-211-3/+3
|
* Improve formatting of route to Rack application in rake routes.Hendy Tanata2011-07-171-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 Tanata2011-07-161-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é Valim2011-07-121-2/+1
|
* assets.cache_store now defaults to filesystem. You will want to share ↵José Valim2011-07-121-1/+2
| | | | tmp/assets_cache between deploys.
* fix engines rake tasksJake Varghese2011-07-041-0/+2
|
* [IMPORTANT] Make "sprockets/railtie" require explicit.José Valim2011-06-291-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:cleanJames A. Rosen2011-06-211-2/+2
|
* rake assets:clean also removes directoriesJames A. Rosen2011-06-211-1/+1
| | | | | | See https://github.com/rails/rails/pull/1776#issuecomment-1402894, 2df2bfdb4b1165dce4b5bc3fe046147d793fead4, and 7440a254c4e724a5bbf6a0f4c8edb6d8d0432433.
* Create an :assets group in the Gemfile.José Valim2011-06-211-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 imagesJames A. Rosen2011-06-191-1/+1
|
* sprockets gzips assets nowXavier Noria2011-06-071-1/+4
|
* refectored assets:clean taskVishnu Atrai2011-05-301-3/+1
|
* rename task and Rake::FileList used Vishnu Atrai2011-05-271-3/+3
|
* Add rake task to implement assets:cleanup, fixes Github Issues # 1284Bhavin Kamani2011-05-271-0/+10
|
* Merge pull request #1305 from amatsuda/require_rdoc_task_fail2José Valim2011-05-251-0/+2
|\ | | | | Ensure RDoc::Task exists even if 'rdoc/task' was not required
| * Ensure RDoc::Task exists even if 'rdoc/task' was not requiredAkira Matsuda2011-05-261-0/+2
| |
* | Renaming helper in the Rake task, but why is this needed in the first place? ↵wycats2011-05-251-1/+1
|/ | | | (paging JP)
* require 'rake/rdoctask' if failed to require 'rdoc/task'Akira Matsuda2011-05-261-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.0Vijay Dev2011-05-251-2/+2
|
* Removed ActiveSupport::SecureRandom in favour of SecureRandom from the ↵Jon Leighton2011-05-231-1/+1
| | | | standard library. (It has been deprecated in the 3-1-stable branch.)
* Replace references to ActiveSupport::SecureRandom with just SecureRandom, ↵Jon Leighton2011-05-231-1/+1
| | | | and require 'securerandom' from the stdlib when active support is required.
* remove update:javascripts rake taskAkira Matsuda2011-05-131-7/+2
| | | | because javascript libraries are not bundled anymore, and create_javascript_files generator was already removed
* Display custom asset routes in `rake routes`Peter Suschlik2011-05-051-1/+1
|
* Dont show the assets mount in rake routesDavid Heinemeier Hansson2011-05-041-1/+2
|
* Give assets access to asset_path during precompilationDavid Heinemeier Hansson2011-04-191-0/+3
|
* Add description to assets:precompile such that it shows up in rake -TDavid Heinemeier Hansson2011-04-181-1/+2
|
* Remove the ability for engines to serve assets from the public directory.José Valim2011-04-151-29/+0
|
* Fix tests.José Valim2011-04-151-1/+1
|
* Fix config.assets.precompile optionJoshua Peek2011-03-301-1/+1
|
* Precompile configured assetsJoshua Peek2011-03-291-1/+1
|
* Use sprockets precompileJoshua Peek2011-03-221-10/+2
|
* Add sprockets task to compile assetsJoshua Peek2011-03-211-0/+14
|
* Refactoring of application's task in engine.rakePiotr Sarnacki2010-12-191-20/+23
|
* Do not load all application's task in generated enginePiotr Sarnacki2010-12-191-0/+66
|
* Comment internal railties tasks.José Valim2010-10-141-1/+1
|
* Remove task for creating symlinks for railtiesPiotr Sarnacki2010-10-141-19/+0
|
* Added foo:install:assets task that copies assets from plugins public ↵Piotr Sarnacki2010-10-141-0/+28
| | | | | | | | | | | directory to application's public directory This is the most simple and naive approach: just copy every files from engine to app. The only exception is when file has changed, in that case developer will be asked if he wants to rename the field. There is no need to make this task more sophisticated as 3.1 will be shipped with better assets handling and it will be the default way to handle things.
* -j parameter added to rails new command.siong19872010-10-111-1/+1
| | | | | | | | Now you can start your apps with jquery with rails new myapp -j jquery, the default is still prototype [#5613 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Updated DOCS for engines and added a couple TODOs. Also, commented internal ↵José Valim2010-10-111-1/+1
| | | | railties rake tasks description.
* Fixed rake task description typoVesa Vänskä2010-10-081-1/+1
|
* Provide a cleaner syntax for paths configuration that does not rely on ↵José Valim2010-10-061-1/+1
| | | | method_missing.
* revision of typo: crytographically [#5566 state:resolved]ISHIKAWA Takayuki2010-09-071-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Added task for creating symlinks to engines' public directoriesPiotr Sarnacki2010-09-061-0/+20
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Remove deprecation warnings in railtiesCarlos Antonio da Silva2010-09-061-17/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>