Sha256: 8864cf0ea16f09282124f4b352b4f760782785f47a3a0db5652c394302403949

Contents?: true

Size: 366 Bytes

Versions: 2

Compression:

Stored size: 366 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

desc "Run specs"
RSpec::Core::RakeTask.new(:spec)

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

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

task :default => :spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
omniauth-createsend-1.0.4 Rakefile
omniauth-createsend-1.0.3 Rakefile