Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8591

Show
Ignore:
Timestamp:
01/07/08 19:24:18 (9 months ago)
Author:
tobie
Message:

prototype: Add a description to :test and :dist rake tasks.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/CHANGELOG

    r8580 r8591  
    11*SVN* 
     2 
     3* Add a description to :test and :dist rake tasks. [Christoph Sturm] 
     4 
    25* Fix Selector.matchElements to allow for coma-separated selectors in Element#up/next/previous and Event#findElement. [Samuel Lebeau, Tobie Langel] 
    36 
  • spinoffs/prototype/trunk/Rakefile

    r8572 r8591  
    1010task :default => [:dist, :package, :clean_package_source] 
    1111 
     12desc "Builds the distribution" 
    1213task :dist do 
    1314  $:.unshift File.join(PROTOTYPE_ROOT, 'lib') 
     
    3334end 
    3435 
     36desc "Builds the distribution, runs the JavaScript unit tests and collects their results." 
    3537task :test => [:dist, :test_units] 
    3638