Sha256: 628d9b4d4f8409ffae9464a4079469074447837b1e7e438d0aa25af97d50cdbf

Contents?: true

Size: 414 Bytes

Versions: 6

Compression:

Stored size: 414 Bytes

Contents

namespace :all do
  desc 'Build gems into the pkg directory'
  task :build do
    sh 'rake build'

    %w{core pages}.each do |engine|
      sh "gem build #{engine}/constructor-#{engine}.gemspec && mv constructor-#{engine}-#{ConstructorCore::VERSION}.gem pkg/"
    end
  end

  desc 'Push all gems to Rubygems'
  task :push do
     sh "for i in pkg/*#{ConstructorCore::VERSION}.gem; do gem push $i; done"
  end
end

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
constructor-pages-0.7.3 tasks/constructor-cms_tasks.rake
constructor-core-0.7.3 tasks/constructor-cms_tasks.rake
constructor-cms-0.7.3 tasks/constructor-cms_tasks.rake
constructor-pages-0.7.2 tasks/constructor-cms_tasks.rake
constructor-core-0.7.2 tasks/constructor-cms_tasks.rake
constructor-cms-0.7.2 tasks/constructor-cms_tasks.rake