Minor release for updating signet
authorSteven Bazyl <sqrrrl@gmail.com>
Fri, 18 Jan 2013 17:21:13 +0000 (09:21 -0800)
committerSteven Bazyl <sqrrrl@gmail.com>
Fri, 18 Jan 2013 17:21:13 +0000 (09:21 -0800)
CHANGELOG.md
Gemfile
README.md
lib/google/api_client/version.rb

index 44d67b01a5fe056516aa353a4a6d6ee1e4bad2ba..efb58593a4fb9d14a14e65e744ddddb71546dfbe 100644 (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
 
 * Fix impersonation with service accounts
diff --git a/Gemfile b/Gemfile
index 430505a100dcdd884702a9f0ada41641e10b8610..d0765f8c43b4261d8582cd869f97980dc22d42d2 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -2,7 +2,7 @@ source :rubygems
 
 gemspec
 
-gem 'signet', '>= 0.4.4'
+gem 'signet', '>= 0.4.5'
 gem 'addressable', '>= 2.3.2'
 gem 'uuidtools', '>= 2.1.0'
 gem 'autoparse', '>= 0.3.2'
@@ -15,11 +15,7 @@ gem 'jruby-openssl', :platforms => :jruby
 group :development do
   gem 'launchy', '>= 2.1.1'
   gem 'yard'
-  if File.exist?('/usr/bin/gcc-4.2')
-    # Not a critically important gem to have around.
-    # If it's not going to build, skip it.
-    gem 'redcarpet'
-  end
+  gem 'kramdown'
 end
 
 group :examples do
index 048723fb04259c4496cd02ebb708124afb71fc3d..b88c3e460547fa8e4c94bec4a6801065382a0b57 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 <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>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>License</dt><dd>Apache 2.0</dd>
 </dl>
index b200bccec4f2ce9492b2d40a9d475cabc48b8449..24a0bd6680d8cdff44960d64393fadd4a08455f2 100644 (file)
@@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION)
       module VERSION
         MAJOR = 0
         MINOR = 6
-        TINY  = 1
+        TINY  = 2
         STRING = [MAJOR, MINOR, TINY].join('.')
       end
     end