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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3fb7ce1c8f8213d9683665307a4cf1675b056db9
4
- data.tar.gz: 251e377b2e8d74f0e0068981671fec2d741dff29
3
+ metadata.gz: bccdebf2570530ade656c1205c57049d534a0a91
4
+ data.tar.gz: 4483d1d621beb9a742a78742f5af781a77152c2c
5
5
  SHA512:
6
- metadata.gz: 839c625191357ccf0242d667d0970c09d2f05197ee6b7a8b6a95880f0ca66f6161d5741e4bf5aa5b970268f552e1f7d1505a5cb670e793d2082f411d2edcd555
7
- data.tar.gz: 1c4da1a0f07bce36bbf66c247301608162c91673697c846e2d84c527443b1d6a33585e63e0641903891f6296de3f8a4decc8c052f045e5bb11f5ee5492cc1dcf
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
- require_gems 'filename_1', 'directory/filename_2', 'directory/filename_3.rb'
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
 
@@ -1,3 +1,3 @@
1
1
  module RequireSmasher
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.1'.freeze
3
3
  end
@@ -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.0
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-22 00:00:00.000000000 Z
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), and a list of gems, with just
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.11
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,