luban 0.10.1 → 0.10.2
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 +4 -1
- data/lib/luban/deployment/cli/package/base.rb +1 -1
- data/lib/luban/deployment/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a26daab6124bb51f62a3fb87b8537aec2a58010
|
4
|
+
data.tar.gz: ba614aa2277d246dadbec55b2cb11974f25c3096
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98e7c1bb5c10cf539c0c3397d310ab513b77d8a812381b21493e8cb3b2864d238f334fea085ad6305091a2bf8f5cfaa6665d0e81871f072b84b75f26a9c96b4d
|
7
|
+
data.tar.gz: ef22dc14e95ae3b2abd756d58fa42bc8ed3a4d5b562bd3c5b90215c53fbae3bee5fb1760a80fe0bf8559cc9a29444777966c72d858e60d5d18d23ee4222944b2
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
## Version 0.10.
|
3
|
+
## Version 0.10.2 (Nov 22, 2016)
|
4
4
|
|
5
5
|
Minor enhancements:
|
6
6
|
* Upgraded Bundler for Ruby to version 0.13.6
|
7
7
|
* Removed bundle install during deployment project bootstrap
|
8
8
|
* Falled back to use "bundle install" which is a more persistent/general practice
|
9
9
|
|
10
|
+
Bug fixes:
|
11
|
+
* Properly convert require path to string when loading luban package
|
12
|
+
|
10
13
|
## Version 0.10.0 (Nov 21, 2016)
|
11
14
|
|
12
15
|
New features:
|
@@ -30,7 +30,7 @@ module Luban
|
|
30
30
|
|
31
31
|
def package_class(package)
|
32
32
|
require_path = package_require_path(package)
|
33
|
-
require require_path
|
33
|
+
require require_path.to_s
|
34
34
|
package_base_class(require_path)
|
35
35
|
rescue LoadError => e
|
36
36
|
abort "Aborted! Failed to load package #{require_path}: #{e.message}"
|