rdl 1.0.0.rc3 → 1.0.0.rc4
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 +44 -0
- data/.travis.yml +19 -0
- data/LICENSE +29 -0
- data/README.md +509 -0
- data/Rakefile +27 -0
- data/gemfiles/Gemfile.travis +5 -0
- data/lib/rdl/wrap.rb +1 -1
- data/lib/rdl_types.rb +4 -2
- data/rdl.gemspec +23 -0
- data/test/disabled_test_coverage.rb +156 -0
- data/test/disabled_test_rdoc.rb +116 -0
- data/test/test_alias.rb +66 -0
- data/test/test_contract.rb +70 -0
- data/test/test_dsl.rb +85 -0
- data/test/test_generic.rb +188 -0
- data/test/test_intersection.rb +41 -0
- data/test/test_le.rb +193 -0
- data/test/test_lib_types.rb +194 -0
- data/test/test_member.rb +148 -0
- data/test/test_parser.rb +196 -0
- data/test/test_rdl.rb +301 -0
- data/test/test_rdl_type.rb +70 -0
- data/test/test_type_contract.rb +187 -0
- data/test/test_types.rb +221 -0
- data/test/test_wrap.rb +46 -0
- data/types/{ruby-2.2.0 → ruby-2.x}/_aliases.rb +0 -0
- data/types/{ruby-2.2.0 → ruby-2.x}/abbrev.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/array.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/base64.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/basic_object.rb +2 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/benchmark.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/bigdecimal.rb +4 -4
- data/types/{ruby-2.2.0 → ruby-2.x}/bigmath.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/class.rb +3 -3
- data/types/{ruby-2.2.0 → ruby-2.x}/complex.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/coverage.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/csv.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/date.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/dir.rb +3 -3
- data/types/{ruby-2.2.0 → ruby-2.x}/encoding.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/enumerable.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/enumerator.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/exception.rb +2 -0
- data/types/{ruby-2.2.0 → ruby-2.x}/file.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/fileutils.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/fixnum.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/float.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/gem.rb +3 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/hash.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/integer.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/io.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/kernel.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/marshal.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/matchdata.rb +3 -3
- data/types/{ruby-2.2.0 → ruby-2.x}/math.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/numeric.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/object.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/pathname.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/process.rb +8 -8
- data/types/{ruby-2.2.0 → ruby-2.x}/random.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/range.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/rational.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/regexp.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/set.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/string.rb +1 -1
- data/types/{ruby-2.2.0 → ruby-2.x}/strscan.rb +3 -3
- data/types/{ruby-2.2.0 → ruby-2.x}/symbol.rb +2 -2
- data/types/{ruby-2.2.0 → ruby-2.x}/time.rb +2 -2
- data/types/ruby-2.x/uri.rb +20 -0
- data/types/{ruby-2.2.0 → ruby-2.x}/yaml.rb +3 -3
- metadata +70 -51
- data/lib/rdl/types/wild.rb +0 -26
- data/types/other/chronic.rb +0 -5
- data/types/other/paperclip_attachment.rb +0 -7
- data/types/other/securerandom.rb +0 -4
- data/types/ruby-2.2.0/uri.rb +0 -18
@@ -1,5 +1,5 @@
|
|
1
1
|
class File
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.absolute_path', '(String file, ?String dir) -> String abs_file'
|
5
5
|
type 'self.atime', '(%path or IO file) -> Time'
|
@@ -121,4 +121,4 @@ class File
|
|
121
121
|
type :writable_real?, '() -> %bool'
|
122
122
|
type :zero?, '() -> %bool'
|
123
123
|
end
|
124
|
-
end
|
124
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module FileUtils
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type('self.cp_r', '(String or Pathname, String or Pathname, ?Hash<:preserve or :noop or :verbose or :dereference_root or :remove_destination, %bool>) -> Array<String>')
|
5
5
|
type('self.mkdir_p', '(String or Pathname, ?Hash<:mode or :noop or :verbose, %bool>) -> Array<String>')
|
@@ -1,4 +1,6 @@
|
|
1
1
|
module Gem
|
2
|
+
rdl_nowrap
|
3
|
+
|
2
4
|
type 'self.bin_path', '(String name, ?String exec_name, *Gem::Requirement requirements) -> String'
|
3
5
|
type 'self.binary_mode', '() -> String'
|
4
6
|
type 'self.bindir', '(?String install_dir) -> String'
|
@@ -242,4 +244,4 @@ module Gem
|
|
242
244
|
type 'yaml_initialize', '() -> '
|
243
245
|
end
|
244
246
|
=end
|
245
|
-
end
|
247
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Integer
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
rdl_alias :ceil, :to_i
|
5
5
|
type :chr, '(?Encoding) -> String'
|
@@ -28,4 +28,4 @@ class Integer
|
|
28
28
|
rdl_alias :truncate, :to_i
|
29
29
|
type :upto, '(Integer limit) { (Integer) -> %any } -> self'
|
30
30
|
type :upto, '(Integer limit) -> Enumerator<Integer>'
|
31
|
-
end
|
31
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class IO
|
2
|
-
|
2
|
+
rdl_nowrap # Do not wrap this class. Leads to mysterious errors.
|
3
3
|
|
4
4
|
type 'self.binread', '(String name, ?Fixnum length, ?Fixnum offset) -> String'
|
5
5
|
type 'self.binwrite', '(String name, String, ?Fixnum offset, %open_args) -> Fixnum'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class MatchData
|
2
|
-
|
3
|
-
|
2
|
+
rdl_nowrap
|
3
|
+
|
4
4
|
type :==, '(%any) -> %bool'
|
5
5
|
type :[], '(Fixnum i) -> String or nil'
|
6
6
|
type :[], '(Fixnum start, Fixnum length) -> Array<String>'
|
@@ -23,4 +23,4 @@ class MatchData
|
|
23
23
|
type :to_a, '() -> Array<String>'
|
24
24
|
type :to_s, '() -> String'
|
25
25
|
type :values_at, '(*Fixnum indexes) -> Array<String>'
|
26
|
-
end
|
26
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Math
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.acos', '(%real x) -> Float'
|
5
5
|
pre('self.acos') { |x| -1 <= x && x <= 1 }
|
@@ -50,4 +50,4 @@ module Math
|
|
50
50
|
type 'self.tanh', '(%real x) -> Float'
|
51
51
|
post('self.tanh') { |r, _| -1 < r && r < 1 }
|
52
52
|
|
53
|
-
end
|
53
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Pathname
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.getwd', '() -> Pathname'
|
5
5
|
type 'self.glob', '(String p1, ?String p2) -> Array<Pathname>'
|
@@ -103,4 +103,4 @@ class Pathname
|
|
103
103
|
type :writable_real?, '() -> %bool'
|
104
104
|
type :write, '(String, ?Fixnum offset, ?Fixnum open_args) -> Fixnum'
|
105
105
|
type :zero?, '() -> %bool'
|
106
|
-
end
|
106
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Process
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.abort', '(?String msg) -> %any'
|
5
5
|
type 'self.argv0', '() -> String frozen_string'
|
@@ -47,7 +47,7 @@ module Process
|
|
47
47
|
type 'self.waitpid2', '(?Fixnum pid, ?Fixnum flags) -> [Fixnum, Fixnum] pid_and_status'
|
48
48
|
|
49
49
|
module GID
|
50
|
-
|
50
|
+
rdl_nowrap
|
51
51
|
|
52
52
|
type 'self.change_privilege', '(Fixnum group) -> Fixnum'
|
53
53
|
type 'self.eid', '() -> Fixnum'
|
@@ -63,8 +63,8 @@ module Process
|
|
63
63
|
end
|
64
64
|
|
65
65
|
module UID
|
66
|
-
|
67
|
-
|
66
|
+
rdl_nowrap
|
67
|
+
|
68
68
|
type 'self.change_privilege', '(Fixnum user) -> Fixnum'
|
69
69
|
type 'self.eid', '() -> Fixnum'
|
70
70
|
type 'self.from_name', '(String name) -> Fixnum uid'
|
@@ -79,7 +79,7 @@ module Process
|
|
79
79
|
end
|
80
80
|
|
81
81
|
class Status
|
82
|
-
|
82
|
+
rdl_nowrap
|
83
83
|
|
84
84
|
type :&, '(Fixnum num) -> Fixnum'
|
85
85
|
type :==, '(%any other) -> %bool'
|
@@ -100,7 +100,7 @@ module Process
|
|
100
100
|
end
|
101
101
|
|
102
102
|
module Sys
|
103
|
-
|
103
|
+
rdl_nowrap
|
104
104
|
|
105
105
|
type 'self.geteid', '() -> Fixnum'
|
106
106
|
type 'self.geteuid', '() -> Fixnum'
|
@@ -120,8 +120,8 @@ module Process
|
|
120
120
|
end
|
121
121
|
|
122
122
|
class Waiter
|
123
|
-
|
123
|
+
rdl_nowrap
|
124
124
|
|
125
125
|
type 'pid', '() -> Fixnum'
|
126
126
|
end
|
127
|
-
end
|
127
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Random
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.new', '(?Integer seed) -> Random' # Floats can be passed also, but just truncated to int?
|
5
5
|
type 'self.new_seed', '() -> Integer'
|
@@ -12,4 +12,4 @@ class Random
|
|
12
12
|
type :rand, '(?(Float or Range<Float>) max) -> Float'
|
13
13
|
pre(:rand) { |max| max > 0 }
|
14
14
|
type :seed, '() -> Integer'
|
15
|
-
end
|
15
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Range
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type_params([:t], nil) { |t| t.member?(self.begin) && t.member?(self.end) } # TODO: And instantiated if t instantiated
|
5
5
|
|
@@ -35,4 +35,4 @@ class Range
|
|
35
35
|
type :step, '(?Fixnum n) { (u) -> %any } -> self'
|
36
36
|
type :step, '(?Fixnum n) -> Enumerator<u>'
|
37
37
|
type :to_s, '() -> String'
|
38
|
-
end
|
38
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Rational
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type :*, '(Numeric) -> Numeric'
|
5
5
|
type :**, '(Numeric) -> Numeric'
|
@@ -28,4 +28,4 @@ class Rational
|
|
28
28
|
type :to_s, '() -> String'
|
29
29
|
type :truncate, '() -> Integer'
|
30
30
|
type :truncate, '(Fixnum precision) -> Rational'
|
31
|
-
end
|
31
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Regexp
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.escape', '(String or Symbol) -> String'
|
5
5
|
type 'self.last_match', '() -> MatchData' # Can't wrap or screws up MatchData
|
@@ -27,4 +27,4 @@ class Regexp
|
|
27
27
|
type :source, '() -> String'
|
28
28
|
type :to_s, '() -> String'
|
29
29
|
type :~, '() -> Fixnum or nil'
|
30
|
-
end
|
30
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Symbol
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.all_symbols', '() -> Array<Symbol>'
|
5
5
|
type :<=>, '(Symbol other) -> Fixnum or nil'
|
@@ -26,4 +26,4 @@ class Symbol
|
|
26
26
|
rdl_alias :to_s, :id2name
|
27
27
|
rdl_alias :to_sym, :intern
|
28
28
|
type :upcase, '() -> Symbol'
|
29
|
-
end
|
29
|
+
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class Time
|
2
|
-
|
2
|
+
rdl_nowrap
|
3
3
|
|
4
4
|
type 'self.at', '(Time) -> Time'
|
5
5
|
type 'self.at', '(Numeric seconds_with_frac) -> Time'
|
@@ -65,4 +65,4 @@ class Time
|
|
65
65
|
type :yday, '() -> Fixnum'
|
66
66
|
type :year, '() -> Fixnum'
|
67
67
|
type :zone, '() -> String'
|
68
|
-
end
|
68
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module URI
|
2
|
+
rdl_nowrap
|
3
|
+
|
4
|
+
type :decode_www_form, '(String, ?Encoding, ?String separator, %bool use_charset, %bool isindex) -> Array<[String,String]>'
|
5
|
+
type :decode_www_form_component, '(String, ?Encoding) -> Array<[String,String]>'
|
6
|
+
# type 'encode_www_form', '(Array<Array<String>>, ?) -> String' #Doublesplat
|
7
|
+
# type 'encode_www_form_component', '(String, ?) -> String'
|
8
|
+
type :extract, '(String, ?Array) { (*%any) -> %any} -> Array<String>'
|
9
|
+
type :join, '(*String) -> URI::HTTP'
|
10
|
+
type :parse, '(String) -> URI::HTTP'
|
11
|
+
type :regexp, '(?Array schemes) -> Array<String>' #Assume schemes are strings
|
12
|
+
type :scheme_list, '() -> Hash<String,Class>'
|
13
|
+
type :split, '(String) -> Array<String or nil>'
|
14
|
+
|
15
|
+
type :escape, '(String, *Regexp) -> String'
|
16
|
+
type :escape, '(String, *String) -> String'
|
17
|
+
type :unescape, '(*String) -> String'
|
18
|
+
rdl_alias :encode, :escape
|
19
|
+
rdl_alias :decode, :unescape
|
20
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeffrey S. Foster
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
- !ruby/object:Gem::Version
|
35
35
|
version: 1.3.3
|
36
36
|
description: |
|
37
|
-
RDL
|
37
|
+
RDL is a gem that allows contracts (pre- and postconditions) to be added to methods.
|
38
38
|
Preconditions are checked at run time when the method is called, and
|
39
39
|
postconditions are checked at run time when the method returns.
|
40
40
|
RDL also includes extensive support for type contracts, which check the types of arguments and returns
|
@@ -45,6 +45,12 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- ".travis.yml"
|
50
|
+
- LICENSE
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- gemfiles/Gemfile.travis
|
48
54
|
- lib/rails_types.rb
|
49
55
|
- lib/rdl.rb
|
50
56
|
- lib/rdl/config.rb
|
@@ -75,63 +81,76 @@ files:
|
|
75
81
|
- lib/rdl/types/union.rb
|
76
82
|
- lib/rdl/types/var.rb
|
77
83
|
- lib/rdl/types/vararg.rb
|
78
|
-
- lib/rdl/types/wild.rb
|
79
84
|
- lib/rdl/util.rb
|
80
85
|
- lib/rdl/wrap.rb
|
81
86
|
- lib/rdl_types.rb
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
87
|
+
- rdl.gemspec
|
88
|
+
- test/disabled_test_coverage.rb
|
89
|
+
- test/disabled_test_rdoc.rb
|
90
|
+
- test/test_alias.rb
|
91
|
+
- test/test_contract.rb
|
92
|
+
- test/test_dsl.rb
|
93
|
+
- test/test_generic.rb
|
94
|
+
- test/test_intersection.rb
|
95
|
+
- test/test_le.rb
|
96
|
+
- test/test_lib_types.rb
|
97
|
+
- test/test_member.rb
|
98
|
+
- test/test_parser.rb
|
99
|
+
- test/test_rdl.rb
|
100
|
+
- test/test_rdl_type.rb
|
101
|
+
- test/test_type_contract.rb
|
102
|
+
- test/test_types.rb
|
103
|
+
- test/test_wrap.rb
|
85
104
|
- types/rails-4.2.1/fixnum.rb
|
86
105
|
- types/rails-4.2.1/string.rb
|
87
106
|
- types/rails-tmp/action_dispatch.rb
|
88
107
|
- types/rails-tmp/active_record.rb
|
89
108
|
- types/rails-tmp/devise_contracts.rb
|
90
|
-
- types/ruby-2.
|
91
|
-
- types/ruby-2.
|
92
|
-
- types/ruby-2.
|
93
|
-
- types/ruby-2.
|
94
|
-
- types/ruby-2.
|
95
|
-
- types/ruby-2.
|
96
|
-
- types/ruby-2.
|
97
|
-
- types/ruby-2.
|
98
|
-
- types/ruby-2.
|
99
|
-
- types/ruby-2.
|
100
|
-
- types/ruby-2.
|
101
|
-
- types/ruby-2.
|
102
|
-
- types/ruby-2.
|
103
|
-
- types/ruby-2.
|
104
|
-
- types/ruby-2.
|
105
|
-
- types/ruby-2.
|
106
|
-
- types/ruby-2.
|
107
|
-
- types/ruby-2.
|
108
|
-
- types/ruby-2.
|
109
|
-
- types/ruby-2.
|
110
|
-
- types/ruby-2.
|
111
|
-
- types/ruby-2.
|
112
|
-
- types/ruby-2.
|
113
|
-
- types/ruby-2.
|
114
|
-
- types/ruby-2.
|
115
|
-
- types/ruby-2.
|
116
|
-
- types/ruby-2.
|
117
|
-
- types/ruby-2.
|
118
|
-
- types/ruby-2.
|
119
|
-
- types/ruby-2.
|
120
|
-
- types/ruby-2.
|
121
|
-
- types/ruby-2.
|
122
|
-
- types/ruby-2.
|
123
|
-
- types/ruby-2.
|
124
|
-
- types/ruby-2.
|
125
|
-
- types/ruby-2.
|
126
|
-
- types/ruby-2.
|
127
|
-
- types/ruby-2.
|
128
|
-
- types/ruby-2.
|
129
|
-
- types/ruby-2.
|
130
|
-
- types/ruby-2.
|
131
|
-
- types/ruby-2.
|
132
|
-
- types/ruby-2.
|
133
|
-
- types/ruby-2.
|
134
|
-
- types/ruby-2.
|
109
|
+
- types/ruby-2.x/_aliases.rb
|
110
|
+
- types/ruby-2.x/abbrev.rb
|
111
|
+
- types/ruby-2.x/array.rb
|
112
|
+
- types/ruby-2.x/base64.rb
|
113
|
+
- types/ruby-2.x/basic_object.rb
|
114
|
+
- types/ruby-2.x/benchmark.rb
|
115
|
+
- types/ruby-2.x/bigdecimal.rb
|
116
|
+
- types/ruby-2.x/bigmath.rb
|
117
|
+
- types/ruby-2.x/class.rb
|
118
|
+
- types/ruby-2.x/complex.rb
|
119
|
+
- types/ruby-2.x/coverage.rb
|
120
|
+
- types/ruby-2.x/csv.rb
|
121
|
+
- types/ruby-2.x/date.rb
|
122
|
+
- types/ruby-2.x/dir.rb
|
123
|
+
- types/ruby-2.x/encoding.rb
|
124
|
+
- types/ruby-2.x/enumerable.rb
|
125
|
+
- types/ruby-2.x/enumerator.rb
|
126
|
+
- types/ruby-2.x/exception.rb
|
127
|
+
- types/ruby-2.x/file.rb
|
128
|
+
- types/ruby-2.x/fileutils.rb
|
129
|
+
- types/ruby-2.x/fixnum.rb
|
130
|
+
- types/ruby-2.x/float.rb
|
131
|
+
- types/ruby-2.x/gem.rb
|
132
|
+
- types/ruby-2.x/hash.rb
|
133
|
+
- types/ruby-2.x/integer.rb
|
134
|
+
- types/ruby-2.x/io.rb
|
135
|
+
- types/ruby-2.x/kernel.rb
|
136
|
+
- types/ruby-2.x/marshal.rb
|
137
|
+
- types/ruby-2.x/matchdata.rb
|
138
|
+
- types/ruby-2.x/math.rb
|
139
|
+
- types/ruby-2.x/numeric.rb
|
140
|
+
- types/ruby-2.x/object.rb
|
141
|
+
- types/ruby-2.x/pathname.rb
|
142
|
+
- types/ruby-2.x/process.rb
|
143
|
+
- types/ruby-2.x/random.rb
|
144
|
+
- types/ruby-2.x/range.rb
|
145
|
+
- types/ruby-2.x/rational.rb
|
146
|
+
- types/ruby-2.x/regexp.rb
|
147
|
+
- types/ruby-2.x/set.rb
|
148
|
+
- types/ruby-2.x/string.rb
|
149
|
+
- types/ruby-2.x/strscan.rb
|
150
|
+
- types/ruby-2.x/symbol.rb
|
151
|
+
- types/ruby-2.x/time.rb
|
152
|
+
- types/ruby-2.x/uri.rb
|
153
|
+
- types/ruby-2.x/yaml.rb
|
135
154
|
homepage: https://github.com/plum-umd/rdl
|
136
155
|
licenses:
|
137
156
|
- BSD-3-Clause
|