From 72cd097620bd0bb8ca028f4349cb5ffde6c882fd Mon Sep 17 00:00:00 2001 From: Steve Agalloco Date: Fri, 1 Mar 2013 12:33:54 -0500 Subject: [PATCH] fix the build again --- Gemfile | 2 +- spec/instapaper/client/bookmark_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index bf197c9..a48348b 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,7 @@ group :test do gem 'json', :platforms => :ruby_18 gem 'rspec' gem 'timecop' - gem 'webmock', '>= 1.10' + gem 'webmock', '>= 1.10.1' end gemspec diff --git a/spec/instapaper/client/bookmark_spec.rb b/spec/instapaper/client/bookmark_spec.rb index ec9b9ee..cdbad6a 100644 --- a/spec/instapaper/client/bookmark_spec.rb +++ b/spec/instapaper/client/bookmark_spec.rb @@ -61,7 +61,7 @@ describe Instapaper::Client::Bookmark do it "should get the correct resource" do @client.add_bookmark('http://someurl.com', :title => 'This is the title', :description => 'This is the description') - a_post("bookmarks/add").with(:body => {:url => "http://someurl.com", :title => 'This+is+the+title', :description => 'This+is+the+description' }). + a_post("bookmarks/add").with(:body => {:url => "http://someurl.com", :title => 'This is the title', :description => 'This is the description' }). should have_been_made end