Sha256: 8182981ec32d44c19e709713e1084ba2e78fcf4f5f941b58b3feebd3c92c68d5

Contents?: true

Size: 430 Bytes

Versions: 6

Compression:

Stored size: 430 Bytes

Contents

require 'rake'
load 'thin.gemspec'

# Load tasks in tasks/
Dir['tasks/**/*.rake'].each { |rake| load rake }

task :default => :spec

desc "Build gem packages"
task :build do
  sh "gem build thin.gemspec"
end

desc "Push gem packages"
task :push => :build do
  sh "gem push thin-*.gem"
end

task :install => :build do
  sh "gem install thin-*.gem"
end

desc "Release version #{Thin::VERSION::STRING}"
task :release => [:tag, :push]

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
thin-1.6.1 Rakefile
thin-1.6.0 Rakefile
thin-1.5.1 Rakefile
friendlyfashion-thin-1.4.1.1 Rakefile
thin-1.5.0 Rakefile
friendlyfashion-thin-1.4.1 Rakefile