Sha256: c5a01641675d3c835031ff7c745b6e6e989def72cf43dfaf8253cbea02875d60

Contents?: true

Size: 541 Bytes

Versions: 8

Compression:

Stored size: 541 Bytes

Contents

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "bundler/version"
require "shoulda/tasks"
require 'lib/createsend'

require "rake/testtask"
Rake::TestTask.new(:test) do |test|
  test.ruby_opts = ["-rubygems"] if defined? Gem
  test.libs << "lib" << "test"
  test.pattern = "test/**/*_test.rb"
end

desc "Build the gem"
task :build do
  system "gem build createsend.gemspec"
end

desc "Build and release the gem"
task :release => :build do
  system "gem push createsend-#{CreateSend::VERSION}.gem"
end

task :default => :test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
createsend-1.0.2 Rakefile
createsend-1.0.1 Rakefile
createsend-1.0.0 Rakefile
createsend-0.3.2 Rakefile
createsend-0.3.1 Rakefile
createsend-0.3.0 Rakefile
createsend-0.2.1 Rakefile
createsend-0.2.0 Rakefile