activemonitor 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 10d1fd14f9d9f77314fe7accf030e3fb77d1881a
4
+ data.tar.gz: ae592a31754ccd824972fccf05c9996d52a21378
5
+ SHA512:
6
+ metadata.gz: 95622de6d0c7f2422d0c5bdbeffa4fb53b526a4ee553da9d540c60bf1bf5d7cc11d1a845700b8e09394cd1f0306bd6a5dd22d5e79aa75919a596619d116cfab1
7
+ data.tar.gz: 7968916b11fbd5ea38719a0e8290f081df2ddb516c767561a061ad428fa8642fcfac54256bf7d4e37ceedbbb30b1aaf953c9e36be73610b45b749352fc7d09ce
@@ -0,0 +1,2 @@
1
+ service_name: travis-pro
2
+ repo_token: XtnoDQZ3fXEEqwKIWWLMoVsQTKmWpNSuC
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.pryrc ADDED
@@ -0,0 +1,8 @@
1
+ require 'awesome_print'
2
+
3
+ Pry.config.hooks.add_hook :before_session, :load_project_lib do
4
+ dir = `pwd`.chomp
5
+ %w(lib spec test).map { |d| "#{dir}/#{d}" }.each { |p| $: << p unless !File.exist?(p) || $:.include?(p) }
6
+ require 'dynamiq'
7
+ end
8
+
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1
4
+ - 2.0.0
5
+ - 1.9.3
6
+ - ruby-head
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in activemonitor.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Bob Breznak
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.
@@ -0,0 +1,27 @@
1
+ # Active Monitor -- Monitoring and alerting for Rails
2
+ [![Build Status](https://travis-ci.org/bobbrez/activemonitor.svg)](https://travis-ci.org/bobbrez/activemonitor)
3
+ [![Coverage Status](https://img.shields.io/coveralls/bobbrez/activemonitor.svg)](https://coveralls.io/r/bobbrez/activemonitor)
4
+
5
+ Active Monitor is a framework for keeping an eye on how an application is functioning and alerting when things are going wrong.
6
+
7
+ ## Usage
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'activemonitor', require: 'active_monitor'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install activemonitor
24
+
25
+ ## Requirements
26
+
27
+ * Ruby >= 1.9.3
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new :spec
5
+
6
+ task default: :spec
@@ -0,0 +1,38 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ require 'active_monitor/version'
7
+
8
+ Gem::Specification.new do |s|
9
+ s.platform = Gem::Platform::RUBY
10
+ s.name = 'activemonitor'
11
+ s.version = ActiveMonitor::VERSION
12
+ s.summary = 'External monitoring and alerting for Rails applications.'
13
+ s.description = 'Monitor application status and health in a sane way Rails-y.'
14
+
15
+ s.required_ruby_version = '>= 1.9.3'
16
+
17
+ s.license = 'MIT'
18
+
19
+ s.authors = ['Bob Breznak']
20
+ s.email = ['bob.breznak@gmail.com']
21
+ s.homepage = 'https://github.com/bobbrez/activemonitor'
22
+
23
+ s.files = `git ls-files -z`.split("\x0")
24
+ s.require_paths = ['lib']
25
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
26
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
27
+
28
+ s.add_development_dependency 'bundler', '~> 1.7'
29
+ s.add_development_dependency 'rake', '~> 10.0'
30
+
31
+ s.add_development_dependency 'simplecov', '~> 0.9.1'
32
+ s.add_development_dependency 'coveralls', '~> 0.9.1'
33
+
34
+ s.add_development_dependency 'pry', '~> 0.10.0'
35
+ s.add_development_dependency 'pry-byebug', '~> 1.3.3'
36
+
37
+ s.add_dependency 'activesupport', '>= 4.0.0'
38
+ end
@@ -0,0 +1,7 @@
1
+ require 'active_support'
2
+
3
+ require 'active_monitor/version'
4
+
5
+ module ActiveMonitor
6
+ extend ActiveSupport::Autoload
7
+ end
@@ -0,0 +1,3 @@
1
+ module ActiveMonitor
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,16 @@
1
+ $:.unshift File.expand_path('..', __FILE__)
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
3
+
4
+ require 'pry'
5
+ require 'pry-byebug'
6
+
7
+ Dir[File.join './spec/support/**/*.rb'].each { |f| require f }
8
+
9
+ require File.expand_path('../../lib/active_monitor', __FILE__)
10
+
11
+ RSpec.configure do |config|
12
+ config.profile_examples = 10
13
+
14
+ Kernel.srand config.seed
15
+ config.order = :random
16
+ end
@@ -0,0 +1,8 @@
1
+ require 'simplecov'
2
+ require 'coveralls'
3
+
4
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
5
+ SimpleCov::Formatter::HTMLFormatter,
6
+ Coveralls::SimpleCov::Formatter
7
+ ]
8
+ SimpleCov.start
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activemonitor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Bob Breznak
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-22 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: simplecov
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.9.1
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.9.1
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.10.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.10.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry-byebug
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 1.3.3
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 1.3.3
97
+ - !ruby/object:Gem::Dependency
98
+ name: activesupport
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 4.0.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 4.0.0
111
+ description: Monitor application status and health in a sane way Rails-y.
112
+ email:
113
+ - bob.breznak@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".coveralls.yml"
119
+ - ".gitignore"
120
+ - ".pryrc"
121
+ - ".rspec"
122
+ - ".travis.yml"
123
+ - Gemfile
124
+ - LICENSE.txt
125
+ - README.md
126
+ - Rakefile
127
+ - activemonitor.gemspec
128
+ - lib/active_monitor.rb
129
+ - lib/active_monitor/version.rb
130
+ - spec/spec_helper.rb
131
+ - spec/support/coverage.rb
132
+ homepage: https://github.com/bobbrez/activemonitor
133
+ licenses:
134
+ - MIT
135
+ metadata: {}
136
+ post_install_message:
137
+ rdoc_options: []
138
+ require_paths:
139
+ - lib
140
+ required_ruby_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 1.9.3
145
+ required_rubygems_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ requirements: []
151
+ rubyforge_project:
152
+ rubygems_version: 2.2.2
153
+ signing_key:
154
+ specification_version: 4
155
+ summary: External monitoring and alerting for Rails applications.
156
+ test_files:
157
+ - spec/spec_helper.rb
158
+ - spec/support/coverage.rb
159
+ has_rdoc: