albacore 2.4.3 → 2.5.0
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/albacore/nuget_model.rb +1 -1
- data/lib/albacore/version.rb +1 -1
- data/spec/nuget_model_spec.rb +17 -17
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed4e5ebd8a606482ca886f5c025967a793553061
|
4
|
+
data.tar.gz: b5713f0ccf76962f2871166a64d9afff26a1796e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c46556532c61b5957b31eea8b9858ac39b7f682e1c90822d13d5499cf16927396947c27def6b2e4c11ce0a67fe4fcbaec24595e9d9a1e55f9a0c185a10bbf3d
|
7
|
+
data.tar.gz: f0d6b2f76c60044fe3cb3b82d12bcb5caa1f3da6b390c98c2d965fb947d0bf5f9b3c573802b0d8c20ed9c9b97e19a187171572d5fd702fd73676c39bbabd8a1d
|
data/lib/albacore/nuget_model.rb
CHANGED
data/lib/albacore/version.rb
CHANGED
data/spec/nuget_model_spec.rb
CHANGED
@@ -91,8 +91,8 @@ describe Albacore::NugetModel::Package, "from XML" do
|
|
91
91
|
</dependencies>
|
92
92
|
</metadata>
|
93
93
|
<files>
|
94
|
-
<file src="Full/bin/Debug/*.dll" target="lib/
|
95
|
-
<file src="Full/bin/Debug/*.pdb" target="lib/
|
94
|
+
<file src="Full/bin/Debug/*.dll" target="lib/net45"/>
|
95
|
+
<file src="Full/bin/Debug/*.pdb" target="lib/net45"/>
|
96
96
|
<file src="Silverlight/bin/Debug/*.dll" target="lib/sl40"/>
|
97
97
|
<file src="Silverlight/bin/Debug/*.pdb" target="lib/sl40"/>
|
98
98
|
<file src="**/*.cs" target="src"/>
|
@@ -192,8 +192,8 @@ describe "when reading xml from a fsproj file into Project/Metadata" do
|
|
192
192
|
end
|
193
193
|
|
194
194
|
has_file 'Library1.fs', 'src/Library1.fs'
|
195
|
-
has_file 'bin/Debug/Project.dll', 'lib/
|
196
|
-
has_file 'bin/Debug/Project.pdb', 'lib/
|
195
|
+
has_file 'bin/Debug/Project.dll', 'lib/net45'
|
196
|
+
has_file 'bin/Debug/Project.pdb', 'lib/net45'
|
197
197
|
end
|
198
198
|
end
|
199
199
|
|
@@ -290,8 +290,8 @@ describe "creating nuget (not symbols) from dependent proj file" do
|
|
290
290
|
has_dep 'Newtonsoft.Json', '5.0.6'
|
291
291
|
|
292
292
|
# actual nuspec contents
|
293
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
294
|
-
has_file 'bin/Debug/Sample.Commands.xml', 'lib/
|
293
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
294
|
+
has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
|
295
295
|
|
296
296
|
describe 'when dotnet_version is set' do
|
297
297
|
subject do
|
@@ -331,8 +331,8 @@ describe "creating nuget on dependent proj file" do
|
|
331
331
|
has_dep 'Magnum', '2.1.0'
|
332
332
|
has_dep 'MassTransit', '2.8.0'
|
333
333
|
has_dep 'Newtonsoft.Json', '5.0.6'
|
334
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
335
|
-
has_file 'bin/Debug/Sample.Commands.xml', 'lib/
|
334
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
335
|
+
has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
|
336
336
|
has_not_file 'Library.fs'
|
337
337
|
end
|
338
338
|
|
@@ -349,8 +349,8 @@ describe "creating nuget on dependent proj file" do
|
|
349
349
|
has_dep 'Magnum', '2.1.0'
|
350
350
|
has_dep 'MassTransit', '2.8.0'
|
351
351
|
has_dep 'Newtonsoft.Json', '5.0.6'
|
352
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
353
|
-
has_file 'bin/Debug/Sample.Commands.xml', 'lib/
|
352
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
353
|
+
has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
|
354
354
|
has_not_file 'Library.fs'
|
355
355
|
|
356
356
|
end
|
@@ -366,8 +366,8 @@ describe "creating nuget on dependent proj file" do
|
|
366
366
|
has_not_dep 'Magnum'
|
367
367
|
has_not_dep 'MassTransit'
|
368
368
|
has_not_dep 'Newtonsoft.Json'
|
369
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
370
|
-
has_file 'bin/Debug/Sample.Commands.xml', 'lib/
|
369
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
370
|
+
has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
|
371
371
|
has_not_file 'Library.fs'
|
372
372
|
end
|
373
373
|
|
@@ -381,8 +381,8 @@ describe "creating nuget on dependent proj file" do
|
|
381
381
|
has_dep 'Magnum', '2.1.0'
|
382
382
|
has_dep 'MassTransit', '2.8.0'
|
383
383
|
has_dep 'Newtonsoft.Json', '5.0.6'
|
384
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
385
|
-
has_file 'bin/Debug/Sample.Commands.xml', 'lib/
|
384
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
385
|
+
has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
|
386
386
|
has_not_file 'Library.fs'
|
387
387
|
end
|
388
388
|
|
@@ -397,8 +397,8 @@ describe "creating nuget on dependent proj file" do
|
|
397
397
|
has_dep 'MassTransit', '2.8.0'
|
398
398
|
has_dep 'Newtonsoft.Json', '5.0.6'
|
399
399
|
has_not_file 'bin/Debug/Sample.Commands.xml'
|
400
|
-
has_file 'bin/Debug/Sample.Commands.dll', 'lib/
|
401
|
-
has_file 'bin/Debug/Sample.Commands.pdb', 'lib/
|
400
|
+
has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
|
401
|
+
has_file 'bin/Debug/Sample.Commands.pdb', 'lib/net45'
|
402
402
|
has_file 'Library.fs', 'src/Library.fs'
|
403
403
|
end
|
404
404
|
|
@@ -416,6 +416,6 @@ describe "creating nuget on dependent proj file" do
|
|
416
416
|
has_not_file 'bin/Debug/Sample.Commands.dll'
|
417
417
|
has_not_file 'bin/Debug/EmptyProject.dll'
|
418
418
|
has_not_file 'bin/Debug/EmptyProject.xml'
|
419
|
-
has_file 'bin/Release/EmptyProject.dll', 'lib/
|
419
|
+
has_file 'bin/Release/EmptyProject.dll', 'lib/net45'
|
420
420
|
end
|
421
421
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrik Feldt
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-07-
|
12
|
+
date: 2015-07-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|