status_page 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.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2012 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'StatusPage'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
24
+ load 'rails/tasks/engine.rake'
25
+
26
+
27
+
28
+ Bundler::GemHelper.install_tasks
29
+
30
+ require 'rspec/core/rake_task'
31
+ RSpec::Core::RakeTask.new(:spec)
32
+
33
+ # RSpec as default
34
+ task :default => :spec
@@ -0,0 +1,9 @@
1
+ module StatusPage
2
+ class MainController < ApplicationController
3
+ def index
4
+ @status = ApplicationStatus.check
5
+ @status.simulate_error if params[:simulate_error]
6
+ @status.simulate_warning if params[:simulate_warning]
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ module StatusPage
2
+ class ActiveRecordStatus < Status
3
+ def check
4
+ super
5
+ begin
6
+ ActiveRecord::Base.connection.execute("SELECT 0")
7
+ rescue => e
8
+ @errors << "Unable to reach database."
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,20 @@
1
+ module StatusPage
2
+ class ApplicationStatus < Status
3
+ def check
4
+ super
5
+ StatusPage.checks.each do |klass|
6
+ status = klass.check
7
+ @errors += status.errors
8
+ @warnings += status.warnings
9
+ end
10
+ end
11
+
12
+ def simulate_error
13
+ @errors << "Simulated error"
14
+ end
15
+
16
+ def simulate_warning
17
+ @warnings << "Simulated warning"
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,28 @@
1
+ module StatusPage
2
+ class Status
3
+ attr_reader :warnings, :errors
4
+
5
+ def initialize
6
+ reset
7
+ end
8
+
9
+ def reset
10
+ @warnings = []
11
+ @errors = []
12
+ end
13
+
14
+ def one_word_summary
15
+ return "Error" if errors.any?
16
+ return "Warning" if warnings.any?
17
+ "OK"
18
+ end
19
+
20
+ def check
21
+ reset
22
+ end
23
+
24
+ def self.check
25
+ new.tap(&:check) # I think this is kinda cute, so I'm leaving it :D
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,15 @@
1
+ <h1>Status: <%= @status.one_word_summary %></h1>
2
+
3
+ <% if @status.errors.any? -%>
4
+ <h2>Error</h2>
5
+ <%- @status.errors.each do |error| -%>
6
+ <p><%= error %></p>
7
+ <%- end -%>
8
+ <% end -%>
9
+
10
+ <% if @status.warnings.any? -%>
11
+ <h2>Warning</h2>
12
+ <%- @status.warnings.each do |warning| -%>
13
+ <p><%= warning %></p>
14
+ <%- end -%>
15
+ <% end -%>
data/config/routes.rb ADDED
@@ -0,0 +1,3 @@
1
+ StatusPage::Engine.routes.draw do
2
+ root :to => "main#index"
3
+ end
@@ -0,0 +1,5 @@
1
+ module StatusPage
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace StatusPage
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module StatusPage
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ require "status_page/engine"
2
+
3
+ module StatusPage
4
+ mattr_accessor :checks
5
+ self.checks = []
6
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: status_page
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Petter Remen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-10 00:00:00.000000000 Z
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.2.6
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.2.6
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec-rails
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description:
63
+ email:
64
+ - petter.remen@gmail.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - app/controllers/status_page/main_controller.rb
70
+ - app/models/status_page/active_record_status.rb
71
+ - app/models/status_page/application_status.rb
72
+ - app/models/status_page/status.rb
73
+ - app/views/status_page/main/index.html.erb
74
+ - config/routes.rb
75
+ - lib/status_page/engine.rb
76
+ - lib/status_page/version.rb
77
+ - lib/status_page.rb
78
+ - MIT-LICENSE
79
+ - Rakefile
80
+ homepage: http://github.com/remen/status_page
81
+ licenses: []
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ segments:
93
+ - 0
94
+ hash: -2389826381632727262
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ segments:
102
+ - 0
103
+ hash: -2389826381632727262
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.24
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: A very simplistic engine for a rails status page
110
+ test_files: []