Sha256: 384c8719bc8a1a9707e6093804d6ab1fd5b364081cdeef11b625b69a80c0561f
Contents?: true
Size: 808 Bytes
Versions: 6822
Compression:
Stored size: 808 Bytes
Contents
require "bundler" Bundler.setup require "rake" require "rspec/core/rake_task" $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "typhoeus/version" task :gem => :build task :build do system "gem build typhoeus.gemspec" end task :install => :build do system "gem install typhoeus-#{Typhoeus::VERSION}.gem" end task :release => :build do system "git tag -a v#{Typhoeus::VERSION} -m 'Tagging #{Typhoeus::VERSION}'" system "git push --tags" system "gem push typhoeus-#{Typhoeus::VERSION}.gem" end RSpec::Core::RakeTask.new(:spec) do |t| t.verbose = false t.ruby_opts = "-W -I./spec -rspec_helper" end desc "Start up the test servers" task :start do require_relative 'spec/support/boot' begin Boot.start_servers(:rake) rescue Exception end end task :default => :spec
Version data entries
6,822 entries across 6,819 versions & 27 rubygems
Version | Path |
---|---|
typhoeus-0.5.0.alpha | Rakefile |
typhoeus-0.5.0.pre | Rakefile |