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.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +44 -0
  3. data/.travis.yml +19 -0
  4. data/LICENSE +29 -0
  5. data/README.md +509 -0
  6. data/Rakefile +27 -0
  7. data/gemfiles/Gemfile.travis +5 -0
  8. data/lib/rdl/wrap.rb +1 -1
  9. data/lib/rdl_types.rb +4 -2
  10. data/rdl.gemspec +23 -0
  11. data/test/disabled_test_coverage.rb +156 -0
  12. data/test/disabled_test_rdoc.rb +116 -0
  13. data/test/test_alias.rb +66 -0
  14. data/test/test_contract.rb +70 -0
  15. data/test/test_dsl.rb +85 -0
  16. data/test/test_generic.rb +188 -0
  17. data/test/test_intersection.rb +41 -0
  18. data/test/test_le.rb +193 -0
  19. data/test/test_lib_types.rb +194 -0
  20. data/test/test_member.rb +148 -0
  21. data/test/test_parser.rb +196 -0
  22. data/test/test_rdl.rb +301 -0
  23. data/test/test_rdl_type.rb +70 -0
  24. data/test/test_type_contract.rb +187 -0
  25. data/test/test_types.rb +221 -0
  26. data/test/test_wrap.rb +46 -0
  27. data/types/{ruby-2.2.0 → ruby-2.x}/_aliases.rb +0 -0
  28. data/types/{ruby-2.2.0 → ruby-2.x}/abbrev.rb +2 -2
  29. data/types/{ruby-2.2.0 → ruby-2.x}/array.rb +2 -2
  30. data/types/{ruby-2.2.0 → ruby-2.x}/base64.rb +2 -2
  31. data/types/{ruby-2.2.0 → ruby-2.x}/basic_object.rb +2 -1
  32. data/types/{ruby-2.2.0 → ruby-2.x}/benchmark.rb +2 -2
  33. data/types/{ruby-2.2.0 → ruby-2.x}/bigdecimal.rb +4 -4
  34. data/types/{ruby-2.2.0 → ruby-2.x}/bigmath.rb +2 -2
  35. data/types/{ruby-2.2.0 → ruby-2.x}/class.rb +3 -3
  36. data/types/{ruby-2.2.0 → ruby-2.x}/complex.rb +2 -2
  37. data/types/{ruby-2.2.0 → ruby-2.x}/coverage.rb +2 -2
  38. data/types/{ruby-2.2.0 → ruby-2.x}/csv.rb +2 -2
  39. data/types/{ruby-2.2.0 → ruby-2.x}/date.rb +2 -2
  40. data/types/{ruby-2.2.0 → ruby-2.x}/dir.rb +3 -3
  41. data/types/{ruby-2.2.0 → ruby-2.x}/encoding.rb +2 -2
  42. data/types/{ruby-2.2.0 → ruby-2.x}/enumerable.rb +2 -2
  43. data/types/{ruby-2.2.0 → ruby-2.x}/enumerator.rb +1 -1
  44. data/types/{ruby-2.2.0 → ruby-2.x}/exception.rb +2 -0
  45. data/types/{ruby-2.2.0 → ruby-2.x}/file.rb +2 -2
  46. data/types/{ruby-2.2.0 → ruby-2.x}/fileutils.rb +1 -1
  47. data/types/{ruby-2.2.0 → ruby-2.x}/fixnum.rb +2 -2
  48. data/types/{ruby-2.2.0 → ruby-2.x}/float.rb +2 -2
  49. data/types/{ruby-2.2.0 → ruby-2.x}/gem.rb +3 -1
  50. data/types/{ruby-2.2.0 → ruby-2.x}/hash.rb +2 -2
  51. data/types/{ruby-2.2.0 → ruby-2.x}/integer.rb +2 -2
  52. data/types/{ruby-2.2.0 → ruby-2.x}/io.rb +1 -1
  53. data/types/{ruby-2.2.0 → ruby-2.x}/kernel.rb +1 -1
  54. data/types/{ruby-2.2.0 → ruby-2.x}/marshal.rb +2 -2
  55. data/types/{ruby-2.2.0 → ruby-2.x}/matchdata.rb +3 -3
  56. data/types/{ruby-2.2.0 → ruby-2.x}/math.rb +2 -2
  57. data/types/{ruby-2.2.0 → ruby-2.x}/numeric.rb +2 -2
  58. data/types/{ruby-2.2.0 → ruby-2.x}/object.rb +1 -1
  59. data/types/{ruby-2.2.0 → ruby-2.x}/pathname.rb +2 -2
  60. data/types/{ruby-2.2.0 → ruby-2.x}/process.rb +8 -8
  61. data/types/{ruby-2.2.0 → ruby-2.x}/random.rb +2 -2
  62. data/types/{ruby-2.2.0 → ruby-2.x}/range.rb +2 -2
  63. data/types/{ruby-2.2.0 → ruby-2.x}/rational.rb +2 -2
  64. data/types/{ruby-2.2.0 → ruby-2.x}/regexp.rb +2 -2
  65. data/types/{ruby-2.2.0 → ruby-2.x}/set.rb +2 -2
  66. data/types/{ruby-2.2.0 → ruby-2.x}/string.rb +1 -1
  67. data/types/{ruby-2.2.0 → ruby-2.x}/strscan.rb +3 -3
  68. data/types/{ruby-2.2.0 → ruby-2.x}/symbol.rb +2 -2
  69. data/types/{ruby-2.2.0 → ruby-2.x}/time.rb +2 -2
  70. data/types/ruby-2.x/uri.rb +20 -0
  71. data/types/{ruby-2.2.0 → ruby-2.x}/yaml.rb +3 -3
  72. metadata +70 -51
  73. data/lib/rdl/types/wild.rb +0 -26
  74. data/types/other/chronic.rb +0 -5
  75. data/types/other/paperclip_attachment.rb +0 -7
  76. data/types/other/securerandom.rb +0 -4
  77. data/types/ruby-2.2.0/uri.rb +0 -18
@@ -1,5 +1,5 @@
1
1
  class Enumerator
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type_params [:t], :all?
5
5
 
@@ -1,4 +1,6 @@
1
1
  class Exception
2
+ rdl_nowrap
3
+
2
4
  type '==', '(%any) -> %bool'
3
5
  type 'backtrace', '() -> Array<String>'
4
6
  type 'backtrace_locations', '() -> Array<Thread::Backtrace::Location>'
@@ -1,5 +1,5 @@
1
1
  class File
2
- nowrap
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
- nowrap
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,5 +1,5 @@
1
1
  class Fixnum
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type :%, '(Numeric other) -> Numeric'
5
5
  post(:%) { |r, _| r.real? }
@@ -42,4 +42,4 @@ class Fixnum
42
42
  type :to_f, '() -> Float'
43
43
  type :to_s, '(?Fixnum base) -> String'
44
44
  type :zero?, '() -> %bool'
45
- end
45
+ end
@@ -1,5 +1,5 @@
1
1
  class Float
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type :%, '(Numeric other) -> Numeric'
5
5
  type :*, '(Numeric other) -> Numeric'
@@ -51,4 +51,4 @@ class Float
51
51
  type :to_s, '() -> String'
52
52
  type :truncate, '() -> Integer'
53
53
  type :zero?, '() -> %bool'
54
- end
54
+ end
@@ -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,10 +1,10 @@
1
1
  class Hash
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type_params [:k, :v], :all?
5
5
 
6
6
  type 'self.[]', '(Array<Array<u>>) -> Hash<u, u>'
7
-
7
+
8
8
  type :[], '(k) -> v'
9
9
  type :[]=, '(k, v) -> v'
10
10
  type :store, '(k,v) -> v'
@@ -1,5 +1,5 @@
1
1
  class Integer
2
- nowrap
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
- nowrap # Do not wrap this class. Leads to mysterious errors.
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,5 +1,5 @@
1
1
  module Kernel
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  # type 'self.Array', '([to_ary: () -> Array<t>]) -> Array<t>'
5
5
  # type 'self.Array', '([to_a: () -> Array<t>]) -> Array<t>'
@@ -1,5 +1,5 @@
1
1
  module Marshal
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type 'self.load', '(String, ?Proc) -> Object'
5
- end
5
+ end
@@ -1,6 +1,6 @@
1
1
  class MatchData
2
- nowrap
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
- nowrap
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 Numeric
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type :+, '() -> self'
5
5
  type :-, '() -> Numeric'
@@ -43,4 +43,4 @@ class Numeric
43
43
  type :to_int, '() -> Integer'
44
44
  type :truncate, '() -> Integer'
45
45
  type :zero?, '() -> %bool'
46
- end
46
+ end
@@ -1,5 +1,5 @@
1
1
  class Object
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  # type :ARGF, ARGF
5
5
  # type :ARGV, 'Array<String>'
@@ -1,5 +1,5 @@
1
1
  class Pathname
2
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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
- nowrap
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,8 +1,8 @@
1
1
  class Set
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type_params [:t], :all?
5
-
5
+
6
6
  type 'self.[]', '(*u) -> Set<u>'
7
7
  type 'self.new', '(?Enumerable<u> enum) -> Set<u>'
8
8
 
@@ -1,5 +1,5 @@
1
1
  class String
2
- nowrap
2
+ rdl_nowrap
3
3
 
4
4
  type :new, '(?String str) -> String new_str'
5
5
  type :try_convert, '(Object obj) -> String or nil new_string'
@@ -1,7 +1,7 @@
1
1
  class StringScanner
2
- nowrap
3
-
2
+ rdl_nowrap
3
+
4
4
  type :eos?, '() -> %bool'
5
5
  type :scan, '(Regexp) -> String'
6
6
  type :getch, '() -> String'
7
- end
7
+ end
@@ -1,5 +1,5 @@
1
1
  class Symbol
2
- nowrap
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
- nowrap
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
@@ -1,5 +1,5 @@
1
1
  module YAML
2
- nowrap
3
-
2
+ rdl_nowrap
3
+
4
4
  type 'self.load_file', '(String) -> Array<String>'
5
- end
5
+ 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.rc3
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 add support for adding contracts (pre- and postconditions) to methods.
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
- - types/other/chronic.rb
83
- - types/other/paperclip_attachment.rb
84
- - types/other/securerandom.rb
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.2.0/_aliases.rb
91
- - types/ruby-2.2.0/abbrev.rb
92
- - types/ruby-2.2.0/array.rb
93
- - types/ruby-2.2.0/base64.rb
94
- - types/ruby-2.2.0/basic_object.rb
95
- - types/ruby-2.2.0/benchmark.rb
96
- - types/ruby-2.2.0/bigdecimal.rb
97
- - types/ruby-2.2.0/bigmath.rb
98
- - types/ruby-2.2.0/class.rb
99
- - types/ruby-2.2.0/complex.rb
100
- - types/ruby-2.2.0/coverage.rb
101
- - types/ruby-2.2.0/csv.rb
102
- - types/ruby-2.2.0/date.rb
103
- - types/ruby-2.2.0/dir.rb
104
- - types/ruby-2.2.0/encoding.rb
105
- - types/ruby-2.2.0/enumerable.rb
106
- - types/ruby-2.2.0/enumerator.rb
107
- - types/ruby-2.2.0/exception.rb
108
- - types/ruby-2.2.0/file.rb
109
- - types/ruby-2.2.0/fileutils.rb
110
- - types/ruby-2.2.0/fixnum.rb
111
- - types/ruby-2.2.0/float.rb
112
- - types/ruby-2.2.0/gem.rb
113
- - types/ruby-2.2.0/hash.rb
114
- - types/ruby-2.2.0/integer.rb
115
- - types/ruby-2.2.0/io.rb
116
- - types/ruby-2.2.0/kernel.rb
117
- - types/ruby-2.2.0/marshal.rb
118
- - types/ruby-2.2.0/matchdata.rb
119
- - types/ruby-2.2.0/math.rb
120
- - types/ruby-2.2.0/numeric.rb
121
- - types/ruby-2.2.0/object.rb
122
- - types/ruby-2.2.0/pathname.rb
123
- - types/ruby-2.2.0/process.rb
124
- - types/ruby-2.2.0/random.rb
125
- - types/ruby-2.2.0/range.rb
126
- - types/ruby-2.2.0/rational.rb
127
- - types/ruby-2.2.0/regexp.rb
128
- - types/ruby-2.2.0/set.rb
129
- - types/ruby-2.2.0/string.rb
130
- - types/ruby-2.2.0/strscan.rb
131
- - types/ruby-2.2.0/symbol.rb
132
- - types/ruby-2.2.0/time.rb
133
- - types/ruby-2.2.0/uri.rb
134
- - types/ruby-2.2.0/yaml.rb
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