Make the old google-api-client 0.8 release compatible with ruby 2.3.7,
[arvados.git] / lib / google / api_client / version.rb
index ea35936e07af1f55176306c1d0c3f55d13354a84..1db7f8d9061089e54e02050130145e6b136619fe 100644 (file)
 # limitations under the License.
 
 
-# Used to prevent the class/module from being loaded more than once
-if !defined?(::Google::APIClient::VERSION)
-
-
-  module Google
-    class APIClient
-      module VERSION
-        MAJOR = 0
-        MINOR = 4
-        TINY  = 0
-
-        STRING = [MAJOR, MINOR, TINY].join('.')
-      end
+module Google
+  class APIClient
+    module VERSION
+      MAJOR = 0
+      MINOR = 8
+      TINY  = 7
+      PATCH = 1
+      STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
     end
   end
 end