require_smasher 0.3.0 → 0.3.1
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 +1 -1
- data/lib/require_smasher/version.rb +1 -1
- data/require_smasher.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bccdebf2570530ade656c1205c57049d534a0a91
|
|
4
|
+
data.tar.gz: 4483d1d621beb9a742a78742f5af781a77152c2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1175691f6ebbae115dac3db8c35d76a85a0a4288f80a9573fe80d287a9bc9f45f8a3aff10953d0426d6d5ad19b050cdf979d98825dadfee23b1335c9a37af29
|
|
7
|
+
data.tar.gz: f1dbb21f149d992512267d9d0e060ee9b46d6d74d819cdbce645589c9aa90158d288775f71659f4ab7c23f3e8761dc5b39d0df392a6c9017f81f1935309b9a1f
|
data/README.md
CHANGED
|
@@ -76,7 +76,7 @@ This command will require the file `filename.rb`. You don't have to inform Ruby
|
|
|
76
76
|
### Require Files
|
|
77
77
|
|
|
78
78
|
```ruby
|
|
79
|
-
|
|
79
|
+
require_files 'filename_1', 'directory/filename_2', 'directory/filename_3.rb'
|
|
80
80
|
```
|
|
81
81
|
This command accept a list of files and it will require files `filename_1.rb`, `directory/filename_2.rb` and `directory/filename_3.rb`. You don't have to inform Ruby extension file (**rb**), if you want.
|
|
82
82
|
|
data/require_smasher.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["jr.joacir@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{A simple way to require ruby files in directories and in its sub-directories, and gems.}
|
|
13
|
-
spec.description = %q{Require Smasher give you the power to require ruby files in a list of directories and their sub-directories (recursively), and a list of gems, with just one command.}
|
|
13
|
+
spec.description = %q{Require Smasher give you the power to require ruby files in a list of directories and their sub-directories (recursively), a list of ruby files and a list of gems, with just one command.}
|
|
14
14
|
spec.homepage = "https://github.com/jrjoacir/require-smasher"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: require_smasher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joacir Junior
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-08-
|
|
11
|
+
date: 2018-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -95,8 +95,8 @@ dependencies:
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '10.0'
|
|
97
97
|
description: Require Smasher give you the power to require ruby files in a list of
|
|
98
|
-
directories and their sub-directories (recursively),
|
|
99
|
-
one command.
|
|
98
|
+
directories and their sub-directories (recursively), a list of ruby files and a
|
|
99
|
+
list of gems, with just one command.
|
|
100
100
|
email:
|
|
101
101
|
- jr.joacir@gmail.com
|
|
102
102
|
executables: []
|
|
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
142
|
version: '0'
|
|
143
143
|
requirements: []
|
|
144
144
|
rubyforge_project:
|
|
145
|
-
rubygems_version: 2.6.
|
|
145
|
+
rubygems_version: 2.6.13
|
|
146
146
|
signing_key:
|
|
147
147
|
specification_version: 4
|
|
148
148
|
summary: A simple way to require ruby files in directories and in its sub-directories,
|