require_smasher 0.1.0
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 +7 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/.rubocop.yml +11 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +80 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/require_smasher.rb +42 -0
- data/lib/require_smasher/require_dir.rb +34 -0
- data/lib/require_smasher/require_elements.rb +21 -0
- data/lib/require_smasher/require_gem.rb +13 -0
- data/lib/require_smasher/version.rb +3 -0
- data/require_smasher.gemspec +39 -0
- data/todos.txt +6 -0
- metadata +150 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bb8d7666ee6447ce0006da3b665107bc47bb54f9
|
4
|
+
data.tar.gz: 23c85c3579204fae570d8b1947e39b3a916ccbe4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0bff20e6f742729d696ded6255725de558c03c6d641132b759aecbea4ace4783082f58e1f3d9747b00d6a69439efbb7eacca3f45c4fe7304d898e23994dc4e01
|
7
|
+
data.tar.gz: f876e026a7a81ff38d1a50d50be62e71c23be387463c5b3a3ba142281feefe7813e76fe442947663f6be551e4310cebcbdfbfd85299653c1dae0695bf5bcbf26
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at jr.joacir@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Joacir Junior
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# RequireSmasher
|
2
|
+
|
3
|
+
This project was born just to solve a problem: require ruby files **recursively** in a directory. However it grew up and learned to solve other simple problems:
|
4
|
+
|
5
|
+
- require ruby files recursively in a directory and its sub-directories, trying to resolve interdependent files (`require_dir`)
|
6
|
+
- require ruby files recursively in a list of directories and their sub-directories, trying to resolve interdependent files (`require_dirs`)
|
7
|
+
- require a gem (`require_gem`)
|
8
|
+
- require a list of gems (`require_gems`)
|
9
|
+
- require a **list of gems** and ruby files in a **list of directories** and their sub-directories with just **one command** (`require_all`)
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'require_smasher'
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install require_smasher
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
### Require All
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
require_all 'directory_1', 'directory_2/sub-directory', 'gem_1', 'gem_2'
|
33
|
+
```
|
34
|
+
This command will require all ruby files found in directory `directory_1` and its sub-directories, all ruby files in directory `directory_2/sub-directory` and in its sub-directories, gem `gem_1` and gem `gem_2`.
|
35
|
+
|
36
|
+
### Require Dir
|
37
|
+
|
38
|
+
```ruby
|
39
|
+
require_dir 'directory_1'
|
40
|
+
```
|
41
|
+
This command will require all ruby files found in directory `directory_1` and in its sub-directories.
|
42
|
+
|
43
|
+
### Require Dirs
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
require_dirs 'directory_1', 'directory_2/sub-directory'
|
47
|
+
```
|
48
|
+
This command accept a list of directories and it will require all ruby files found in directory `directory_1` and in its sub-directories, all ruby files in directory `directory_2/sub-directory` and in its sub-directories.
|
49
|
+
|
50
|
+
### Require Gem
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
require_gem 'gem'
|
54
|
+
```
|
55
|
+
This command will require the informed gem.
|
56
|
+
|
57
|
+
### Require Gems
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
require_gems 'gem_1', 'gem_2'
|
61
|
+
```
|
62
|
+
This command accept a list of gems and it will require gems `gem_1` and `gem_2`.
|
63
|
+
|
64
|
+
## Development
|
65
|
+
|
66
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
67
|
+
|
68
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
69
|
+
|
70
|
+
## Contributing
|
71
|
+
|
72
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jrjoacir/require-smasher. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
73
|
+
|
74
|
+
## License
|
75
|
+
|
76
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
77
|
+
|
78
|
+
## Code of Conduct
|
79
|
+
|
80
|
+
Everyone interacting in the RequireSmasher project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/require_smasher/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "require_smasher"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'require_smasher/version'
|
2
|
+
require 'require_smasher/require_gem'
|
3
|
+
require 'require_smasher/require_dir'
|
4
|
+
require 'require_smasher/require_elements'
|
5
|
+
|
6
|
+
def require_all(*required_list)
|
7
|
+
required_list.uniq!
|
8
|
+
errors = []
|
9
|
+
|
10
|
+
required_list.each do |required|
|
11
|
+
begin
|
12
|
+
require_gems(required)
|
13
|
+
rescue StandardError => gem_error
|
14
|
+
begin
|
15
|
+
require_dirs(required)
|
16
|
+
rescue StandardError => dir_error
|
17
|
+
errors << gem_error.message
|
18
|
+
errors << dir_error.message
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
raise StandardError, errors unless errors.empty?
|
24
|
+
end
|
25
|
+
|
26
|
+
def require_gem(gem)
|
27
|
+
require_gems(gem)
|
28
|
+
end
|
29
|
+
|
30
|
+
def require_dir(directory)
|
31
|
+
require_dirs(directory)
|
32
|
+
end
|
33
|
+
|
34
|
+
def require_dirs(*directories)
|
35
|
+
raise StandardError, 'No directories was informed' if directories.empty?
|
36
|
+
RequireElements.require_elements(directories, RequireDir)
|
37
|
+
end
|
38
|
+
|
39
|
+
def require_gems(*gems)
|
40
|
+
raise StandardError, 'No gems was informed' if gems.empty?
|
41
|
+
RequireElements.require_elements(gems, RequireGem)
|
42
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module RequireDir
|
2
|
+
def self.req(directory)
|
3
|
+
require_files(files(directory))
|
4
|
+
end
|
5
|
+
|
6
|
+
def self.files(directory)
|
7
|
+
raise StandardError, 'Directory was not informed' unless directory
|
8
|
+
raise StandardError, "Directory '#{directory}' does not exist" unless Dir.exist?(directory)
|
9
|
+
Dir.glob(File.join(File.expand_path("./#{directory}"), '**', '*.rb'))
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.require_files(files, attempt = 0)
|
13
|
+
files_with_error = []
|
14
|
+
errors = []
|
15
|
+
|
16
|
+
files.each do |file|
|
17
|
+
begin
|
18
|
+
require_relative file
|
19
|
+
rescue StandardError => error
|
20
|
+
files_with_error << file
|
21
|
+
errors << { file: file, error: error.message }
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
return if files_with_error.count <= 0
|
26
|
+
|
27
|
+
attempt += 1 if files == files_with_error
|
28
|
+
|
29
|
+
raise StandardError, errors if attempt > 1
|
30
|
+
require_files(files_with_error, attempt)
|
31
|
+
end
|
32
|
+
|
33
|
+
private_class_method :files, :require_files
|
34
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module RequireElements
|
2
|
+
def self.require_elements(elements, require_module)
|
3
|
+
elements.uniq!
|
4
|
+
errors = []
|
5
|
+
|
6
|
+
elements.each do |element|
|
7
|
+
begin
|
8
|
+
require_module.req(element)
|
9
|
+
rescue LoadError => error
|
10
|
+
errors << error.message
|
11
|
+
rescue StandardError => error
|
12
|
+
errors << error.message
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
return if errors.empty?
|
17
|
+
|
18
|
+
raise StandardError, errors if errors.count > 1
|
19
|
+
raise StandardError, errors.first unless errors.empty?
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module RequireGem
|
2
|
+
def self.req(gem)
|
3
|
+
raise StandardError, 'Gem was not informed' unless gem
|
4
|
+
|
5
|
+
begin
|
6
|
+
require gem
|
7
|
+
rescue LoadError => error
|
8
|
+
raise error, "Error requering gem '#{gem}': #{error.message}"
|
9
|
+
rescue StandardError => error
|
10
|
+
raise StandardError, "Error requering gem '#{gem}': #{error.message}"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "require_smasher/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "require_smasher"
|
8
|
+
spec.version = RequireSmasher::VERSION
|
9
|
+
spec.authors = ["Joacir Junior"]
|
10
|
+
spec.email = ["jr.joacir@gmail.com"]
|
11
|
+
|
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.}
|
14
|
+
spec.homepage = "https://github.com/jrjoacir/require-smasher"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
"public gem pushes."
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
34
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
35
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
36
|
+
spec.add_development_dependency "simplecov", "~> 0.16"
|
37
|
+
spec.add_development_dependency "rubocop", "~> 0.58"
|
38
|
+
spec.add_development_dependency "byebug", "~> 10.0"
|
39
|
+
end
|
data/todos.txt
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
tratar errors especificos com classe de erros a criar
|
2
|
+
fazer readme em portugues
|
3
|
+
resolver ofensores restantes do rubocop
|
4
|
+
publicar gem
|
5
|
+
atualizar readme para informar sobre gemas e arquitetura utilizada para desenvolvimento
|
6
|
+
resolver interdependencia de arquivos dentro da lista de diretórios
|
metadata
ADDED
@@ -0,0 +1,150 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: require_smasher
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Joacir Junior
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-08-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.16'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.16'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.58'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.58'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: byebug
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
description: Require Smasher give you the power to require ruby files in a list of
|
98
|
+
directories and their sub-directories (recursively), and a list of gems, with just
|
99
|
+
one command.
|
100
|
+
email:
|
101
|
+
- jr.joacir@gmail.com
|
102
|
+
executables: []
|
103
|
+
extensions: []
|
104
|
+
extra_rdoc_files: []
|
105
|
+
files:
|
106
|
+
- ".gitignore"
|
107
|
+
- ".rspec"
|
108
|
+
- ".rubocop.yml"
|
109
|
+
- ".travis.yml"
|
110
|
+
- CODE_OF_CONDUCT.md
|
111
|
+
- Gemfile
|
112
|
+
- LICENSE.txt
|
113
|
+
- README.md
|
114
|
+
- Rakefile
|
115
|
+
- bin/console
|
116
|
+
- bin/setup
|
117
|
+
- lib/require_smasher.rb
|
118
|
+
- lib/require_smasher/require_dir.rb
|
119
|
+
- lib/require_smasher/require_elements.rb
|
120
|
+
- lib/require_smasher/require_gem.rb
|
121
|
+
- lib/require_smasher/version.rb
|
122
|
+
- require_smasher.gemspec
|
123
|
+
- todos.txt
|
124
|
+
homepage: https://github.com/jrjoacir/require-smasher
|
125
|
+
licenses:
|
126
|
+
- MIT
|
127
|
+
metadata:
|
128
|
+
allowed_push_host: https://rubygems.org
|
129
|
+
post_install_message:
|
130
|
+
rdoc_options: []
|
131
|
+
require_paths:
|
132
|
+
- lib
|
133
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '0'
|
143
|
+
requirements: []
|
144
|
+
rubyforge_project:
|
145
|
+
rubygems_version: 2.6.13
|
146
|
+
signing_key:
|
147
|
+
specification_version: 4
|
148
|
+
summary: A simple way to require ruby files in directories and in its sub-directories,
|
149
|
+
and gems.
|
150
|
+
test_files: []
|