Sha256: 3fab7e352437665bcf61107defdcdac237dfe00f0809c00486915e8d2e0d2582
Contents?: true
Size: 1.3 KB
Versions: 15
Compression:
Stored size: 1.3 KB
Contents
require "spec" require "spec/rake/spectask" require 'lib/typhoeus.rb' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "typhoeus" gemspec.summary = "A library for interacting with web services (and building SOAs) at blinding speed." gemspec.description = "Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic." gemspec.email = "paul@pauldix.net" gemspec.homepage = "http://github.com/pauldix/typhoeus" gemspec.authors = ["Paul Dix"] gemspec.add_dependency "rack" gemspec.add_development_dependency "rspec" gemspec.add_development_dependency "jeweler" gemspec.add_development_dependency "diff-lcs" gemspec.add_development_dependency "sinatra" gemspec.add_development_dependency "json" end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end Spec::Rake::SpecTask.new do |t| t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""] t.spec_files = FileList['spec/**/*_spec.rb'] end task :install do rm_rf "*.gem" puts `gem build typhoeus.gemspec` puts `sudo gem install typhoeus-#{Typhoeus::VERSION}.gem` end desc "Run all the tests" task :default => :spec
Version data entries
15 entries across 15 versions & 4 rubygems