multi_range 1.0.0 → 1.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/.gitignore +60 -60
- data/.rubocop.yml +1174 -1174
- data/.travis.yml +29 -29
- data/CHANGELOG.md +26 -16
- data/CODE_OF_CONDUCT.md +49 -49
- data/LICENSE +21 -21
- data/README.md +219 -198
- data/Rakefile +10 -10
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/gemfiles/Gemfile +9 -9
- data/gemfiles/ruby_1_8_7.gemfile +10 -10
- data/lib/multi_range.rb +174 -143
- data/lib/multi_range/version.rb +5 -5
- data/multi_range.gemspec +43 -43
- metadata +7 -7
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: multi_range
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- khiav reoy
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -86,8 +86,8 @@ dependencies:
|
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: 1.1.1
|
89
|
-
description:
|
90
|
-
|
89
|
+
description: Allow you to manipulate a group of ranges. Such as merging overlapping
|
90
|
+
ranges, doing ranges union and difference.
|
91
91
|
email:
|
92
92
|
- mrtmrt15xn@yahoo.com.tw
|
93
93
|
executables: []
|
@@ -133,9 +133,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
133
|
- !ruby/object:Gem::Version
|
134
134
|
version: '0'
|
135
135
|
requirements: []
|
136
|
-
rubygems_version: 3.
|
136
|
+
rubygems_version: 3.2.14
|
137
137
|
signing_key:
|
138
138
|
specification_version: 4
|
139
|
-
summary:
|
140
|
-
|
139
|
+
summary: Allow you to manipulate a group of ranges. Such as merging overlapping ranges,
|
140
|
+
doing ranges union and difference.
|
141
141
|
test_files: []
|