nuget_helper 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +4 -0
- data/appveyor.yml +8 -0
- data/lib/nuget_helper.rb +1 -1
- data/lib/nuget_helper/version.rb +1 -1
- data/spec/Vs2013Solution/.nuget/packages.config +2 -2
- data/spec/nuget_exec_spec.rb +2 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0963e8df5adfb39ab6db8f62e762a12dfd79f02e
|
4
|
+
data.tar.gz: b70a6a85fb477a10f27009dd6e53179d29116ac5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 551d17397b6f64aa628911b5db4def02652c53722b98a716cfe18ea968f289865872accfd85feb86919396a479bc6dce807f881f2ff0ed08f0f37da2c043cbc3
|
7
|
+
data.tar.gz: 69e03f28c08c19c3fd9ab177e219766b1b7f6570a34dbc70929fb29dd6ef14182b97218d294f96bc2054ba5d9ca84e3934fd91f2fd91682e2c631ab37dbf2092
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# NugetHelper
|
1
|
+
# NugetHelper [![Build Status](https://travis-ci.org/wallymathieu/nuget_helper.svg)](https://travis-ci.org/wallymathieu/nuget_helper) [![Build status](https://ci.appveyor.com/api/projects/status/jabjjby3t7m87net/branch/master?svg=true)](https://ci.appveyor.com/project/wallymathieu/nuget-helper/branch/master)
|
2
2
|
|
3
3
|
Helper library to simplify the use of nuget in a mixed os environment. It uses [nuget](https://rubygems.org/gems/nuget).
|
4
4
|
|
data/Rakefile
CHANGED
data/appveyor.yml
ADDED
data/lib/nuget_helper.rb
CHANGED
data/lib/nuget_helper/version.rb
CHANGED
data/spec/nuget_exec_spec.rb
CHANGED
@@ -24,11 +24,11 @@ describe "NugetHelper" do
|
|
24
24
|
c = NugetHelper.run_tool cmd
|
25
25
|
expect(c).to be false
|
26
26
|
if NugetHelper.os != :windows
|
27
|
-
expect($?.exitstatus).to be
|
27
|
+
expect($?.exitstatus).to be 1
|
28
28
|
else
|
29
29
|
expect($?.exitstatus).to be nil
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
34
|
-
end
|
34
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nuget_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oskar Gewalli
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- LICENSE.txt
|
81
81
|
- README.md
|
82
82
|
- Rakefile
|
83
|
+
- appveyor.yml
|
83
84
|
- lib/nuget_helper.rb
|
84
85
|
- lib/nuget_helper/version.rb
|
85
86
|
- nuget_helper.gemspec
|