range_extd 0.3.0 → 0.4
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 +5 -5
- data/.gitignore +55 -0
- data/ChangeLog +14 -1
- data/Makefile +23 -0
- data/News +4 -0
- data/README.en.rdoc +398 -11
- data/README.ja.rdoc +89 -22
- data/lib/range_extd/infinity/infinity.rb +8 -6
- data/lib/range_extd/range_extd.rb +159 -20
- data/test/test_range_extd.rb +160 -59
- metadata +13 -13
- data/range_extd.gemspec +0 -48
data/range_extd.gemspec
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = %q{range_extd}
|
5
|
-
s.version = "0.3.0"
|
6
|
-
# s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
7
|
-
# s.executables << 'hola'
|
8
|
-
# s.bindir = 'bin'
|
9
|
-
s.authors = ["Masa Sakano"]
|
10
|
-
s.date = %q{2014-05-02}
|
11
|
-
s.summary = %q{RangeExtd - Extended Range class with exclude_begin and open-ends}
|
12
|
-
s.description = %q{Package for a subclass of Range, RangeExtd and RangeExtd::Infinity. The former defines a range that enables an exclusion of the begin boundary, in addition to the end boundary as in the built-in Range, and accepts open-ended ranges to infinity for either (or both) positive/negative direction. The latter has the two constant objects, POSITIVE and NEGATIVE, and they are a generalised Infinity of Float::INFINITY to any Comparable objects.}
|
13
|
-
# s.email = %q{abc@example.com}
|
14
|
-
s.extra_rdoc_files = [
|
15
|
-
# "LICENSE",
|
16
|
-
"README.en.rdoc",
|
17
|
-
"README.ja.rdoc",
|
18
|
-
]
|
19
|
-
s.license = 'MIT'
|
20
|
-
s.files = [
|
21
|
-
#".document",
|
22
|
-
#".gitignore",
|
23
|
-
#"VERSION",
|
24
|
-
"News",
|
25
|
-
"ChangeLog",
|
26
|
-
"README.en.rdoc",
|
27
|
-
"README.ja.rdoc",
|
28
|
-
"Rakefile",
|
29
|
-
"range_extd.gemspec",
|
30
|
-
"lib/range_extd/range_extd.rb",
|
31
|
-
"lib/range_extd/infinity/infinity.rb",
|
32
|
-
"test/test_range_extd.rb",
|
33
|
-
]
|
34
|
-
# s.add_runtime_dependency 'library', '~> 2.2', '>= 2.2.1' # 2.2.1 <= Ver < 2.3.0
|
35
|
-
# s.add_development_dependency "bourne", [">= 0"]
|
36
|
-
# s.homepage = %q{http://}
|
37
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
38
|
-
# s.require_paths = ["lib"]
|
39
|
-
s.required_ruby_version = '>= 2.0'
|
40
|
-
s.test_files = [
|
41
|
-
"test/test_range_extd.rb",
|
42
|
-
]
|
43
|
-
# s.test_files = Dir.glob('test/tc_*.rb')
|
44
|
-
# s.requirements << 'libmagick, v6.0' # Simply, info to users.
|
45
|
-
# s.rubygems_version = %q{1.3.5} # This is always set automatically!!
|
46
|
-
|
47
|
-
end
|
48
|
-
|