Minor release for updating signet

This commit is contained in:
Steven Bazyl 2013-01-18 09:21:13 -08:00
parent f369139b32
commit 0dafa5e4ee
4 changed files with 9 additions and 8 deletions

View File

@ -1,3 +1,8 @@
# 0.6.2
* Update signet to 0.4.6 to support server side continuation of postmessage
auth flows.
# 0.6.1 # 0.6.1
* Fix impersonation with service accounts * Fix impersonation with service accounts

View File

@ -2,7 +2,7 @@ source :rubygems
gemspec gemspec
gem 'signet', '>= 0.4.4' gem 'signet', '>= 0.4.5'
gem 'addressable', '>= 2.3.2' gem 'addressable', '>= 2.3.2'
gem 'uuidtools', '>= 2.1.0' gem 'uuidtools', '>= 2.1.0'
gem 'autoparse', '>= 0.3.2' gem 'autoparse', '>= 0.3.2'
@ -15,11 +15,7 @@ gem 'jruby-openssl', :platforms => :jruby
group :development do group :development do
gem 'launchy', '>= 2.1.1' gem 'launchy', '>= 2.1.1'
gem 'yard' gem 'yard'
if File.exist?('/usr/bin/gcc-4.2') gem 'kramdown'
# Not a critically important gem to have around.
# If it's not going to build, skip it.
gem 'redcarpet'
end
end end
group :examples do group :examples do

View File

@ -2,7 +2,7 @@
<dl> <dl>
<dt>Homepage</dt><dd><a href="http://code.google.com/p/google-api-ruby-client">http://code.google.com/p/google-api-ruby-client</a></dd> <dt>Homepage</dt><dd><a href="http://code.google.com/p/google-api-ruby-client">http://code.google.com/p/google-api-ruby-client</a></dd>
<dt>Authoris</dt><dd>Bob Aman, <a href="mailto:sbazyl@google.com">Steven Bazyl</a></dd> <dt>Authors</dt><dd>Bob Aman, <a href="mailto:sbazyl@google.com">Steven Bazyl</a></dd>
<dt>Copyright</dt><dd>Copyright © 2011 Google, Inc.</dd> <dt>Copyright</dt><dd>Copyright © 2011 Google, Inc.</dd>
<dt>License</dt><dd>Apache 2.0</dd> <dt>License</dt><dd>Apache 2.0</dd>
</dl> </dl>

View File

@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION)
module VERSION module VERSION
MAJOR = 0 MAJOR = 0
MINOR = 6 MINOR = 6
TINY = 1 TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
end end