gemrat 0.3.1 → 0.3.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/gemrat/runner.rb +1 -1
- data/lib/gemrat/version.rb +1 -1
- data/spec/gemrat_spec.rb +2 -2
- 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: 12c519e8843ff83e9c409538d14eb9b90e8c740a
|
|
4
|
+
data.tar.gz: 28e94705f4c27d6a8a450d803c3d97bb3ec675f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3436f05fca306f683cc20a301d0fa616bf78f7b1e91a3db7ee9db998eff6d0ad32f34b0795f49b5bac46ae8b082a1fc996f70e36e4fb22e2cf6bf15b6c2d17a
|
|
7
|
+
data.tar.gz: b08811612a2fb94509b5f32e2b12244c07558ae4dbcb659b67da84725fa16a39907a101906b4b6a10c68f0998efed89caa6e99fdf90929f2cddef0546a38bf61
|
data/lib/gemrat/runner.rb
CHANGED
data/lib/gemrat/version.rb
CHANGED
data/spec/gemrat_spec.rb
CHANGED
|
@@ -44,7 +44,7 @@ describe Gemrat do
|
|
|
44
44
|
output = capture_stdout { subject.run("sinatra", "-g", "TestGemfile") }
|
|
45
45
|
output.should include("'sinatra', '1.4.3' added to your Gemfile")
|
|
46
46
|
gemfile_contents = File.open('TestGemfile', 'r').read
|
|
47
|
-
gemfile_contents.should include("\ngem 'sinatra', '1.4.3'")
|
|
47
|
+
gemfile_contents.should include("\ngem 'sinatra', '1.4.3'\n")
|
|
48
48
|
output.should include("Bundling")
|
|
49
49
|
end
|
|
50
50
|
end
|
|
@@ -58,7 +58,7 @@ describe Gemrat do
|
|
|
58
58
|
gemfile_contents = File.open('TestGemfile', 'r').read
|
|
59
59
|
gemfile_contents.should include("\ngem 'sinatra', '1.4.3'")
|
|
60
60
|
gemfile_contents.should include("\ngem 'minitest', '5.0.5'")
|
|
61
|
-
gemfile_contents.should include("\ngem 'rails', '3.2.13'")
|
|
61
|
+
gemfile_contents.should include("\ngem 'rails', '3.2.13'\n")
|
|
62
62
|
output.should include("Bundling")
|
|
63
63
|
end
|
|
64
64
|
|