relevance-chatterbox 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/chatterbox.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{chatterbox}
8
- s.version = "0.3.1"
8
+ s.version = "0.3.2"
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"]
@@ -22,10 +22,9 @@ EOL
22
22
 
23
23
  it "displays any other details in the hash in the email body" do
24
24
  notice = {
25
- :details => {
26
- :message_id => 'user01-create', :current_user => "Chris Liebing"},
27
- :environment => { :path => "foo" }
28
- }
25
+ :details => { "message_id" => "user01-create", "current_user" => "Chris Liebing" },
26
+ :environment => { "foo" => "path" }
27
+ }
29
28
  Chatterbox::Mailer.create_exception_notification(notice)
30
29
  expected = <<EOL
31
30
  Details
data/version.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 3
4
- :patch: 1
4
+ :patch: 2
@@ -5,7 +5,7 @@ Error Message
5
5
  Details
6
6
  -------
7
7
  <% @details.keys.map(&:to_s).sort.each do |key| -%>
8
- <%= %[#{key} => #{@details[key.to_sym]}] %>
8
+ <%= %[#{key} => #{@details[key]}] %>
9
9
  <% end if @details -%>
10
10
 
11
11
  Backtrace
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relevance-chatterbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim