gara 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gara/html5_emitter.rb +1 -1
- data/lib/gara/version.rb +1 -1
- data/test/dummy/log/test.log +1316 -0
- data/test/fixtures/idiocracy.html +595 -0
- data/test/handler_test.rb +1 -1
- metadata +4 -2
data/test/handler_test.rb
CHANGED
@@ -73,7 +73,7 @@ class HandlerTest < ActiveSupport::TestCase
|
|
73
73
|
|
74
74
|
test "real document has doctype and newline" do
|
75
75
|
@template = new_template("html { body { h1 \"hello\" } }")
|
76
|
-
assert_equal with_doctype("<html
|
76
|
+
assert_equal with_doctype("<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <body>\n <h1>hello</h1>\n </body>\n</html>\n"), render
|
77
77
|
end
|
78
78
|
|
79
79
|
test "locals work" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Talcott Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -124,6 +124,7 @@ files:
|
|
124
124
|
- test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
125
125
|
- test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
126
126
|
- test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
127
|
+
- test/fixtures/idiocracy.html
|
127
128
|
- test/gara_test.rb
|
128
129
|
- test/handler_test.rb
|
129
130
|
- test/test_helper.rb
|
@@ -207,6 +208,7 @@ test_files:
|
|
207
208
|
- test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
208
209
|
- test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
209
210
|
- test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
211
|
+
- test/fixtures/idiocracy.html
|
210
212
|
- test/gara_test.rb
|
211
213
|
- test/handler_test.rb
|
212
214
|
- test/test_helper.rb
|