Skip to content

Commit

Permalink
bundler: use recent version (issues with 1.7 looks resolved) - releas…
Browse files Browse the repository at this point in the history
…e as 0.5.6
  • Loading branch information
mswart committed Aug 19, 2016
1 parent 1fe8816 commit 151d15f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.5.6 / 2016-08-19
==================

Bug Fixes:

* bundler: use current bundler revision, issues with 1.7 looks resolved


0.5.5 / 2016-02-15
==================

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cany (0.5.5)
cany (0.5.6)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/cany/recipes/bundler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def build
ENV['GEM_HOME'] = File.absolute_path('debian/gems')
old_home = ENV['HOME']
ENV['HOME'] = File.absolute_path('debian')
ruby_bin 'gem', %w(install bundler --version ~>1.6.5 --no-ri --no-rdoc --install-dir bundler --bindir bundler/bin)
ruby_bin 'gem', %w(install bundler --no-ri --no-rdoc --install-dir bundler --bindir bundler/bin)
ENV['HOME'] = old_home
ruby_bin 'bundle', %w(install --deployment --retry 3 --without), skipped_groups
inner.build
Expand Down
2 changes: 1 addition & 1 deletion lib/cany/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Cany
module VERSION
MAJOR = 0
MINOR = 5
PATCH = 5
PATCH = 6
STAGE = nil
STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.')
def self.to_s; STRING end
Expand Down

0 comments on commit 151d15f

Please sign in to comment.