public
Description: ActiveWarehouse for Rails - Implement data warehouses with Rails
Homepage: http://activewarehouse.rubyforge.org/
Clone URL: git://github.com/aeden/activewarehouse.git
activewarehouse / Rakefile.rb
100644 16 lines (12 sloc) 0.453 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Load rake files for sub-projects
(Dir["#{File.dirname(__FILE__)}/**/Rakefile"] -
Dir["#{File.dirname(__FILE__)}/rails_warehouse/Rakefile"]).each { |ext| load ext }
 
require 'date'
 
namespace :github do
  desc "Update Github Gemspec"
  task :update_gemspec do
    [AW.spec('activewarehouse/'), AWETL.spec('etl/')].each do |spec|
      File.open(File.join(File.dirname(__FILE__), "#{spec.name}.gemspec"), "w"){|f| f << spec.to_ruby}
    end
  end
end