Skip to content

Commit

Permalink
Removes typhoeus version lock, fixes a "broken" test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Cooper committed Apr 23, 2015
1 parent 8a44f10 commit 8f6ce63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mixpanel_client.gemspec
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency('typhoeus', '~> 0.6.7')
s.add_runtime_dependency('typhoeus')
s.add_development_dependency('bundler', '>=1.5.3')
s.add_development_dependency('rake', '>=10.1.1')
s.add_development_dependency('rdoc', '>=4.1.1')
Expand Down
2 changes: 1 addition & 1 deletion spec/mixpanel_client/mixpanel_client_spec.rb
Expand Up @@ -168,7 +168,7 @@

specify 'Mixpanel::URI instance should receive the custom expiry time in
the options[:expiry] instead of 600s' do
Mixpanel::URI.should_receive(:mixpanel).with do |*args|
Mixpanel::URI.should_receive(:mixpanel) do |*args|
args.pop[:expire].should eq expiry.to_i
true
end.and_return(fake_url)
Expand Down

0 comments on commit 8f6ce63

Please sign in to comment.