ppl 1.17.1 → 1.17.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.
- checksums.yaml +4 -4
- data/lib/ppl.rb +1 -1
- data/lib/ppl/application/output.rb +3 -1
- data/ppl.gemspec +1 -1
- data/spec/ppl/adapter/output_spec.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f013c471444b4ddf23abbcdff7ba445c44dcecd9
|
4
|
+
data.tar.gz: 9455d8d1e984d55adb0f4e711309c4e74ea8765d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3622e85128d613fd52f9c931ff631f63c77dfca590780d554865f206730b39b88b3168980603b47d257e2ba225d5cf4f62e10688413584cf6bf31b4a1520df90
|
7
|
+
data.tar.gz: 3b73edb07693aa19e74ab8066c8a16846a82cb61bda2bbc3585935c7a5b358f35fecccebbf7c6cc2cccfc823bc0a7fc423abdcb7d1fefbf56034354bd7e86ddc
|
data/lib/ppl.rb
CHANGED
data/ppl.gemspec
CHANGED
@@ -49,6 +49,12 @@ describe Ppl::Application::Output do
|
|
49
49
|
@stderr.should_receive(:puts).with("The quick brown fox")
|
50
50
|
@output.error(string)
|
51
51
|
end
|
52
|
+
|
53
|
+
it "should not sanitise output if nil" do
|
54
|
+
string = nil
|
55
|
+
@stdout.should_receive(:puts).with(nil)
|
56
|
+
@output.line(string)
|
57
|
+
end
|
52
58
|
end
|
53
59
|
|
54
60
|
end
|