snail 0.6.2 → 0.7.0

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.
Files changed (3) hide show
  1. data/lib/snail.rb +1 -1
  2. data/test/snail_test.rb +1 -1
  3. metadata +2 -2
@@ -79,7 +79,7 @@ class Snail
79
79
  end
80
80
 
81
81
  def to_html
82
- "<address>#{CGI.escapeHTML(to_s).gsub("\n", '<br />')}</address>".html_safe
82
+ CGI.escapeHTML(to_s).gsub("\n", '<br />').html_safe
83
83
  end
84
84
 
85
85
  # this method will get much larger. completeness is out of my scope at this time.
@@ -138,7 +138,7 @@ class SnailTest < ActiveSupport::TestCase
138
138
  test "to_html" do
139
139
  s = Snail.new(@ca)
140
140
  s.name = 'John & Jane Doe'
141
- assert_equal "<address>John &amp; Jane Doe<br />12345 5th St<br />Somewheres NY 12345<br />CANADA</address>", s.to_html
141
+ assert_equal "John &amp; Jane Doe<br />12345 5th St<br />Somewheres NY 12345<br />CANADA", s.to_html
142
142
  assert s.to_html.html_safe?
143
143
  end
144
144
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.7.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-05 00:00:00.000000000 Z
12
+ date: 2012-12-14 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: International snail mail addressing is a pain. This begins to make it
15
15
  easier.