Sha256: 556fff36d095a16971b43a420736ab37126b16dd7d323a960daef8269a878b97

Contents?: true

Size: 445 Bytes

Versions: 12

Compression:

Stored size: 445 Bytes

Contents

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "gumdrop/version"
 
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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
gumdrop-0.2.16 Rakefile
gumdrop-0.2.15 Rakefile
gumdrop-0.2.14 Rakefile
gumdrop-0.2.13 Rakefile
gumdrop-0.2.12 Rakefile
gumdrop-0.2.11 Rakefile
gumdrop-0.2.10 Rakefile
gumdrop-0.2.9 Rakefile
gumdrop-0.2.8 Rakefile
gumdrop-0.2.7 Rakefile
gumdrop-0.2.4 Rakefile
gumdrop-0.2.3 Rakefile