luban 0.7.5 → 0.7.6

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: 25350f60e02f4ad3fdb32ef96e950ebd2bc06f68
4
- data.tar.gz: 7a290c7c19c41bc551d629d84eb1ab289b84be5c
3
+ metadata.gz: f85ecb638f4b2b69057cfc4506b59dfb8f69d1e5
4
+ data.tar.gz: 3c19ebfc18ef56f9f271ede4192d83b077fda04d
5
5
  SHA512:
6
- metadata.gz: f17055fec2a3d3daf4cda59716b6e480f0122a80ee97ca3b9b6f798667ed3389bace1b0a26e9f9154493dbced804cebc9a1086338dc04e4860d7b50e13bb45d8
7
- data.tar.gz: 68326cb893360e365623305212ddba81eb06355b46ec7ec77d95a2527b72ac8cb48431049b9687ab4a42d1e7b6fef246c50a8e24d9cd15a023d6cb1850cdb8fe
6
+ metadata.gz: 87d697be9c51e303964c6e6436e169b9890c8ee0be7d615648558473a32cc4ea568bf50866beb5d63de6b6c8b6c4bed758811de7ea29436d26b14598d2e3297e
7
+ data.tar.gz: 3b49f00bc620aff401e874fc1d4c15e68fc90b8d7a221413de59898b1de42712c8793a4fcacd6af6a79aadd20ed11cfe9e1ca55064db9800f61c0eee516eeb33
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change log
2
2
 
3
+ ## Version 0.7.6 (Aug 30, 2016)
4
+
5
+ Bug fixes:
6
+ * Used --no-rdoc and --no-ri instead of --no-document to be backward compatible
7
+ * Ensured extracting Gemfile and Gemfile.lock without raising any exceptions during app packaging
8
+
3
9
  ## Version 0.7.5 (Aug 30, 2016)
4
10
 
5
11
  Minor enhancements:
@@ -169,7 +169,7 @@ module Luban
169
169
  gems = bundled_gems[:gems] = {}
170
170
  if test(:tar, "-tzf #{release_package_path} #{gemfile_path} > /dev/null 2>&1")
171
171
  within(workspace_path) do
172
- execute(:tar, "--strip-components=1 -xzf #{release_package_path} #{gemfile_path} #{gemfile_path}.lock > /dev/null 2>&1")
172
+ execute(:tar, "--strip-components=1 -xzf #{release_package_path} #{gemfile_path} #{gemfile_path}.lock > /dev/null 2>&1; true")
173
173
  options = []
174
174
  options << "--path #{bundle_path}"
175
175
  unless test(:bundle, :check, *options)
@@ -65,7 +65,8 @@ module Luban
65
65
 
66
66
  def install_package!
67
67
  install_opts = ['--local']
68
- install_opts << "--no-document" unless install_doc?
68
+ #install_opts << "--no-document" unless install_doc?
69
+ install_opts << "--no-rdoc --no-ri" unless install_doc?
69
70
  test("#{gem_executable} uninstall bundler -a -x -I >> #{install_log_file_path} 2>&1") and
70
71
  test("#{gem_executable} install #{install_opts.join(' ')} #{src_cache_path} >> #{install_log_file_path} 2>&1")
71
72
  end
@@ -1,5 +1,5 @@
1
1
  module Luban
2
2
  module Deployment
3
- VERSION = "0.7.5"
3
+ VERSION = "0.7.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luban
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rubyist Lei