multi_range 1.3.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +60 -60
- data/.rubocop.yml +1174 -1174
- data/.travis.yml +25 -29
- data/CHANGELOG.md +26 -26
- data/CODE_OF_CONDUCT.md +49 -49
- data/LICENSE +21 -21
- data/README.md +238 -219
- data/Rakefile +10 -10
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/gemfiles/Gemfile +9 -9
- data/lib/multi_range/version.rb +5 -5
- data/lib/multi_range.rb +222 -174
- data/multi_range.gemspec +47 -43
- metadata +32 -5
- data/gemfiles/ruby_1_8_7.gemfile +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b6430c0f1e34bd416c5ac86b7427a287b980282604b7220a518feb8eb90e3d3
|
4
|
+
data.tar.gz: 01f8ca6da27bc8a960ef531e114cdfc15296fac6af91e4e588642a11b7b56ac7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a14a3bee4fece94aa0c39a8fcdd614dfcd94afe771a7075f84e33093cf3a0e5e8990029685f09bc89b13c93d1ce89b82bc527c0f120f43f0238e39e902fd6a28
|
7
|
+
data.tar.gz: 513bba26a2dee77e82720214102e9231390954e94cdf36cff610066578179ea67498bfd29576ceb9177362981f34baad2abdddca877f782dc0b47123523e71b0
|
data/.gitignore
CHANGED
@@ -1,60 +1,60 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
/.config
|
4
|
-
/.bundle/
|
5
|
-
/.yardoc
|
6
|
-
/_yardoc/
|
7
|
-
/coverage/
|
8
|
-
/InstalledFiles
|
9
|
-
/doc/
|
10
|
-
/pkg/
|
11
|
-
/spec/reports/
|
12
|
-
/spec/examples.txt
|
13
|
-
/test/tmp/
|
14
|
-
/test/version_tmp/
|
15
|
-
/tmp/
|
16
|
-
|
17
|
-
# Used by dotenv library to load environment variables.
|
18
|
-
# .env
|
19
|
-
|
20
|
-
# Ignore Byebug command history file.
|
21
|
-
.byebug_history
|
22
|
-
|
23
|
-
## Specific to RubyMotion:
|
24
|
-
.dat*
|
25
|
-
.repl_history
|
26
|
-
build/
|
27
|
-
*.bridgesupport
|
28
|
-
build-iPhoneOS/
|
29
|
-
build-iPhoneSimulator/
|
30
|
-
|
31
|
-
## Specific to RubyMotion (use of CocoaPods):
|
32
|
-
#
|
33
|
-
# We recommend against adding the Pods directory to your .gitignore. However
|
34
|
-
# you should judge for yourself, the pros and cons are mentioned at:
|
35
|
-
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
36
|
-
#
|
37
|
-
# vendor/Pods/
|
38
|
-
|
39
|
-
## Documentation cache and generated files:
|
40
|
-
/.yardoc/
|
41
|
-
/_yardoc/
|
42
|
-
/doc/
|
43
|
-
/rdoc/
|
44
|
-
|
45
|
-
## Environment normalization:
|
46
|
-
/.bundle/
|
47
|
-
/vendor/bundle
|
48
|
-
/lib/bundler/man/
|
49
|
-
|
50
|
-
# for a library or gem, you might want to ignore these files since the code is
|
51
|
-
# intended to run in multiple environments; otherwise, check them in:
|
52
|
-
Gemfile.lock
|
53
|
-
.ruby-version
|
54
|
-
.ruby-gemset
|
55
|
-
|
56
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
57
|
-
.rvmrc
|
58
|
-
|
59
|
-
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
60
|
-
# .rubocop-https?--*
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/.bundle/
|
5
|
+
/.yardoc
|
6
|
+
/_yardoc/
|
7
|
+
/coverage/
|
8
|
+
/InstalledFiles
|
9
|
+
/doc/
|
10
|
+
/pkg/
|
11
|
+
/spec/reports/
|
12
|
+
/spec/examples.txt
|
13
|
+
/test/tmp/
|
14
|
+
/test/version_tmp/
|
15
|
+
/tmp/
|
16
|
+
|
17
|
+
# Used by dotenv library to load environment variables.
|
18
|
+
# .env
|
19
|
+
|
20
|
+
# Ignore Byebug command history file.
|
21
|
+
.byebug_history
|
22
|
+
|
23
|
+
## Specific to RubyMotion:
|
24
|
+
.dat*
|
25
|
+
.repl_history
|
26
|
+
build/
|
27
|
+
*.bridgesupport
|
28
|
+
build-iPhoneOS/
|
29
|
+
build-iPhoneSimulator/
|
30
|
+
|
31
|
+
## Specific to RubyMotion (use of CocoaPods):
|
32
|
+
#
|
33
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
34
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
35
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
36
|
+
#
|
37
|
+
# vendor/Pods/
|
38
|
+
|
39
|
+
## Documentation cache and generated files:
|
40
|
+
/.yardoc/
|
41
|
+
/_yardoc/
|
42
|
+
/doc/
|
43
|
+
/rdoc/
|
44
|
+
|
45
|
+
## Environment normalization:
|
46
|
+
/.bundle/
|
47
|
+
/vendor/bundle
|
48
|
+
/lib/bundler/man/
|
49
|
+
|
50
|
+
# for a library or gem, you might want to ignore these files since the code is
|
51
|
+
# intended to run in multiple environments; otherwise, check them in:
|
52
|
+
Gemfile.lock
|
53
|
+
.ruby-version
|
54
|
+
.ruby-gemset
|
55
|
+
|
56
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
57
|
+
.rvmrc
|
58
|
+
|
59
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
60
|
+
# .rubocop-https?--*
|