okcomputer 0.4.0 → 0.5.0
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.
- data/MIT-LICENSE +1 -1
- data/README.markdown +5 -0
- data/config/routes.rb +3 -3
- data/lib/okcomputer/version.rb +1 -1
- metadata +4 -20
data/MIT-LICENSE
CHANGED
data/README.markdown
CHANGED
|
@@ -10,6 +10,11 @@ Computer was born. It provides a robust endpoint to perform server health
|
|
|
10
10
|
checks with a set of built-in plugins, as well as a simple interface to add
|
|
11
11
|
your own custom checks.
|
|
12
12
|
|
|
13
|
+
For more insight into why we built this, check out [our blog post introducing
|
|
14
|
+
OK Computer][blog].
|
|
15
|
+
|
|
16
|
+
[blog]:http://pulse.sportngin.com/news_article/show/267646?referrer_id=543230
|
|
17
|
+
|
|
13
18
|
## Installation
|
|
14
19
|
|
|
15
20
|
Add this line to your application's Gemfile:
|
data/config/routes.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Rails.application.routes.draw do
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
get "/okcomputer" => "ok_computer#show", defaults: {check: "default"}
|
|
3
|
+
get "/okcomputer/all" => "ok_computer#index"
|
|
4
|
+
get "/okcomputer/:check" => "ok_computer#show"
|
|
5
5
|
end
|
data/lib/okcomputer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: okcomputer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,24 +9,8 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
|
-
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: rails
|
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
|
-
requirements:
|
|
19
|
-
- - ~>
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
version: '3.0'
|
|
22
|
-
type: :runtime
|
|
23
|
-
prerelease: false
|
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
|
-
requirements:
|
|
27
|
-
- - ~>
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '3.0'
|
|
30
14
|
- !ruby/object:Gem::Dependency
|
|
31
15
|
name: sqlite3
|
|
32
16
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -119,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
119
103
|
version: '0'
|
|
120
104
|
segments:
|
|
121
105
|
- 0
|
|
122
|
-
hash:
|
|
106
|
+
hash: 1008219563771144856
|
|
123
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
108
|
none: false
|
|
125
109
|
requirements:
|
|
@@ -128,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
128
112
|
version: '0'
|
|
129
113
|
segments:
|
|
130
114
|
- 0
|
|
131
|
-
hash:
|
|
115
|
+
hash: 1008219563771144856
|
|
132
116
|
requirements: []
|
|
133
117
|
rubyforge_project:
|
|
134
118
|
rubygems_version: 1.8.25
|