albacore 2.3.16 → 2.3.17

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93251df002fe7c7afa4afefb4b86dca7932756b9
4
- data.tar.gz: b9b6abbbe68feb215031cf60838d6fb0679207a2
3
+ metadata.gz: e19124d16cdc20bdd13b8f140bb8f3110340d802
4
+ data.tar.gz: b05901a66a8145b0146e5ff7cfcd7de910e7c72b
5
5
  SHA512:
6
- metadata.gz: 689ad2ba099faca4d5fbee3bd679e6b6ef63a8a42b2dec519b1686349791fe2c09196fe4af85e49e4fa8a61bbff69e183298f5dd48c04e070e3bd0f6b891d6fb
7
- data.tar.gz: a19be5b2ebaf970ce7fe480c00f7382916608a51b8196bc44c09bd057994dc319ce99bb6948f53b9380d770d8fce1f6e040309cbf885117f6486b49782fbb6fb
6
+ metadata.gz: 2a34b8d20cf8c775f964c393f0295fbc54023be599c902e4c1cbac1e1f2f1628d91363a899b267c7c1dcd6dbfdaa4b60fcc32826abb9219e3c0ff2bcac4c1d04
7
+ data.tar.gz: 1733281f825aa0a48057464c4196af98630a6d41ca8cb0b5fc30c1b468cb0d4a5d69903173b38025bbebca5a27ca70ec83a6bc4bf90d38c97b67640f6e8d0031
data/README.md CHANGED
@@ -46,7 +46,7 @@ code, as well as hundreds of unit tests written in a easy-to-read rspec syntax.
46
46
  gem install albacore
47
47
  albacore init
48
48
 
49
- Now you have the initial setup and can run `bundle exec rake`. But please read
49
+ Now you have the initial setup and can run `bundle exec rake`. ([nokogiri error?](#error)) But please read
50
50
  below:
51
51
 
52
52
  ## Getting Started
@@ -195,3 +195,9 @@ than afterwards.
195
195
 
196
196
  [wiki]: https://github.com/Albacore/albacore/wiki
197
197
  [upgrade-v1.0]: https://github.com/Albacore/albacore/wiki/Upgrading-from-v1.0
198
+
199
+ ### Error
200
+
201
+ #### CentOS 6/7
202
+
203
+ If you get a problem installing nokogiri, you have two choices: `yum install epel-release && yum install ruby rubygems-nokogiri && gem install albacore` which loads nokogiri from epel, or you could do: `yum install ruby gcc ruby-devel zlib-devel libxslt-devel libxml2-devel && gem install nokogiri` which lets rubygems compile nokogiri.
@@ -1,5 +1,6 @@
1
1
  require 'rake'
2
2
  require 'albacore/dsl'
3
+ require 'albacore/tasks/versionizer'
3
4
  require 'map'
4
5
 
5
6
  module Albacore
@@ -153,7 +154,8 @@ module Albacore
153
154
 
154
155
  def packages
155
156
  # only read packages once
156
- @packages ||= Dir.glob "#{@opts.get :pkg_dir}/*.#{@semver.format "%M.%m.%p%s"}.nupkg"
157
+ ver = Albacore::Tasks::Versionizer.format_nuget @semver
158
+ @packages ||= Dir.glob "#{@opts.get :pkg_dir}/*.#{ver}.nupkg"
157
159
  @packages
158
160
  end
159
161
 
@@ -1,3 +1,3 @@
1
1
  module Albacore
2
- VERSION = "2.3.16"
2
+ VERSION = "2.3.17"
3
3
  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.3.16
4
+ version: 2.3.17
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-02-23 00:00:00.000000000 Z
12
+ date: 2015-03-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake