jefferies_tube 1.0.3 → 1.0.4
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 -1
- data/lib/jefferies_tube/capistrano/s3_assets.rb +4 -1
- data/lib/jefferies_tube/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: ef6f6f392dc985fea9fab905b6f231544ccbc881
|
|
4
|
+
data.tar.gz: 3c38d59fe5e6ac15ba4ef13c691ff5f2f74ef8c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d5248c423b58644d99fb800561579032ac6e35d451e4559ac1731f6c1afe2865be402d092aca4cadfafa7c18bd7f425b068db2c9ae625d55dfbd3b709601e3d
|
|
7
|
+
data.tar.gz: dfd0ad2a5e3933596e01c592307f15eec4209f7885f8c6f3acdf604bd98e4b6358db62c269484dd20027bdd292ebd6cc6e7fad939ab1bdd23879a310124b4c99
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,14 @@ This project attempts to follow [semantic versioning](https://semver.org/)
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
-
*
|
|
9
|
+
* _nada_
|
|
10
|
+
|
|
11
|
+
## 1.0.4 - 2018-10-02
|
|
12
|
+
|
|
13
|
+
* bug fixes
|
|
14
|
+
* Fix bug where webpack presence was not correct causing the manifest file to
|
|
15
|
+
not be copied which caused webpack assets to not work (either the new
|
|
16
|
+
version wouldn't be found or the old version would continue to be used).
|
|
10
17
|
|
|
11
18
|
## 1.0.3 - 2018-08-13
|
|
12
19
|
|
|
@@ -19,11 +19,14 @@ task :copy_assets_manifest do
|
|
|
19
19
|
|
|
20
20
|
assets_path = release_path.join('public', fetch(:assets_prefix))
|
|
21
21
|
packs_path = release_path.join('public/packs')
|
|
22
|
-
webpack_enabled =
|
|
22
|
+
webpack_enabled = false
|
|
23
23
|
|
|
24
24
|
on roles(fetch(:assets_roles)), primary: true do
|
|
25
25
|
manifest_name = capture(:ls, assets_path.join('.sprockets-manifest*')).strip
|
|
26
26
|
manifest_contents = download! assets_path.join(manifest_name)
|
|
27
|
+
within release_path do
|
|
28
|
+
webpack_enabled = Dir.exists?('public/packs')
|
|
29
|
+
end
|
|
27
30
|
if webpack_enabled
|
|
28
31
|
packs_manifest_name = capture(:ls, packs_path.join('manifest.json')).strip
|
|
29
32
|
packs_manifest_contents = download! packs_path.join(packs_manifest_name)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jefferies_tube
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Samson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
173
173
|
version: '0'
|
|
174
174
|
requirements: []
|
|
175
175
|
rubyforge_project:
|
|
176
|
-
rubygems_version: 2.6.
|
|
176
|
+
rubygems_version: 2.6.13
|
|
177
177
|
signing_key:
|
|
178
178
|
specification_version: 4
|
|
179
179
|
summary: Ten Forward Consulting useful tools.
|