gust 0.2.1 → 0.2.2
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/gust.gemspec +1 -1
- data/lib/gust.rb +1 -1
- data/spec/gust_spec.rb +2 -2
- metadata +1 -1
data/gust.gemspec
CHANGED
data/lib/gust.rb
CHANGED
data/spec/gust_spec.rb
CHANGED
@@ -15,7 +15,7 @@ describe Gust do
|
|
15
15
|
|
16
16
|
subject { Gust.parse('foo') }
|
17
17
|
|
18
|
-
it { should == "<div class=\"highlight\"><pre>foo</pre></div>\n" }
|
18
|
+
it { should == "<div class=\"highlight plain\"><pre>foo</pre></div>\n" }
|
19
19
|
|
20
20
|
end
|
21
21
|
|
@@ -23,7 +23,7 @@ describe Gust do
|
|
23
23
|
|
24
24
|
subject { Gust.parse('foo', :filename => 'foo.bar') }
|
25
25
|
|
26
|
-
it { should == "<div class=\"highlight\"><pre>foo</pre></div>\n" }
|
26
|
+
it { should == "<div class=\"highlight plain\"><pre>foo</pre></div>\n" }
|
27
27
|
|
28
28
|
end
|
29
29
|
|