jets 1.9.31 → 1.9.32
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/lib/jets/builders/code_builder.rb +1 -1
- data/lib/jets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d10f05b816286dec593e0c9ca8581e2676508bd0654f482d820daed75f5d530
|
4
|
+
data.tar.gz: 478a8b35bab50653e88310fec4433cb9bed0f083080c0263d44fcb03fb5df0c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da638c5d9a3b9f2e4dd2b1061230d03082e942e2a5f0f574d6ef098759e948401d61b518384f985a520e23910cd30f347caf26364b4e0850865356524b1938a9
|
7
|
+
data.tar.gz: b1e6cf71f5bfac26f35f508ca7370a6acf80cead9282a11e25c114fb8f6bb9d4d411cd324c2721f6e9896f94eb34b6196be9fdb629375a03f2048b1d7e3fe58c
|
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/).
|
5
5
|
|
6
|
+
## [1.9.32]
|
7
|
+
- #317 fix jets deploy when no /tmp/jets exists yet
|
8
|
+
|
6
9
|
## [1.9.31]
|
7
10
|
- #307 Update comment in Gemfile template
|
8
11
|
- #315 Improve spec_helpers: Use Rack::Multipart utils to properly build body params (especially with files and nested hashes)from galetahub/master
|
@@ -27,7 +27,6 @@ module Jets::Builders
|
|
27
27
|
|
28
28
|
def build
|
29
29
|
check_ruby_version
|
30
|
-
copy_ruby_version_file
|
31
30
|
@version_purger.purge
|
32
31
|
cache_check_message
|
33
32
|
|
@@ -35,6 +34,7 @@ module Jets::Builders
|
|
35
34
|
compile_assets # easier to do before we copy the project because node and yarn has been likely setup in the that dir
|
36
35
|
compile_rails_assets
|
37
36
|
copy_project
|
37
|
+
copy_ruby_version_file
|
38
38
|
Dir.chdir("#{stage_area}/code") do
|
39
39
|
# These commands run from project root
|
40
40
|
code_setup
|
data/lib/jets/version.rb
CHANGED