Skip to content

Commit

Permalink
More fixes to dependencies. Bump version to 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalcucco committed May 12, 2011
1 parent 41d0f2b commit ad56e15
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ source "http://rubygems.org"
gem 'oauth2'
gem 'basecamp', :path => File.expand_path("..", __FILE__)
gem 'xml-simple'
gem 'activeresource', '>= 2.3.0'

group :development do
gem 'rake'
Expand Down
11 changes: 4 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
basecamp (0.0.4)
activerecord
basecamp (0.0.5)
activeresource (>= 2.3.0)
oauth2
xml-simple

Expand All @@ -13,14 +13,11 @@ GEM
activesupport (= 3.0.7)
builder (~> 2.1.2)
i18n (~> 0.5.0)
activerecord (3.0.7)
activeresource (3.0.7)
activemodel (= 3.0.7)
activesupport (= 3.0.7)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activesupport (3.0.7)
addressable (2.2.5)
arel (2.0.9)
builder (2.1.2)
faraday (0.4.6)
addressable (>= 2.1.1)
Expand All @@ -35,7 +32,6 @@ GEM
rack (1.2.2)
rake (0.8.7)
rspec (1.3.0)
tzinfo (0.3.27)
webmock (1.2.2)
addressable (>= 2.1.1)
xml-simple (1.0.15)
Expand All @@ -44,6 +40,7 @@ PLATFORMS
ruby

DEPENDENCIES
activeresource (>= 2.3.0)
basecamp!
mg (>= 0.0.8)
oauth2
Expand Down
4 changes: 2 additions & 2 deletions basecamp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require 'rubygems'

Gem::Specification.new do |gem|
gem.name = 'basecamp'
gem.version = '0.0.4'
gem.version = '0.0.5'
gem.summary = %Q{Basecamp API wrapper.}
gem.description = %Q{Basecamp API wrapper.}
gem.email = "nobody@gmail.com"
Expand All @@ -13,7 +13,7 @@ Gem::Specification.new do |gem|

gem.add_dependency 'oauth2'
gem.add_dependency 'xml-simple'
gem.add_dependency 'activerecord'
gem.add_dependency 'activeresource', '>= 2.3.0'

gem.add_development_dependency 'rake'
gem.add_development_dependency 'mg', '>= 0.0.8'
Expand Down
2 changes: 2 additions & 0 deletions lib/basecamp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
require 'yaml'
require 'date'
require 'time'
require 'active_resource'
require 'xmlsimple'

module Basecamp
class Connection #:nodoc:
Expand Down

0 comments on commit ad56e15

Please sign in to comment.