ratpack 0.1.2 → 0.1.3

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/test/ratpack_test.rb CHANGED
@@ -47,6 +47,7 @@ EOD
47
47
  assert last_response.ok?
48
48
  assert_equal last_response.body, <<EOD
49
49
  <img alt="[foo image]" src="/bar/images/foo.jpg" />
50
+ <img alt="[bar image]" src="http://example.com/bar.png" />
50
51
  EOD
51
52
  end
52
53
 
data/test/sinatra_app.rb CHANGED
@@ -18,6 +18,7 @@ get "/image_tag" do
18
18
  content_type "text/plain"
19
19
  <<"EOD"
20
20
  #{image_tag("foo.jpg", :alt => "[foo image]")}
21
+ #{image_tag("http://example.com/bar.png", :alt => "[bar image]")}
21
22
  EOD
22
23
  end
23
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ratpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeke Sikelianos