2010-07-28 19:30:56 +00:00
|
|
|
# Copyright 2010 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2011-05-04 11:44:35 +00:00
|
|
|
|
2011-10-15 08:21:21 +00:00
|
|
|
# Used to prevent the class/module from being loaded more than once
|
|
|
|
if !defined?(::Google::APIClient::VERSION)
|
2011-12-02 13:43:55 +00:00
|
|
|
|
|
|
|
|
2011-10-15 08:21:21 +00:00
|
|
|
module Google
|
|
|
|
class APIClient
|
|
|
|
module VERSION
|
|
|
|
MAJOR = 0
|
2012-01-27 14:57:57 +00:00
|
|
|
MINOR = 4
|
2012-02-22 12:40:33 +00:00
|
|
|
TINY = 2
|
2010-07-28 19:30:56 +00:00
|
|
|
|
2011-10-15 08:21:21 +00:00
|
|
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
|
|
|
end
|
2010-07-28 19:30:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|