denouncer 0.2.9 → 0.2.10
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 +4 -4
- data/.travis.yml +10 -0
- data/README.md +8 -0
- data/Rakefile +4 -0
- data/denouncer.gemspec +4 -2
- data/lib/denouncer/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecaf2560c917679b96eff0160c4407728c322c38
|
4
|
+
data.tar.gz: 608a87cd91a64909d484cf66d9dfcdcf57b0bac5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f875433242404b8bfb16135ad050477e76edec8daa774fdd42c1d5b039d93769b231624336150bea82e3d8125c7dfb9521e3dd4d5624caf5edcd5fee97b743bb
|
7
|
+
data.tar.gz: 425924b71ebce52cd8cbd7a20e1bb8fe0c559bf979cbf52f4e6e57da2e1d5095dd92a6d0f07fd7dc76658bef5785d0044db3aea87876a249684dfa36d7ced412
|
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -5,6 +5,14 @@ Right now it supports SMTP to send mail notifications with error details.
|
|
5
5
|
The gem is designed to be extendable and provides a simple interface to implement other notification
|
6
6
|
methods.
|
7
7
|
|
8
|
+
## Build status
|
9
|
+
|
10
|
+
[](https://travis-ci.org/julweber/denouncer)
|
11
|
+
|
12
|
+
## Current gem version
|
13
|
+
|
14
|
+
[](http://badge.fury.io/rb/denouncer)
|
15
|
+
|
8
16
|
## Installation
|
9
17
|
|
10
18
|
Add this line to your application's Gemfile:
|
data/Rakefile
CHANGED
data/denouncer.gemspec
CHANGED
@@ -8,11 +8,13 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Denouncer::VERSION
|
9
9
|
spec.authors = ["Julian Weber"]
|
10
10
|
spec.email = ["jweber@anynines.com"]
|
11
|
-
spec.summary = %q{Denouncer allows you to send notifications (SMTP, AMQP) with error/exception details using a simple interface.}
|
12
|
-
spec.description = %q{Denouncer allows you to send notifications with error/exception details using a simple interface. New methods of sending error messages can be implemented using a pre-defined class interface. SMTP and AMQP notification are the first implemented adapters. Use denouncer to get informed on error occurences instantly.}
|
11
|
+
spec.summary = %q{Denouncer allows you to send notifications (SMTP, AMQP) with error/exception details using a simple interface. Denouncer is usable for all ruby applications, Rails is not required.}
|
12
|
+
spec.description = %q{Denouncer allows you to send notifications with error/exception details using a simple interface. New methods of sending error messages can be implemented using a pre-defined class interface. SMTP and AMQP notification are the first implemented adapters. Denouncer is usable for all ruby applications, Rails is not required. Use denouncer to get informed on error occurences instantly.}
|
13
13
|
spec.homepage = "http://github.com/julweber/denouncer"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
|
+
spec.required_ruby_version = '>= 1.9.0'
|
17
|
+
|
16
18
|
spec.files = `git ls-files -z`.split("\x0")
|
17
19
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
data/lib/denouncer/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: denouncer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julian Weber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -111,7 +111,8 @@ dependencies:
|
|
111
111
|
description: Denouncer allows you to send notifications with error/exception details
|
112
112
|
using a simple interface. New methods of sending error messages can be implemented
|
113
113
|
using a pre-defined class interface. SMTP and AMQP notification are the first implemented
|
114
|
-
adapters.
|
114
|
+
adapters. Denouncer is usable for all ruby applications, Rails is not required.
|
115
|
+
Use denouncer to get informed on error occurences instantly.
|
115
116
|
email:
|
116
117
|
- jweber@anynines.com
|
117
118
|
executables: []
|
@@ -119,6 +120,7 @@ extensions: []
|
|
119
120
|
extra_rdoc_files: []
|
120
121
|
files:
|
121
122
|
- ".gitignore"
|
123
|
+
- ".travis.yml"
|
122
124
|
- Gemfile
|
123
125
|
- LICENSE.txt
|
124
126
|
- README.md
|
@@ -148,7 +150,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
148
150
|
requirements:
|
149
151
|
- - ">="
|
150
152
|
- !ruby/object:Gem::Version
|
151
|
-
version:
|
153
|
+
version: 1.9.0
|
152
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
155
|
requirements:
|
154
156
|
- - ">="
|
@@ -160,7 +162,8 @@ rubygems_version: 2.2.2
|
|
160
162
|
signing_key:
|
161
163
|
specification_version: 4
|
162
164
|
summary: Denouncer allows you to send notifications (SMTP, AMQP) with error/exception
|
163
|
-
details using a simple interface.
|
165
|
+
details using a simple interface. Denouncer is usable for all ruby applications,
|
166
|
+
Rails is not required.
|
164
167
|
test_files:
|
165
168
|
- spec/lib/denouncer/denouncer_spec.rb
|
166
169
|
- spec/lib/denouncer/notifiers/amqp_notifier_spec.rb
|