Sha256: b87366609371f1267411ae037c0d5ebc36d04b7393513d6ed0dfe7077af73d53

Contents?: true

Size: 360 Bytes

Versions: 3

Compression:

Stored size: 360 Bytes

Contents

#!/usr/bin/env rake

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)

require "bundler/gem_tasks"
require "insulin/version"
 
task :build do
  system "gem build insulin.gemspec"
#  system "mv insulin*gem pkg/"
end
 
task :release => :build do
  system "gem push pkg/insulin-#{Insulin::VERSION}.gem"
end

task :rspec do
  system "bundle exec rspec"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
insulin-0.0.11 Rakefile
insulin-0.0.10 Rakefile
insulin-0.0.9 Rakefile