Skip to content

Commit

Permalink
Specify test-unit development dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed May 15, 2011
1 parent 21a92c6 commit faea5fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,4 +1,4 @@
script: "rake test:live"
script: "bundle exec rake test:live"
rvm:
- 1.8.6
- 1.8.7
Expand Down
13 changes: 6 additions & 7 deletions Gemfile
Expand Up @@ -5,21 +5,20 @@ group :development do
end

group :test do
gem 'em-http-request', '~> 0.3', :require => 'em-http', :platforms => :ruby
gem 'em-http-request', '~> 0.3', :require => 'em-http'
gem 'em-synchrony', '~> 0.2', :require => ['em-synchrony', 'em-synchrony/em-http'], :platforms => :ruby_19
gem 'excon', '~> 0.6'
gem 'patron', '~> 0.4', :platforms => :ruby
gem 'leftright', :require => false
gem 'typhoeus', '~> 0.2', :platforms => :ruby
gem 'webmock'
gem 'leftright', '~> 0.9', :require => false
gem 'patron', '~> 0.4'
gem 'typhoeus', '~> 0.2'
# ActiveSupport::JSON will be used in ruby 1.8 and Yajl in 1.9; this is to test against both adapters
gem 'activesupport', '~> 2.3', :require => nil, :platforms => [:ruby_18, :jruby]
gem 'yajl-ruby', :require => 'yajl', :platforms => :ruby_19
gem 'yajl-ruby', '~> 0.8', :require => 'yajl', :platforms => :ruby_19
end

platforms :jruby do
gem 'jruby-openssl', '~> 0.7'
gem 'ffi-ncurses'
gem 'ffi-ncurses', '~> 0.3'
end

gemspec
2 changes: 2 additions & 0 deletions faraday.gemspec
Expand Up @@ -33,6 +33,8 @@ Gem::Specification.new do |s|
s.require_paths = %w[lib]

s.add_development_dependency 'rake', '~> 0.8'
s.add_development_dependency 'test-unit', '~> 2.3'
s.add_development_dependency 'webmock', '~> 1.6'
s.add_runtime_dependency 'addressable', '~> 2.2.6'
s.add_runtime_dependency 'multipart-post', '~> 1.1.0'
s.add_runtime_dependency 'rack', ['>= 1.1.0', '<= 1.2.0']
Expand Down

0 comments on commit faea5fd

Please sign in to comment.