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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/cany/recipes/bundler.rb +1 -1
- data/lib/cany/specification/dsl.rb +1 -1
- data/lib/cany/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ef1a82496ea3d4b5138aa96d14773fa9b407087
|
|
4
|
+
data.tar.gz: 5aa2a6f1dcd011c5cee941bba26979aa2a51c951
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b565dfd33242c905e0cd244f87051b3378dca0cd3700b19f3aefc24b800371fdc26a39b90348d7f6ff6708e8bbb9c1fcb0d17aa6356d7968c5e82b85b9ef57e
|
|
7
|
+
data.tar.gz: d5c589581f25ae5df6736d97f4aa99d4b5e606c29dbb179bbce4551994de46ed40b267e40ac3b259e279cad5f5fdef88adb1c2e1077caae98ae1e2ec44a9566e
|
data/CHANGELOG.md
CHANGED
data/lib/cany/recipes/bundler.rb
CHANGED
|
@@ -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
|
data/lib/cany/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
132
|
+
rubygems_version: 2.0.14
|
|
133
133
|
signing_key:
|
|
134
134
|
specification_version: 4
|
|
135
135
|
summary: Canning your ruby applications
|