sumologic 0.0.2 → 0.0.3
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/CHANGELOG.md +6 -1
- data/README.md +19 -5
- data/VERSION.txt +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3eb6dc8f9eb9da1d5f17822197c9b9d7225bb942
|
4
|
+
data.tar.gz: 7c13ee9e2e0f6d1235ed626187eebfd70dd04af1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d06f9741b1e18d8a9e01c1893afadd573a84ebc50b7ae0ea6d5f1148698c2c2746fe3996b20ac722a28651c586e7468dde9a772bd6ea40443f88987453f9dbff
|
7
|
+
data.tar.gz: 8432c1d0dd744a9952a007e5d9f8d20d9668b3bb80a16d256e7c7f16de4ad86047d434021f034873cb9639f1030d824ab45d07351d0e4dbdae79d5863b1a9903
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
CHANGELOG
|
2
2
|
---------
|
3
|
+
- **2015-09-14**: 0.0.3
|
4
|
+
- Add Scrutinizer support
|
5
|
+
- Update `README.md`
|
3
6
|
- **2015-07-11**: 0.0.2
|
4
|
-
- Add search() method
|
7
|
+
- Add single shot search() method
|
8
|
+
- Add Travis CI support
|
9
|
+
- Add Code Climate support
|
5
10
|
- **2015-06-09**: 0.0.1
|
6
11
|
- Initial commit
|
data/README.md
CHANGED
@@ -4,6 +4,7 @@ Sumo Logic Ruby SDK
|
|
4
4
|
[](http://badge.fury.io/rb/sumologic)
|
5
5
|
[](https://travis-ci.org/grokify/sumologic-sdk-ruby)
|
6
6
|
[](https://codeclimate.com/github/grokify/sumologic-sdk-ruby)
|
7
|
+
[](https://scrutinizer-ci.com/g/grokify/sumologic-sdk-ruby/?branch=master)
|
7
8
|
[](http://www.rubydoc.info/gems/sumologic/)
|
8
9
|
[](https://raw.githubusercontent.com/grokify/sumologic-sdk-ruby/master/LICENSE.txt)
|
9
10
|
|
@@ -25,10 +26,23 @@ Note, for the search methods, the query parameter can be exactly the same query
|
|
25
26
|
|
26
27
|
Example scripts are located in the `scripts` directory of the [GitHub repo](https://github.com/grokify/sumologic-sdk-ruby).
|
27
28
|
|
28
|
-
##
|
29
|
+
## Change Log
|
29
30
|
|
30
|
-
|
31
|
-
|
31
|
+
See [CHANGELOG.md](CHANGELOG.md).
|
32
|
+
|
33
|
+
## Links
|
34
|
+
|
35
|
+
Project Repo
|
36
|
+
|
37
|
+
* https://github.com/grokify/sumologic-sdk-ruby
|
38
|
+
|
39
|
+
Sumo Logic API Documentation
|
40
|
+
|
41
|
+
* https://github.com/SumoLogic/sumo-api-doc/wiki
|
42
|
+
|
43
|
+
Sumo Logic Python SDK
|
44
|
+
|
45
|
+
* https://github.com/SumoLogic/sumologic-python-sdk
|
32
46
|
|
33
47
|
## Contributions
|
34
48
|
|
@@ -40,6 +54,6 @@ Please report these on [Github](https://github.com/grokify/sumologic-sdk-ruby)
|
|
40
54
|
|
41
55
|
## License
|
42
56
|
|
43
|
-
|
57
|
+
Sumo Logic Ruby SDK is available under an MIT-style license. See [LICENSE.txt](LICENSE.txt) for details.
|
44
58
|
|
45
|
-
|
59
|
+
Sumo Logic Ruby SDK © 2015 by John Wang
|
data/VERSION.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sumologic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Wang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|