google-gax 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +62 -0
- data/lib/google/gax/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f68b821a12b61f81587dc4b4295a13486fb67381
|
|
4
|
+
data.tar.gz: ee7947fa0e184ce38da44a70b06e62394520e1f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a2cd8f10fb07906d9fe3b643be6dc0e7c56e0d5d3b49e827813870802d2a661c782a3c524f435c1b41f7b0804d4be53975e70b47efcbb6e9fb4f506a90e4082
|
|
7
|
+
data.tar.gz: d7cb74c5fd58be3e39d1eae532c29e203a35674802f499f07d6e3db9a6025e8d513f30b238bf295ea58617722055bd4b4abb71a561409d4a0144da72fc3cb79c
|
data/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Google API Extensions for Ruby
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
[](https://travis-ci.org/googleapis/gax-ruby)
|
|
5
|
+
[](https://codecov.io/github/googleapis/gax-ruby)
|
|
6
|
+
[](https://badge.fury.io/rb/google-gax)
|
|
7
|
+
|
|
8
|
+
Google API Extensions for Ruby (gax-ruby) is a set of modules which aids the
|
|
9
|
+
development of APIs for clients and servers based on [gRPC][] and Google API
|
|
10
|
+
conventions.
|
|
11
|
+
|
|
12
|
+
Application code will rarely need to use most of the classes within this library
|
|
13
|
+
directly, but code generated automatically from the API definition files in
|
|
14
|
+
[Google APIs][] can use services such as page streaming and request bundling to
|
|
15
|
+
provide a more convenient and idiomatic API surface to callers.
|
|
16
|
+
|
|
17
|
+
[gRPC]: http://grpc.io
|
|
18
|
+
[Google APIs]: https://github.com/googleapis/googleapis/
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Ruby Versions
|
|
22
|
+
---------------
|
|
23
|
+
|
|
24
|
+
gax-ruby is currently tested with Ruby 2.2.4.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Contributing
|
|
28
|
+
------------
|
|
29
|
+
|
|
30
|
+
Contributions to this library are always welcome and highly encouraged.
|
|
31
|
+
|
|
32
|
+
See the [CONTRIBUTING][] documentation for more information on how to get started.
|
|
33
|
+
|
|
34
|
+
[CONTRIBUTING]: https://github.com/googleapis/gax-ruby/blob/master/CONTRIBUTING.md
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Versioning
|
|
38
|
+
----------
|
|
39
|
+
|
|
40
|
+
This library follows [Semantic Versioning][].
|
|
41
|
+
|
|
42
|
+
It is currently in major version zero (``0.y.z``), which means that anything
|
|
43
|
+
may change at any time and the public API should not be considered
|
|
44
|
+
stable.
|
|
45
|
+
|
|
46
|
+
[Semantic Versioning]: http://semver.org/
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Details
|
|
50
|
+
-------
|
|
51
|
+
|
|
52
|
+
For detailed documentation of the modules in gax-python, please watch [DOCUMENTATION][].
|
|
53
|
+
|
|
54
|
+
[DOCUMENTATION]: http://www.rubydoc.info/gems/google-gax
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
License
|
|
58
|
+
-------
|
|
59
|
+
|
|
60
|
+
BSD - See [LICENSE][] for more information.
|
|
61
|
+
|
|
62
|
+
[LICENSE]: https://github.com/googleapis/gax-ruby/blob/master/LICENSE
|
data/lib/google/gax/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-gax
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google API Authors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: googleauth
|
|
@@ -142,6 +142,7 @@ executables: []
|
|
|
142
142
|
extensions: []
|
|
143
143
|
extra_rdoc_files: []
|
|
144
144
|
files:
|
|
145
|
+
- README.md
|
|
145
146
|
- Rakefile
|
|
146
147
|
- lib/google/gax.rb
|
|
147
148
|
- lib/google/gax/api_callable.rb
|