luban 0.12.10 → 0.12.11
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb67666121f6fcf2e0f70c16adb5c7b38766c8fb
|
4
|
+
data.tar.gz: db0722a6ca9911ec279b1e16e81e986ea48d054a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c55ed12e6e87905f0f10d09cb6d3949a342e23d97ef9cdb1ff906f4ec6d5257fa82d0c9f3b9ecc02c641fe897f939ba7594959b466ff205146d361c91ae3e9b0
|
7
|
+
data.tar.gz: 2695763a39a650874112ec59710a5daefeda724611a3eebeb6bc2e5bdea24c988526b447a0b652f9bd74732d31f85fa63b09b4440281ca695024d8d2c7e2c65c
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
## Version 0.12.
|
3
|
+
## Version 0.12.11 (Mar 29, 2017)
|
4
4
|
|
5
5
|
Bug fixes:
|
6
6
|
* Cleaned up app releases except the most recent one during dockerization
|
7
|
+
* Corrected the default value for parameter :user in Luban::Deployment::Runner
|
8
|
+
* Fixed typos in the template of Lubanfile.rb.erb
|
7
9
|
|
8
10
|
## Version 0.12.9 (Mar 23, 2017)
|
9
11
|
|
@@ -11,7 +11,8 @@ module Luban
|
|
11
11
|
@default_rc ||= { 'luban_roles' => %i(app),
|
12
12
|
'luban_root_path' => Parameters::General::DefaultLubanRootPath,
|
13
13
|
'stages' => %w(development staging production),
|
14
|
-
'author' => { 'name' => 'author name', 'email' => 'author@email.com' }
|
14
|
+
'author' => { 'name' => 'author name', 'email' => 'author@email.com' },
|
15
|
+
'user' => current_user
|
15
16
|
}
|
16
17
|
end
|
17
18
|
|
@@ -47,8 +48,7 @@ module Luban
|
|
47
48
|
end
|
48
49
|
|
49
50
|
def set_default_common_parameters
|
50
|
-
%i(luban_roles luban_root_path stages author).each { |p| set_default p, rc[p.to_s] }
|
51
|
-
set_default :user, (rc['user'] || ENV['USER'])
|
51
|
+
%i(luban_roles luban_root_path stages author user).each { |p| set_default p, rc[p.to_s] }
|
52
52
|
end
|
53
53
|
|
54
54
|
def set_default_project_parameters
|