Updated dependencies.

git-svn-id: https://google-api-ruby-client.googlecode.com/svn/trunk@93 c1d61fac-ed7f-fcc1-18f7-ff78120a04ef
This commit is contained in:
Bob Aman 2010-10-22 17:14:02 +00:00
parent 20eff1df7d
commit 316f1c6bd4
3 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,8 @@
== 0.1.2
* added support for two-legged OAuth
* moved some development dependencies into runtime
== 0.1.1
* substantial improvements to the command line interface

View File

@ -17,7 +17,7 @@ module Google
module VERSION
MAJOR = 0
MINOR = 1
TINY = 1
TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -19,18 +19,24 @@ namespace :gem do
s.extra_rdoc_files = %w( README )
s.rdoc_options.concat ['--main', 'README']
# Dependencies used in the main library
s.add_runtime_dependency('signet', '>= 0.1.4')
s.add_runtime_dependency('addressable', '>= 2.2.2')
s.add_runtime_dependency('httpadapter', '>= 0.2.0')
s.add_runtime_dependency('json', '>= 1.1.9')
s.add_runtime_dependency('extlib', '>= 0.9.15')
s.add_development_dependency('rack', '= 1.2.0')
s.add_development_dependency('sinatra', '>= 1.0')
s.add_development_dependency('liquid', '>= 2.2.2')
# Dependencies used in the CLI
s.add_runtime_dependency('launchy', '>= 0.3.2')
s.add_runtime_dependency('rack', '= 1.2.0')
s.add_runtime_dependency('sinatra', '>= 1.0')
# Dependencies used in the examples
s.add_runtime_dependency('liquid', '>= 2.2.2')
s.add_development_dependency('rake', '>= 0.7.3')
s.add_development_dependency('rspec', '~> 1.2.9')
s.add_development_dependency('launchy', '>= 0.3.2')
s.add_development_dependency('rcov', '=> 0.9.9')
s.add_development_dependency('diff-lcs', '>= 1.1.2')
s.require_path = 'lib'