jets 1.3.1 → 1.3.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 +3 -0
- data/Gemfile.lock +1 -1
- data/lib/jets/builders/gem_replacer.rb +2 -3
- data/lib/jets/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da5357451481684b838cc3019cc51947b44d13f1776390cb9c087a56319c9b85
|
|
4
|
+
data.tar.gz: c047987d50a8cf0cc1bf9dc02c057a7e69914df107e6484fca954e4e9106699a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5631b4f9074431aa7b7a1012915de43726cd743670491bec0787f4229b97d82a4f0c55d4d4bfb9baef1ce9c2950d999895ae8730dd5f5686f923e0a305390b7d
|
|
7
|
+
data.tar.gz: 03c6f1f6cb3516e8cc420ed9855107a0e756fd95e431404e353e51e273a348fc203e3c90bc94f43d672b03287751dcca9b4b40e45fd07add343c624d2695df4a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [1.3.2]
|
|
7
|
+
- Merge pull request #88 from mveer99/master: faulty -T cp option
|
|
8
|
+
|
|
6
9
|
## [1.3.1]
|
|
7
10
|
- Merge pull request #87 from tongueroo/on-exception
|
|
8
11
|
- fix helpers for binary support
|
data/Gemfile.lock
CHANGED
|
@@ -29,9 +29,8 @@ class Jets::Builders
|
|
|
29
29
|
code = "#{Jets.build_root}/stage/code"
|
|
30
30
|
opt_gems = "#{code}/opt/ruby/gems/#{Jets::Gems.ruby_folder}"
|
|
31
31
|
vendor_gems = "#{code}/vendor/bundle/ruby/#{Jets::Gems.ruby_folder}"
|
|
32
|
-
# https://
|
|
33
|
-
|
|
34
|
-
sh "cp -TR #{opt_gems} #{vendor_gems}"
|
|
32
|
+
# https://unix.stackexchange.com/questions/146441/copy-over-existing-files-without-confirmation
|
|
33
|
+
sh "yes | cp -rf #{opt_gems} #{vendor_gems}"
|
|
35
34
|
# clean up opt compiled gems
|
|
36
35
|
FileUtils.rm_rf("#{code}/opt/ruby")
|
|
37
36
|
end
|
data/lib/jets/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-12-
|
|
11
|
+
date: 2018-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|