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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d13287da5a0dcd058dba183d73448eca8c09a120
4
- data.tar.gz: c53ddbf4bd3c74d8daf5f02a64e983c19f8397be
3
+ metadata.gz: c2b2f5562722cb0d0ab9228e35b232e89a99f513
4
+ data.tar.gz: 30cd05df430452d2bbcf97c12cb230ce5ddaac5f
5
5
  SHA512:
6
- metadata.gz: b7535cfb3fbbf7149ae6351f47647af78e56b60a3cd28b94bb1e7fe894d66700d2249e8e34e2a9b6956cda01ee6773c156bf5d3027f8b2130a43d62fd0a6226b
7
- data.tar.gz: 1e021047a2dc0b57fc4664bea53a1f8f21e03b45d343e4cb320e36403baa06b2fa83e700685a20a6afae3565f26d15d60bf32cfb9ea6f8fdbeececb7a9b02863
6
+ metadata.gz: 94b3422d8bfe7fd2b6692e683a09fd5b7e75be04ec7c4e4fe87002984e46237d7c63c8e80ea996776204d873dcc0c8b337c677c5c835a62044ca25974db825e0
7
+ data.tar.gz: 360fb861dc2bbff9ed5c056bda2e8f6a453c911ab5839dd10518c15bf996a59db9e97dcafa81bc3a66849890686c4449870e42c425a98f0a41cf842c193069ec
@@ -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,
@@ -1,3 +1,3 @@
1
1
  module Albacore
2
- VERSION = "2.5.2"
2
+ VERSION = "2.5.3"
3
3
  end
@@ -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 3
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.2
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-17 00:00:00.000000000 Z
12
+ date: 2015-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake