rack-server-status 0.0.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 +15 -0
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +34 -0
- data/Rakefile +1 -0
- data/lib/rack/server_status.rb +12 -0
- data/lib/rack/version.rb +3 -0
- data/lib/rack_server_status.rb +10 -0
- data/rack_server_status.gemspec +24 -0
- data/spec/rack_server_status_spec.rb +25 -0
- metadata +97 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZWRiNjc0OWUyZDA0YjczMjJlZWUzZmM5OTFjMGExOWYwMGIzODc5Nw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDMyZGFlYjU0MWZmNzQxZmEwMDMzZDNhNzcwMmE3YmMzNjJhYzZlNA==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OTJmNTE5NjkyMjE2ZjExYzMyYTk5NDQ3YjVhZWNjNjMzMmQxZWExNzRmYTQ5
|
10
|
+
ZTU5NzM3MTg1OGVkNmVjN2U3YjRhZjk1ODBjYWM2ZTVmODZiNjk5ZTg3NjMw
|
11
|
+
Y2NhYjIwMTA2NGM4YTQ1MTU5MGM0YzYwNTQ2ZWY4ZTNjZGFhNDQ=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OGNkODJkYWU3ZTVkN2E4MGE2Mzg1ZmVkNTcwOTMzYTYxOTc4ODhkMzc3NDU4
|
14
|
+
NzEyYjk4OWJiZjUzNTdkM2MxOWZhMmM5MjJlODdlM2Y1NjM5YzUwN2NjOGQy
|
15
|
+
YTIzZWM0M2I1NjA5ZDY4NTkyYTA4NjIxMzY3MTY0NGM5NTczNjI=
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Lionel Oto
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# RackServerStatus
|
2
|
+
|
3
|
+
Basic Rack middleware for checking Rack/Rails 3 server availability
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'rack_server_status'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install rack_server_status
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
### Rails 3 apps
|
21
|
+
Install gem and enjoy!
|
22
|
+
|
23
|
+
### Sinatra and other Rack apps
|
24
|
+
# config.ru
|
25
|
+
require 'rack/server_status"
|
26
|
+
use Rack::ServerStatus
|
27
|
+
|
28
|
+
## Contributing
|
29
|
+
|
30
|
+
1. Fork it
|
31
|
+
2. Create your feature branch
|
32
|
+
3. Commit your changes
|
33
|
+
4. Push to the branch
|
34
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/rack/version.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'rack/server_status'
|
2
|
+
|
3
|
+
if defined? Rails
|
4
|
+
case Rails::VERSION::MAJOR
|
5
|
+
when 3
|
6
|
+
class Rack::ServerStatus::Railtie < Rails::Railtie
|
7
|
+
initializer('rack-server_status.insert-rack-server_status') { |app| app.config.middleware.insert(0, Rack::ServerStatus) }
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rack/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rack-server-status'
|
8
|
+
spec.version = RackServerStatus::VERSION
|
9
|
+
spec.authors = ['Cédric Darné, Lionel Oto']
|
10
|
+
spec.email = ['cedric.darne@c4mprod.com, lionel.oto@c4mprod.com']
|
11
|
+
spec.description = %q{Basic Rack middleware for checking Rack/Rails server availability}
|
12
|
+
spec.summary = %q{Basic Rack middleware for checking Rack/Rails server availability}
|
13
|
+
spec.homepage = ''
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
22
|
+
spec.add_development_dependency 'rake', '>= 1.0'
|
23
|
+
spec.add_development_dependency 'rack-test', '~> 0.6.2'
|
24
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
lib = File.expand_path('../../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
|
4
|
+
require 'rack/test'
|
5
|
+
require 'test/unit'
|
6
|
+
require 'rack/server_status'
|
7
|
+
|
8
|
+
class StatusPageTest < Test::Unit::TestCase
|
9
|
+
include Rack::Test::Methods
|
10
|
+
|
11
|
+
def app
|
12
|
+
Rack::ServerStatus.new('StatusPageTest')
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_status
|
16
|
+
get "/status"
|
17
|
+
assert last_response.ok?
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_body
|
21
|
+
get "/status"
|
22
|
+
assert last_response.body == 'OK'
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rack-server-status
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Cédric Darné, Lionel Oto
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rack-test
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.6.2
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.6.2
|
55
|
+
description: Basic Rack middleware for checking Rack/Rails server availability
|
56
|
+
email:
|
57
|
+
- cedric.darne@c4mprod.com, lionel.oto@c4mprod.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/rack/server_status.rb
|
68
|
+
- lib/rack/version.rb
|
69
|
+
- lib/rack_server_status.rb
|
70
|
+
- rack_server_status.gemspec
|
71
|
+
- spec/rack_server_status_spec.rb
|
72
|
+
homepage: ''
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.0.8
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: Basic Rack middleware for checking Rack/Rails server availability
|
96
|
+
test_files:
|
97
|
+
- spec/rack_server_status_spec.rb
|