require_all 1.3.3 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bff4ed09b77b7126ccec6e78b790db78c0bb2963
4
+ data.tar.gz: f50a415e910319cd6882a65232a1ffbc03f606b9
5
+ SHA512:
6
+ metadata.gz: 7096790f47739b0c2409ee5b0b01482dfd89154842aed4c4ca0e4e7d905a1f5994308e0d79845cf7cd524ead2d5ec1642f9a95234254323833efc75806d007da
7
+ data.tar.gz: b43aba2d1d0954229d21f3c8980aa9c019b8acea1fa6325098442b1b9799981cffcab3e92fca4d5581929372cc1ddbfb5f25783294e0d49de611f411089a558e
@@ -1,9 +1,9 @@
1
1
  rvm:
2
- - 2.2.1
3
- - 2.1.5
4
- - 2.0.0
5
- - jruby
6
- - rbx
2
+ - 2.4.0
3
+ - 2.3.3
4
+ - 2.2.6
5
+ - jruby-19mode
6
+ - rbx-3
7
7
  - ruby-head
8
8
  notifications:
9
9
  recipients:
@@ -11,4 +11,6 @@ notifications:
11
11
  matrix:
12
12
  allow_failures:
13
13
  - rvm: ruby-head
14
+ - rvm: jruby-19mode
15
+ - rvm: rbx-3
14
16
 
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ 1.4.0:
2
+
3
+ * License is now correctly as MIT. Thanks to Eric Kessler for pull request #16.
4
+
1
5
  1.3.3:
2
6
 
3
7
  * Support empty directories without crashing. Issue #11. Thanks to Eric Kessler.
data/LICENSE CHANGED
@@ -1,58 +1,20 @@
1
- Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
2
- You can redistribute it and/or modify it under either the terms of the GPL
3
- (see COPYING.txt file), or the conditions below:
4
-
5
- 1. You may make and give away verbatim copies of the source form of the
6
- software without restriction, provided that you duplicate all of the
7
- original copyright notices and associated disclaimers.
8
-
9
- 2. You may modify your copy of the software in any way, provided that
10
- you do at least ONE of the following:
11
-
12
- a) place your modifications in the Public Domain or otherwise
13
- make them Freely Available, such as by posting said
14
- modifications to Usenet or an equivalent medium, or by allowing
15
- the author to include your modifications in the software.
16
-
17
- b) use the modified software only within your corporation or
18
- organization.
19
-
20
- c) rename any non-standard executables so the names do not conflict
21
- with standard executables, which must also be provided.
22
-
23
- d) make other distribution arrangements with the author.
24
-
25
- 3. You may distribute the software in object code or executable
26
- form, provided that you do at least ONE of the following:
27
-
28
- a) distribute the executables and library files of the software,
29
- together with instructions (in the manual page or equivalent)
30
- on where to get the original distribution.
31
-
32
- b) accompany the distribution with the machine-readable source of
33
- the software.
34
-
35
- c) give non-standard executables non-standard names, with
36
- instructions on where to get the original software distribution.
37
-
38
- d) make other distribution arrangements with the author.
39
-
40
- 4. You may modify and include the part of the software into any other
41
- software (possibly commercial). But some files in the distribution
42
- are not written by the author, so that they are not under this terms.
43
-
44
- They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
45
- files under the ./missing directory. See each file for the copying
46
- condition.
47
-
48
- 5. The scripts and library files supplied as input to or produced as
49
- output from the software do not automatically fall under the
50
- copyright of the software, but belong to whomever generated them,
51
- and may be sold commercially, and may be aggregated with this
52
- software.
53
-
54
- 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
55
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
56
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
57
- PURPOSE.
58
-
1
+ Copyright (c) 2009 Jarmo Pertman
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -2,5 +2,5 @@ require "bundler/gem_tasks"
2
2
 
3
3
  require "rspec/core/rake_task"
4
4
  RSpec::Core::RakeTask.new(:spec)
5
- task :default => :spec
6
- task :release => :spec
5
+ task default: :spec
6
+ task build: :spec
@@ -81,7 +81,7 @@ module RequireAll
81
81
  end
82
82
  end
83
83
 
84
- return if files.empty?
84
+ return if files.empty?
85
85
 
86
86
  if options[:method] == :autoload
87
87
  files.map! { |file_| [file_, File.expand_path(file_)] }
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "require_all"
3
- s.version = "1.3.3"
3
+ s.version = "1.4.0"
4
4
  s.authors = ["Jarmo Pertman", "Tony Arcieri"]
5
5
  s.email = "jarmo.p@gmail.com"
6
6
  s.summary = "A wonderfully simple way to load your code"
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: require_all
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
5
- prerelease:
4
+ version: 1.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jarmo Pertman
@@ -10,54 +9,48 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2015-10-26 00:00:00.000000000 Z
12
+ date: 2017-01-06 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rake
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ~>
18
+ - - "~>"
21
19
  - !ruby/object:Gem::Version
22
20
  version: '10.4'
23
21
  type: :development
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ~>
25
+ - - "~>"
29
26
  - !ruby/object:Gem::Version
30
27
  version: '10.4'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: rspec
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ~>
32
+ - - "~>"
37
33
  - !ruby/object:Gem::Version
38
34
  version: '3.2'
39
35
  type: :development
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ~>
39
+ - - "~>"
45
40
  - !ruby/object:Gem::Version
46
41
  version: '3.2'
47
42
  - !ruby/object:Gem::Dependency
48
43
  name: simplecov
49
44
  requirement: !ruby/object:Gem::Requirement
50
- none: false
51
45
  requirements:
52
- - - ~>
46
+ - - "~>"
53
47
  - !ruby/object:Gem::Version
54
48
  version: '0.7'
55
49
  type: :development
56
50
  prerelease: false
57
51
  version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
52
  requirements:
60
- - - ~>
53
+ - - "~>"
61
54
  - !ruby/object:Gem::Version
62
55
  version: '0.7'
63
56
  description:
@@ -69,8 +62,8 @@ extra_rdoc_files:
69
62
  - README.md
70
63
  - CHANGES
71
64
  files:
72
- - .gitignore
73
- - .travis.yml
65
+ - ".gitignore"
66
+ - ".travis.yml"
74
67
  - CHANGES
75
68
  - Gemfile
76
69
  - LICENSE
@@ -106,38 +99,31 @@ files:
106
99
  homepage: http://github.com/jarmo/require_all
107
100
  licenses:
108
101
  - MIT
102
+ metadata: {}
109
103
  post_install_message:
110
104
  rdoc_options:
111
- - --title
105
+ - "--title"
112
106
  - require_all
113
- - --main
107
+ - "--main"
114
108
  - README.md
115
- - --line-numbers
109
+ - "--line-numbers"
116
110
  require_paths:
117
111
  - lib
118
112
  required_ruby_version: !ruby/object:Gem::Requirement
119
- none: false
120
113
  requirements:
121
- - - ! '>='
114
+ - - ">="
122
115
  - !ruby/object:Gem::Version
123
116
  version: '0'
124
- segments:
125
- - 0
126
- hash: -3238378382384055295
127
117
  required_rubygems_version: !ruby/object:Gem::Requirement
128
- none: false
129
118
  requirements:
130
- - - ! '>='
119
+ - - ">="
131
120
  - !ruby/object:Gem::Version
132
121
  version: '0'
133
- segments:
134
- - 0
135
- hash: -3238378382384055295
136
122
  requirements: []
137
123
  rubyforge_project:
138
- rubygems_version: 1.8.23.2
124
+ rubygems_version: 2.5.2
139
125
  signing_key:
140
- specification_version: 3
126
+ specification_version: 4
141
127
  summary: A wonderfully simple way to load your code
142
128
  test_files:
143
129
  - spec/autoload_shared.rb