heroku_status 0.1.0 → 0.1.1
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 +11 -1
- data/lib/heroku_status.rb +1 -1
- data/lib/heroku_status/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe36b1a013ddb3ee51205c9c1570ea4fc0bd1c4250741ea4970ec412c60a8656
|
4
|
+
data.tar.gz: 3c7a1ef7ba642159f9aa238e7142cbf06f0e14f065e10de108511b0f21c6799c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 929b341042448f3f5d868ffe4bb0ba7584dc1f06eea9144b9cbc75cf45bd3e42dc07aa0583bb988def4900d7b49759001ead81429367e3f5d6b5dc348fa8bdcf
|
7
|
+
data.tar.gz: 698c9ba8150769d0c9a5f5697ac15aa672f9d9bf3c10a656716fa1668f674b25276b0daf916a4c24e12494fdbc5ca5938818bc17c8f63263bc7ab8d69ae3ba89
|
data/README.md
CHANGED
@@ -24,7 +24,17 @@ Or install it yourself as:
|
|
24
24
|
|
25
25
|
## Usage
|
26
26
|
|
27
|
-
|
27
|
+
Require the gem in any files you're using it in:
|
28
|
+
`require "heroku_status"`
|
29
|
+
|
30
|
+
Retrieve the current issue status:
|
31
|
+
`HerokuStatus.current_status`
|
32
|
+
|
33
|
+
Retrieve the issue status for a particular issue:
|
34
|
+
`HerokuStatus.issue(1)`
|
35
|
+
|
36
|
+
Retrieve a range of issues, organized by date and paginated:
|
37
|
+
`HerokuStatus.issues({since: "2012-04-24", limit: 1})`
|
28
38
|
|
29
39
|
## Development
|
30
40
|
|
data/lib/heroku_status.rb
CHANGED