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
|
|
|
|
2014-09-17 14:57:32 +00:00
|
|
|
module Google
|
|
|
|
class APIClient
|
|
|
|
module VERSION
|
|
|
|
MAJOR = 0
|
2014-12-17 20:59:54 +00:00
|
|
|
MINOR = 8
|
2015-04-15 00:19:56 +00:00
|
|
|
TINY = 6
|
2015-01-10 00:05:40 +00:00
|
|
|
PATCH = nil
|
2014-09-17 14:57:32 +00:00
|
|
|
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
|
2010-07-28 19:30:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|