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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fcf6367ec76ae6deb067a576c66a4fd51d6261fb
4
- data.tar.gz: cf332971c8d02779a2d186eb7923f06b39642104
3
+ metadata.gz: 0a26daab6124bb51f62a3fb87b8537aec2a58010
4
+ data.tar.gz: ba614aa2277d246dadbec55b2cb11974f25c3096
5
5
  SHA512:
6
- metadata.gz: 9bfd4c274d0159d8a012baa1bb194ba6a321af7dc5f4fae599ac74bfad39b5ad3888eb5c97148bba6cfec15bfc90c71ab8fa6743933603b29cd192a1668632c1
7
- data.tar.gz: aace4fac3d7914f790640833343f288031c2b4eeb1c31fddd54b5a8f905966a6e159f33546f8dfb2e2d43fc34c9b49345a82804984e9c29da2be3c76ac58d0cb
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.1 (Nov 22, 2016)
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}"
@@ -1,5 +1,5 @@
1
1
  module Luban
2
2
  module Deployment
3
- VERSION = "0.10.1"
3
+ VERSION = "0.10.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luban
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rubyist Lei