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

Changeset 662

Show
Ignore:
Timestamp:
02/18/05 16:52:40 (4 years ago)
Author:
david
Message:

Get Action Service (soon to be renamed Action Web Service) in the loop

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionservice/Rakefile

    r660 r662  
    1111PKG_NAME      = 'actionservice' 
    1212PKG_VERSION   = '0.4.0' + PKG_BUILD 
     13PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
     14PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
    1315 
    1416desc "Default Task" 
  • trunk/pushgems.rb

    r624 r662  
    33build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i 
    44 
    5 (%w( actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg| 
     5(%w( actionservice actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg| 
    66  puts "Pushing: #{pkg} (#{build_number})" 
    77  `cd #{pkg} && PKG_BUILD=#{build_number} rake pgem && cd ..`