rundock 0.2.6 → 0.2.7

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: bfc18a47e5051ba088a25742975064c8f3814902
4
- data.tar.gz: 18d5eff88301be6b70b896aa31769962faece4a3
3
+ metadata.gz: 83f275d98396c182f89adaa19e2b645e9adc9890
4
+ data.tar.gz: 20c5862e360575367f3112dc6f66da9667d2b004
5
5
  SHA512:
6
- metadata.gz: 0a613b722c504c5c3d410e6dae054e2a8246befc56b927911dfed6921515c53898f1fc1dce9f58103cc5d36e7147c83cdd778e87842ac2a37800558aadc8c2bf
7
- data.tar.gz: 481ddfd33cbce2e4281f53e5f46bf1119b44eb186071532b491ad6f689de97782f615bb0bb1c5eec873b57910c1bdb219a11586737633fd95ab76089c109f416
6
+ metadata.gz: 86ff2497e2f166ba188b350f763ce28ba728cd0fe026afae30bf7ec2543a62549d3e6b944c5b6f50bf231be26d2d7434f0b62ae82e5162ede62308fd60dc2bf6
7
+ data.tar.gz: 148a0ea760473d434a3b43ca07aa8d24e0e0b091970d61aff4743ed80132ce07a1d2c2fb6de282d8b88aa320fd868c8b800e8b78cffe74489b4360a2cf6b6ad6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v0.2.7
2
+
3
+ Fix
4
+
5
+ - Fix plugin was not found
6
+
1
7
  ## v0.2.5
2
8
 
3
9
  Improvements
@@ -75,9 +75,9 @@ module Rundock
75
75
  gems.each do |g|
76
76
  RUNDOCK_PLUGINS.each do |plugin|
77
77
  next if g !~ /^(rundock-plugin-#{plugin})-/
78
- next if Gem::Specification.find_by_path(g).nil?
78
+ next if Gem::Specification.find_by_name(g).nil?
79
79
  Logger.debug("Loading rundock plugin: #{g}")
80
- libdir = "#{Gem::Specification.find_by_path(g).full_gem_path}/lib/rundock/plugin/#{Regexp.last_match(0).gsub(/-/, '/')}"
80
+ libdir = "#{Gem::Specification.find_by_name(g).full_gem_path}/lib/#{Regexp.last_match(0).gsub(/-/, '/')}"
81
81
  Dir.glob("#{libdir}/*.rb").each do |f|
82
82
  require f.gsub(/.rb$/, '')
83
83
  end
@@ -1,3 +1,3 @@
1
1
  module Rundock
2
- VERSION = '0.2.6'
2
+ VERSION = '0.2.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rundock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - hiracy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-05 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler