Sha256: 41c1856a4c91a5b36b8b4c04d2e03e1ee8d779c2e6f06baebbd41ff514332148

Contents?: true

Size: 360 Bytes

Versions: 10

Compression:

Stored size: 360 Bytes

Contents

require 'rake/clean'

desc 'reinstall plugins'
task :reinstall do
  toolchainpath="../../../plugins/"
  plugins = ["gcc","clang","diab"]
  plugins.each do |p|
    plugin = "cxxproject_#{p}toolchain"
    sh "gem uninstall #{plugin}" 
    cd "#{toolchainpath}toolchain#{p}" do
      sh "gem build #{p}.gemspec"
      sh "gem install #{plugin}"
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
cxxproject-0.6.29 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.28 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.27 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.26 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.25 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.24 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.23 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.21 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.18 plugins/tmp/reinstall/Rakefile.rb
cxxproject-0.6.17 plugins/tmp/reinstall/Rakefile.rb