Sha256: 89e64debfc11aa279445c806ee4d63a604f3e472858775f36d535b15b66182fe

Contents?: true

Size: 560 Bytes

Versions: 15

Compression:

Stored size: 560 Bytes

Contents

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

desc "Run tests"
Rake::TestTask.new(:test) do |test|
  test.ruby_opts = ["-rubygems"] if defined? Gem
  test.libs << "lib" << "test"
  test.pattern = "test/**/*_test.rb"
  puts "running tests."
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

15 entries across 15 versions & 1 rubygems

Version Path
createsend-5.1.0 Rakefile
createsend-5.0.0 Rakefile
createsend-4.1.2 Rakefile
createsend-4.1.1 Rakefile
createsend-4.1.0 Rakefile
createsend-4.0.2 Rakefile
createsend-4.0.1 Rakefile
createsend-4.0.0 Rakefile
createsend-3.4.0 Rakefile
createsend-3.3.0 Rakefile
createsend-3.2.0 Rakefile
createsend-3.1.1 Rakefile
createsend-3.1.0 Rakefile
createsend-3.0.0 Rakefile
createsend-2.5.1 Rakefile