pult 0.0.18 → 0.0.19
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 +10 -2
- data/lib/pult/panel/provider/rake.rb +2 -4
- data/lib/pult/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: 5a39fbcaf3eda478ae7480a5e792c31ec0f4a01f4ee3b5dedfddb8791e868781
|
|
4
|
+
data.tar.gz: dc9bd252985efbd8b3f027ef66d1f83230ea993009618b760f3752674bb2ffb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6672fc57572bcd811ed3228393705b3cab9dd84a044a4ff3179d90316f692370eb385177dbc2c2fd3cfeaf569ddb1d693debcf78f021a56025d53984ff33f920
|
|
7
|
+
data.tar.gz: 4aee322a1a980181f47f8c718c655a21104a88974f0beb365ad58361951c3077548d06752fd799add3ced09412859d5a6d2389a0251ad8191bbc3300d0e74d36
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [0.0.
|
|
7
|
+
## [0.0.19] - 2019-23-09
|
|
8
|
+
### Status
|
|
9
|
+
- Dev version
|
|
10
|
+
|
|
11
|
+
### Updates
|
|
12
|
+
- Fix `rake` provider (was only last action in rake nested action)
|
|
13
|
+
- Fix CHANGELOG releases nums
|
|
14
|
+
|
|
15
|
+
## [0.0.18] - 2019-23-09
|
|
8
16
|
### Status
|
|
9
17
|
- Dev version
|
|
10
18
|
|
|
@@ -12,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
20
|
- Fix panel compile when `.pult.yml` has only appname
|
|
13
21
|
- Fix `rake` provider (merge in current panel app)
|
|
14
22
|
|
|
15
|
-
## [0.0.
|
|
23
|
+
## [0.0.17] - 2019-22-09
|
|
16
24
|
### Status
|
|
17
25
|
- Dev version
|
|
18
26
|
|
|
@@ -11,8 +11,6 @@ module Pult::Panel::Provider::Rake
|
|
|
11
11
|
Dir[rake_files].each do |rake_file|
|
|
12
12
|
hash = pult_hash rake_file
|
|
13
13
|
|
|
14
|
-
Pult::Panel::App.config_dir! hash, rake_file
|
|
15
|
-
|
|
16
14
|
# merge in app
|
|
17
15
|
panel[app_name(rake_file)]&.merge! hash
|
|
18
16
|
end
|
|
@@ -22,12 +20,12 @@ module Pult::Panel::Provider::Rake
|
|
|
22
20
|
hash = {}
|
|
23
21
|
tasks = self.tasks(file)
|
|
24
22
|
|
|
25
|
-
for task in tasks
|
|
23
|
+
for task in tasks.sort.reverse
|
|
26
24
|
count = task.count(':')
|
|
27
25
|
|
|
28
26
|
n = -1
|
|
29
27
|
task.split(':').reduce(hash) do |h, t|
|
|
30
|
-
(n += 1) && n == count ? h[t] = "#{COMMAND} #{task}" : h[t]
|
|
28
|
+
(n += 1) && n == count ? h[t] = "#{COMMAND} #{task}" : h[t] ||= {}
|
|
31
29
|
end
|
|
32
30
|
end
|
|
33
31
|
|
data/lib/pult/version.rb
CHANGED