pult 0.0.18 → 0.0.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a79b3113df43698717167613cc77109ef94a5fbd35d87aefd270bc3f03e09c7
4
- data.tar.gz: 6cb2e79d84b0e3d976cacdf7ea98c02f23f5bf522c5e05a318057041248dbbb8
3
+ metadata.gz: 5a39fbcaf3eda478ae7480a5e792c31ec0f4a01f4ee3b5dedfddb8791e868781
4
+ data.tar.gz: dc9bd252985efbd8b3f027ef66d1f83230ea993009618b760f3752674bb2ffb2
5
5
  SHA512:
6
- metadata.gz: 514cd5ef3e569aeefe7ff2df86ba9aa586a3579074a0147678dab7e02081a6eed785c8fafbe1f72aa4e7848346ccf6a80ef11bb4d5ae789be63cebb84380a146
7
- data.tar.gz: 59dc140e8228b5dc7f92b986b93f57bf45f9b4240b25f146de103a8da52de4a2e3cd49342a14fee0ab51a04e775f4a46bc8dbd7707c8a650ea83f20a2e88e5f1
6
+ metadata.gz: 6672fc57572bcd811ed3228393705b3cab9dd84a044a4ff3179d90316f692370eb385177dbc2c2fd3cfeaf569ddb1d693debcf78f021a56025d53984ff33f920
7
+ data.tar.gz: 4aee322a1a980181f47f8c718c655a21104a88974f0beb365ad58361951c3077548d06752fd799add3ced09412859d5a6d2389a0251ad8191bbc3300d0e74d36
@@ -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.16] - 2019-23-09
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.16] - 2019-22-09
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
 
@@ -1,3 +1,3 @@
1
1
  module Pult
2
- VERSION = "0.0.18"
2
+ VERSION = "0.0.19"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pult
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - dmitryck