denouncer 0.2.9 → 0.2.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 656b798b79257deea8f310a1edd20f2527fd8091
4
- data.tar.gz: b0f9f22a2268acbea3d80f12e1b3762ec30be0b5
3
+ metadata.gz: ecaf2560c917679b96eff0160c4407728c322c38
4
+ data.tar.gz: 608a87cd91a64909d484cf66d9dfcdcf57b0bac5
5
5
  SHA512:
6
- metadata.gz: 6ebcc498b33d9d7c3449e64f835409145098d3ee6118b1ce9792613c7cb4522f75e12f09fdb47ff5775e44553679e51af8820d60dad2fcccc0017b4ed5d189f5
7
- data.tar.gz: 744755ca47a10f14cf996dfcdcb07aaba081110e3e6fb3feb888db51b0088c0295a26c78c815f6c44ea3007c7e44d262a32802c0b63e9d66301a0cb3105fbe8b
6
+ metadata.gz: f875433242404b8bfb16135ad050477e76edec8daa774fdd42c1d5b039d93769b231624336150bea82e3d8125c7dfb9521e3dd4d5624caf5edcd5fee97b743bb
7
+ data.tar.gz: 425924b71ebce52cd8cbd7a20e1bb8fe0c559bf979cbf52f4e6e57da2e1d5095dd92a6d0f07fd7dc76658bef5785d0044db3aea87876a249684dfa36d7ced412
data/.travis.yml ADDED
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.0
6
+ - 2.2.0
7
+ - ruby-head
8
+ - jruby-head
9
+ - jruby-1.7.19
10
+ - rbx-2.2.7
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
+ [![Build Status](https://travis-ci.org/julweber/denouncer.svg)](https://travis-ci.org/julweber/denouncer)
11
+
12
+ ## Current gem version
13
+
14
+ [![Gem Version](https://badge.fury.io/rb/denouncer.svg)](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
@@ -1,4 +1,8 @@
1
1
  require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+ task :default => :spec
2
6
 
3
7
  desc 'Run a pry console session'
4
8
  task :console do
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)/})
@@ -1,3 +1,3 @@
1
1
  module Denouncer
2
- VERSION = "0.2.9"
2
+ VERSION = "0.2.10"
3
3
  end
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.9
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-24 00:00:00.000000000 Z
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. Use denouncer to get informed on error occurences instantly.
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: '0'
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