Fixed some YARD documentation issues and changed how the user-agent is built.
[arvados.git] / lib / google / api_client / version.rb
index 48b01c73af5d5483f06456ac89d03f04bbbb7ccc..7b6fae529c74f4c2dfea4d08ce262e88ad7262fd 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-module Google
-  class APIClient
-    module VERSION
-      MAJOR = 0
-      MINOR = 1
-      TINY  = 3
 
-      STRING = [MAJOR, MINOR, TINY].join('.')
+# 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 = 3
+        TINY  = 0
+
+        STRING = [MAJOR, MINOR, TINY].join('.')
+      end
     end
   end
 end