files_loader 0.0.4 → 0.0.5
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/README.md +8 -2
- data/files_loader.gemspec +1 -1
- data/lib/files_loader/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 718122a90c486b49bbe2f41f9982d62507074265
|
4
|
+
data.tar.gz: 991f62668a3ee04e8b3a65780e545218b0f783a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ca4bfd3f89018eb55475ba2d6c95defa8f21d8f84fbf823719c3df12df6320c514529e5684678f533fb221fc16d4bd37f9339a73217bda1f52424c05a3304fa
|
7
|
+
data.tar.gz: 0b4d690c63db9a675f891c58c1bbea47677a818d577c8049e9770258cd524ae7fbc3ff86074f907fff27655b39a1f2c3b207665df04ec33aeb2482c69e86ec2b
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# FilesLoader
|
2
2
|
|
3
|
-
|
3
|
+
Load all *.rb in a folder(you pointed)
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -20,7 +20,13 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
Load FilesLoader
|
24
|
+
|
25
|
+
require 'files_loader'
|
26
|
+
|
27
|
+
Fetch your path
|
28
|
+
|
29
|
+
FilesLoader.run( your_path )
|
24
30
|
|
25
31
|
## Contributing
|
26
32
|
|
data/files_loader.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["li.q.q@qq.com"]
|
11
11
|
spec.summary = %q{文件加载工具}
|
12
12
|
spec.description = %q{加载一个目录下的所有rb文件}
|
13
|
-
spec.homepage = "https://github.com/li-qiang/
|
13
|
+
spec.homepage = "https://github.com/li-qiang/ruby_files_loader"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/files_loader/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: files_loader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- li-qiang
|
@@ -54,7 +54,7 @@ files:
|
|
54
54
|
- lib/files_loader.rb
|
55
55
|
- lib/files_loader/collector.rb
|
56
56
|
- lib/files_loader/version.rb
|
57
|
-
homepage: https://github.com/li-qiang/
|
57
|
+
homepage: https://github.com/li-qiang/ruby_files_loader
|
58
58
|
licenses:
|
59
59
|
- MIT
|
60
60
|
metadata: {}
|