Sha256: b54c19bbf2a98c90a6c9b6caaa1c821583a90104582a80dbf14bf9047bc24763

Contents?: true

Size: 583 Bytes

Versions: 27

Compression:

Stored size: 583 Bytes

Contents

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "gumdrop/version"
require 'rake/testtask'

desc "builds gem"
task :build do
  system "gem build gumdrop.gemspec"
end
 
desc "releases gem"
task :release => :build do
  system "gem push gumdrop-#{Gumdrop::VERSION}.gem"
end

desc "installs gem"
task :install => :build do
  system "gem install gumdrop-#{Gumdrop::VERSION}"
end

desc "uninstalls gem"
task :uninstall do
  system "gem uninstall gumdrop"
end


Rake::TestTask.new do |t|
  t.libs.push "lib"
  t.test_files = FileList['specs/*_spec.rb']
  t.verbose = true
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
gumdrop-0.8.0 Rakefile
gumdrop-0.7.5 Rakefile
gumdrop-0.7.4 Rakefile
gumdrop-0.7.3.1 Rakefile
gumdrop-0.7.3 Rakefile
gumdrop-0.7.2 Rakefile
gumdrop-0.7.1 Rakefile
gumdrop-0.7.0 Rakefile
gumdrop-0.6.4 Rakefile
gumdrop-0.6.3 Rakefile
gumdrop-0.6.2 Rakefile
gumdrop-0.6.1 Rakefile
gumdrop-0.6.0 Rakefile
gumdrop-0.5.2 Rakefile
gumdrop-0.5.1 Rakefile
gumdrop-0.5 Rakefile
gumdrop-0.4.0 Rakefile
gumdrop-0.3.10 Rakefile
gumdrop-0.3.9 Rakefile
gumdrop-0.3.8 Rakefile