albacore 2.5.2 → 2.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/albacore/nuget_model.rb +2 -1
- data/lib/albacore/task_types/nugets_pack.rb +1 -1
- data/lib/albacore/version.rb +1 -1
- data/spec/nuget_model_spec.rb +3 -2
- 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: c2b2f5562722cb0d0ab9228e35b232e89a99f513
|
4
|
+
data.tar.gz: 30cd05df430452d2bbcf97c12cb230ce5ddaac5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94b3422d8bfe7fd2b6692e683a09fd5b7e75be04ec7c4e4fe87002984e46237d7c63c8e80ea996776204d873dcc0c8b337c677c5c835a62044ca25974db825e0
|
7
|
+
data.tar.gz: 360fb861dc2bbff9ed5c056bda2e8f6a453c911ab5839dd10518c15bf996a59db9e97dcafa81bc3a66849890686c4449870e42c425a98f0a41cf842c193069ec
|
data/lib/albacore/nuget_model.rb
CHANGED
@@ -394,10 +394,11 @@ end})
|
|
394
394
|
|
395
395
|
debug "add dll and pdb files [nuget model: package]"
|
396
396
|
package.add_file(Albacore::Paths.normalise_slashes(output + proj.asmname + '.pdb'), target_lib)
|
397
|
+
package.add_file(Albacore::Paths.normalise_slashes(output + proj.asmname + '.dll.mdb'), target_lib)
|
397
398
|
package.add_file(Albacore::Paths.normalise_slashes(output + proj.asmname + '.dll'), target_lib)
|
398
399
|
else
|
399
400
|
# add *.{dll,xml,config}
|
400
|
-
%w[dll xml config].each do |ext|
|
401
|
+
%w[dll xml config pdb dll.mdb].each do |ext|
|
401
402
|
file = %W{#{output} #{proj.asmname}.#{ext}}.
|
402
403
|
map { |f| f.gsub /\\$/, '' }.
|
403
404
|
map { |f| Albacore::Paths.normalise_slashes f }.
|
@@ -190,7 +190,7 @@ and report a bug to albacore with the full output. Here's the nuget process outp
|
|
190
190
|
[:authors, :description, :version].each do |required|
|
191
191
|
warn "metadata##{required} is missing from nugets_pack [nugets pack: config]" if @package.metadata.send(required) == 'MISSING'
|
192
192
|
end
|
193
|
-
|
193
|
+
|
194
194
|
Map.new({
|
195
195
|
:out => @out,
|
196
196
|
:exe => @exe,
|
data/lib/albacore/version.rb
CHANGED
data/spec/nuget_model_spec.rb
CHANGED
@@ -187,13 +187,14 @@ describe "when reading xml from a fsproj file into Project/Metadata" do
|
|
187
187
|
subject do
|
188
188
|
Albacore::NugetModel::Package.from_xxproj_file projfile, :symbols => true
|
189
189
|
end
|
190
|
-
it "should contain all files (just one) and all dll and pdb files (two)" do
|
191
|
-
expect(subject.files.length).to eq
|
190
|
+
it "should contain all files (just one) and all dll and pdb+mdb files (two)" do
|
191
|
+
expect(subject.files.length).to eq 4
|
192
192
|
end
|
193
193
|
|
194
194
|
has_file 'Library1.fs', 'src/Library1.fs'
|
195
195
|
has_file 'bin/Debug/Project.dll', 'lib/net45'
|
196
196
|
has_file 'bin/Debug/Project.pdb', 'lib/net45'
|
197
|
+
has_file 'bin/Debug/Project.dll.mdb', 'lib/net45'
|
197
198
|
end
|
198
199
|
end
|
199
200
|
|
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.5.
|
4
|
+
version: 2.5.3
|
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-08-
|
12
|
+
date: 2015-08-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|