Sha256: 42a134bc7c332747d2d594dc7b4c2480444e49704dffda8f3537ae533204ae46

Contents?: true

Size: 506 Bytes

Versions: 10

Compression:

Stored size: 506 Bytes

Contents

require 'rake'
require 'rubygems/package_task'
require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['./test/tc_*.rb']
  t.verbose = false
end

spec = eval(File.read('xml-smart.gemspec'))
Gem::PackageTask.new(spec) do |pkg|
  pkg.need_zip = true
  pkg.need_tar = true
  `rm pkg/* -rf`
  `ln -sf #{pkg.name}.gem pkg/xml-smart.gem`
end

task :push => :gem do |r|
  `gem push pkg/xml-smart.gem`
end

task :install => :gem do |r|
  `gem install pkg/xml-smart.gem`
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
xml-smart-0.5.3 Rakefile
xml-smart-0.5.2 Rakefile
xml-smart-0.5.1 Rakefile
xml-smart-0.5.0 Rakefile
xml-smart-0.4.4 Rakefile
xml-smart-0.4.3 Rakefile
xml-smart-0.4.2 Rakefile
xml-smart-0.4.1 Rakefile
xml-smart-0.4.0 Rakefile
xml-smart-0.3.22 Rakefile