Sha256: 5b57175d0cf96fca5b3f17fb19d674c2f55ca69148f57ad0e767dc3aad5190e6

Contents?: true

Size: 547 Bytes

Versions: 86

Compression:

Stored size: 547 Bytes

Contents

require_relative 'lib/restpack-web/version'

task :default => :test
task :test => :spec

begin
  require "rspec/core/rake_task"

  desc "Run all specs"
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.rspec_opts = ['-cfs']
  end
rescue LoadError
end


task :gem do
  ["gem:build", "gem:push"].each do |task|
    Rake::Task[task].reenable
    Rake::Task[task].invoke
  end
end

namespace :gem do 
  task :build do
    sh "gem build restpack-web.gemspec"
  end
  
  task :push do
    sh "gem push restpack-web-#{RestPack::Web::VERSION}.gem"
  end
end

Version data entries

86 entries across 86 versions & 1 rubygems

Version Path
restpack-web-0.1.37 Rakefile
restpack-web-0.1.36 Rakefile
restpack-web-0.1.35 Rakefile
restpack-web-0.1.34 Rakefile
restpack-web-0.1.33 Rakefile
restpack-web-0.1.32 Rakefile
restpack-web-0.1.31 Rakefile
restpack-web-0.1.30 Rakefile
restpack-web-0.1.29 Rakefile
restpack-web-0.1.28 Rakefile
restpack-web-0.1.27 Rakefile
restpack-web-0.1.26 Rakefile
restpack-web-0.1.25 Rakefile
restpack-web-0.1.24 Rakefile
restpack-web-0.1.23 Rakefile
restpack-web-0.1.22 Rakefile
restpack-web-0.1.21 Rakefile
restpack-web-0.1.20 Rakefile
restpack-web-0.1.19 Rakefile
restpack-web-0.1.18 Rakefile