rounders 0.5.1 → 0.5.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/lib/rounders/generators/base.rb +2 -2
- data/lib/rounders/plugins/pluggable.rb +1 -1
- data/lib/rounders/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 126e0a927c3fa14106a6a32c49c144d26ee97f97
|
|
4
|
+
data.tar.gz: b02639af80afccfee88ebaa8ee589c285084efbc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f8856192b7941e1381fea21c7681299372dd9ab28a11a3625818a931e2fdc4bec79aa02b6fbb87188a4c352971dc9616dcd379f5de8c1c97da8daefca08af0b
|
|
7
|
+
data.tar.gz: 9fd50ba93e486fdedd1ed853c4b29c4db24bebdbdf4a8e9ec1e9f6c206f861e4e657ef5a4085a30bbee8156173817e5fba0abc613d51839cb5b016df08abcbc9
|
|
@@ -41,7 +41,7 @@ module Rounders
|
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
klass.define_singleton_method(:generator_name) do
|
|
44
|
-
@generator_name ||= feature_name
|
|
44
|
+
@generator_name ||= feature_name.split('_').first
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
klass.define_singleton_method(:default_source_root) do
|
|
@@ -59,7 +59,7 @@ module Rounders
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
klass.define_singleton_method(:default_generator_root) do
|
|
62
|
-
path = Pathname(__FILE__).dirname.join(generator_name
|
|
62
|
+
path = Pathname(__FILE__).dirname.join(generator_name).expand_path
|
|
63
63
|
path if path.exist?
|
|
64
64
|
end
|
|
65
65
|
end
|
data/lib/rounders/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rounders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- akira.takahashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
324
324
|
version: '0'
|
|
325
325
|
requirements: []
|
|
326
326
|
rubyforge_project:
|
|
327
|
-
rubygems_version: 2.
|
|
327
|
+
rubygems_version: 2.5.1
|
|
328
328
|
signing_key:
|
|
329
329
|
specification_version: 4
|
|
330
330
|
summary: bot-ish pluggable incoming mail processing framework
|