chatterbox 0.5.0 → 0.5.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/CHANGELOG.markdown +6 -0
- data/chatterbox.gemspec +2 -2
- data/lib/chatterbox/exception_notification/rails_extracter.rb +2 -2
- data/version.yml +1 -1
- metadata +2 -2
data/CHANGELOG.markdown
CHANGED
data/chatterbox.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{chatterbox}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Rob Sanheim"]
|
|
12
|
-
s.date = %q{2009-11-
|
|
12
|
+
s.date = %q{2009-11-07}
|
|
13
13
|
s.description = %q{Send notifications and messages. However you want.}
|
|
14
14
|
s.email = %q{rsanheim@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -22,8 +22,8 @@ module Chatterbox::ExceptionNotification
|
|
|
22
22
|
return message if rails_configuration.nil?
|
|
23
23
|
message.merge({
|
|
24
24
|
:rails_info => {
|
|
25
|
-
:rails_env => rails_configuration.env,
|
|
26
|
-
:rails_root => rails_configuration.root,
|
|
25
|
+
:rails_env => rails_configuration.env.to_s,
|
|
26
|
+
:rails_root => rails_configuration.root.to_s,
|
|
27
27
|
:rails_version => rails_configuration.version
|
|
28
28
|
}
|
|
29
29
|
})
|
data/version.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chatterbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Sanheim
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-07 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|