pingboard 0.0.1 → 0.0.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 +12 -0
- data/pingboard.gemspec +4 -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: fe0cba6da7fb988656a1e7bcbb23600a106eb686
|
|
4
|
+
data.tar.gz: cc3186760048a334a5be4906171a86a7b3535047
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32d4797f446bc8483c1b9d8c8ca1ecc591363b6748eb76f44644fe3693dfc3f16c4ba4e460cc144e01f5576f2737980db43fcc26f1aa488084baee1b35b23b73
|
|
7
|
+
data.tar.gz: 85301f3abd1db2b12d5fbc36f01f74dc4715ef587bdfa259d5b5f0826a976513d73b5c18c789d48f54dc332071875d174be92f7e245340955129fd2877d97c52
|
data/README.md
CHANGED
|
@@ -56,6 +56,18 @@ Get Pingboard's status types
|
|
|
56
56
|
client.status_types
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
## Supported Ruby Versions
|
|
60
|
+
This library is [tested against](travis) the following Ruby versions:
|
|
61
|
+
|
|
62
|
+
* Ruby 2.0.0
|
|
63
|
+
* Ruby 2.1
|
|
64
|
+
* Ruby 2.2
|
|
65
|
+
* Ruby 2.3.0
|
|
66
|
+
* Ruby 2.4.0
|
|
67
|
+
|
|
68
|
+
## Versioning
|
|
69
|
+
This library uses [Semantic Versioning 2.0.0](semver)
|
|
70
|
+
|
|
59
71
|
## License
|
|
60
72
|
MIT License
|
|
61
73
|
|
data/pingboard.gemspec
CHANGED
|
@@ -3,13 +3,16 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'pingboard'
|
|
6
|
-
s.version = '0.0.
|
|
6
|
+
s.version = '0.0.2'
|
|
7
7
|
s.date = '2017-07-16'
|
|
8
8
|
s.summary = "The Pingboard API Ruby Client"
|
|
9
9
|
s.description = "A Ruby client interface for the Pingboard API"
|
|
10
10
|
s.authors = ["Bryan B. Cabalo"]
|
|
11
11
|
s.email = 'bcabalo@gmail.com'
|
|
12
12
|
s.require_paths = %w(lib)
|
|
13
|
+
|
|
14
|
+
s.required_ruby_version = ">= 2.0.0"
|
|
15
|
+
|
|
13
16
|
s.files = %w(lib/pingboard.rb README.md pingboard.gemspec) + Dir['lib/**/*.rb']
|
|
14
17
|
s.homepage = 'http://rubygems.org/gems/pingboard'
|
|
15
18
|
s.license = 'MIT'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pingboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryan B. Cabalo
|
|
@@ -32,7 +32,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
32
32
|
requirements:
|
|
33
33
|
- - ">="
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version:
|
|
35
|
+
version: 2.0.0
|
|
36
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|