cany 0.5.1 → 0.5.2

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: 81b5b332c254f056a00751abbe297be5e47c2cce
4
- data.tar.gz: eee4eb8fcf0ec15e70f2030ef862bf05f53234aa
3
+ metadata.gz: 8ef1a82496ea3d4b5138aa96d14773fa9b407087
4
+ data.tar.gz: 5aa2a6f1dcd011c5cee941bba26979aa2a51c951
5
5
  SHA512:
6
- metadata.gz: 63e3bf0ce2b7b42bf706244501ae3dc1abed25535ab632dc878044cf1daad3bbd571e89de59add28f9b8239d9a3c49ec07fac52b57d3b578b5dffcc3111bcf38
7
- data.tar.gz: bccada4cd349dc8418874b2a268ca75409273ecc35699a03826eb699fc2aa5e4ecd371015a4a4b37767054994e7ef58478219e8376d3246fe540bcee8634075e
6
+ metadata.gz: 4b565dfd33242c905e0cd244f87051b3378dca0cd3700b19f3aefc24b800371fdc26a39b90348d7f6ff6708e8bbb9c1fcb0d17aa6356d7968c5e82b85b9ef57e
7
+ data.tar.gz: d5c589581f25ae5df6736d97f4aa99d4b5e606c29dbb179bbce4551994de46ed40b267e40ac3b259e279cad5f5fdef88adb1c2e1077caae98ae1e2ec44a9566e
@@ -1,3 +1,11 @@
1
+ 0.5.2 / 2014-08-14
2
+ ==================
3
+
4
+ Bug Fixes:
5
+
6
+ * Use bundler 1.6.x for now - as 1.7 has difficulties with basic auth protected sources
7
+
8
+
1
9
  0.5.1 / 2014-01-09
2
10
  ==================
3
11
 
@@ -35,7 +35,7 @@ module Cany
35
35
  ENV['GEM_HOME'] = File.absolute_path('debian/gems')
36
36
  old_home = ENV['HOME']
37
37
  ENV['HOME'] = File.absolute_path('debian')
38
- ruby_bin 'gem', %w(install bundler --no-ri --no-rdoc --install-dir bundler --bindir bundler/bin)
38
+ ruby_bin 'gem', %w(install bundler --version '~> 1.6' --no-ri --no-rdoc --install-dir bundler --bindir bundler/bin)
39
39
  ENV['HOME'] = old_home
40
40
  ruby_bin 'bundle', %w(install --deployment --without), skipped_groups
41
41
  inner.build
@@ -26,7 +26,7 @@ module Cany
26
26
  # @param version [String] The version constrain the must be satisfied by Cany.
27
27
  # @raise Cany::UnsupportedVersion on version mismatch
28
28
  def require_cany(version)
29
- unless Gem::Requirement.create(version).satisfied_by? Gem::Version.new(Cany::VERSION)
29
+ unless Gem::Requirement.create(version).satisfied_by? Gem::Version.new(Cany::VERSION.to_s)
30
30
  raise UnsupportedVersion.new version
31
31
  end
32
32
  @specification.cany_version_constraint = version
@@ -2,7 +2,7 @@ module Cany
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- PATCH = 1
5
+ PATCH = 2
6
6
  STAGE = nil
7
7
  STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.')
8
8
  def self.to_s; STRING end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cany
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Malte Swart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-09 00:00:00.000000000 Z
11
+ date: 2014-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  version: '0'
130
130
  requirements: []
131
131
  rubyforge_project:
132
- rubygems_version: 2.0.7
132
+ rubygems_version: 2.0.14
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: Canning your ruby applications