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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9df50e1440bf320a76229fabf5d8e7dc87fe21435ee8448bf1f0a67f2b2c8ce3
4
- data.tar.gz: 57379c66c79503a219b4ec76ac7337bef9cc0c939b20279863051acd354e383b
3
+ metadata.gz: fe36b1a013ddb3ee51205c9c1570ea4fc0bd1c4250741ea4970ec412c60a8656
4
+ data.tar.gz: 3c7a1ef7ba642159f9aa238e7142cbf06f0e14f065e10de108511b0f21c6799c
5
5
  SHA512:
6
- metadata.gz: 0a24ae6c7c6e17565315abc6c472935c25acfddedf52b18f095cad5ec5ce38409e28da80ae83d8936745e68d66d623099aa5ba32cabc504bc24ee28760bed09b
7
- data.tar.gz: be7904cbb81f34c4979b65bd75c4d2d74463699a8029d77dde6c78037c9dc1f6aee2ea68c96976c78db9f3d2bb259280f20cd7b59d2bdbe0fa1fd6349881625d
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
- TODO
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
@@ -33,7 +33,7 @@ module HerokuStatus
33
33
  end
34
34
  end
35
35
 
36
- # Return a response for a particular issue
36
+ # Retrieve the status for a particular issue
37
37
  # @param {integer} issue_id
38
38
  # @return {hash}
39
39
  def issue(issue_id)
@@ -1,3 +1,3 @@
1
1
  module HerokuStatus
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_status
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - joerodrig