luban 0.7.5 → 0.7.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f85ecb638f4b2b69057cfc4506b59dfb8f69d1e5
|
4
|
+
data.tar.gz: 3c19ebfc18ef56f9f271ede4192d83b077fda04d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|