Skip to content

Commit

Permalink
Updated dependencies and fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jtadeulopes committed May 5, 2012
1 parent d04d200 commit a3cd6e0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,10 +1,10 @@
source "http://rubygems.org"

gem "httparty", ">= 0.6.1"
gem "httparty", "~> 0.8.3"
gem "json", ">= 1.4.6"

group :development do
gem "rspec", "~> 2.3.0"
gem "rspec", "~> 2.10.0"
gem "bundler", "~> 1.1.3"
gem "jeweler", "~> 1.8.3"
gem "rcov", ">= 0"
Expand Down
29 changes: 16 additions & 13 deletions Gemfile.lock
Expand Up @@ -3,28 +3,31 @@ GEM
specs:
addressable (2.2.8)
crack (0.1.8)
diff-lcs (1.1.2)
diff-lcs (1.1.3)
git (1.2.5)
httparty (0.7.4)
crack (= 0.1.8)
httparty (0.8.3)
multi_json (~> 1.0)
multi_xml
jeweler (1.8.3)
bundler (~> 1.0)
git (>= 1.2.5)
rake
rdoc
json (1.5.1)
multi_json (1.3.4)
multi_xml (0.4.4)
rake (0.9.2.2)
rcov (0.9.9)
rdoc (3.12)
json (~> 1.4)
rspec (2.3.0)
rspec-core (~> 2.3.0)
rspec-expectations (~> 2.3.0)
rspec-mocks (~> 2.3.0)
rspec-core (2.3.1)
rspec-expectations (2.3.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.3.0)
rspec (2.10.0)
rspec-core (~> 2.10.0)
rspec-expectations (~> 2.10.0)
rspec-mocks (~> 2.10.0)
rspec-core (2.10.0)
rspec-expectations (2.10.0)
diff-lcs (~> 1.1.3)
rspec-mocks (2.10.1)
webmock (1.8.6)
addressable (>= 2.2.7)
crack (>= 0.1.7)
Expand All @@ -34,9 +37,9 @@ PLATFORMS

DEPENDENCIES
bundler (~> 1.1.3)
httparty (>= 0.6.1)
httparty (~> 0.8.3)
jeweler (~> 1.8.3)
json (>= 1.4.6)
rcov
rspec (~> 2.3.0)
rspec (~> 2.10.0)
webmock (~> 1.8.6)
2 changes: 1 addition & 1 deletion spec/googl/client_spec.rb
Expand Up @@ -71,7 +71,7 @@
it { item.label.should == 'http://goo.gl/Ue8sQ' }
it { item.long_url.should == 'http://facebook.com/' }
it { item.status.should == 'OK' }
it { item.created.should be_instance_of(Time)}
it { item.created.should == "2011-01-13T21:39:17.271+00:00"}

end

Expand Down
2 changes: 1 addition & 1 deletion spec/googl/expand_spec.rb
Expand Up @@ -64,7 +64,7 @@
let(:element) { subject.created }

it "should be the time url was shortened" do
element.should == Time.iso8601("2011-01-13T03:48:10.309+00:00")
element.should == "2011-01-13T03:48:10.309+00:00"
end

end
Expand Down

0 comments on commit a3cd6e0

Please sign in to comment.