rubysl-irb 2.1.0 → 2.1.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/MRI_LICENSE +56 -0
- data/lib/rubysl/irb/version.rb +1 -1
- data/rubysl-irb.gemspec +0 -2
- metadata +22 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9eb62c43a2aeff7398d5d6cd922f01c578b525e
|
|
4
|
+
data.tar.gz: 4acb21669b45bd23c603e8ed625af82b37b12392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31877ccb7566a3fbb0bdb3d0860da1c111a6889de78e23f19c7ebbfe4634a0f36f2e5d9e4e10942d1bba7977e601336e11cf1a2da2313c81f5a07a9e67f3db68
|
|
7
|
+
data.tar.gz: a362e5661396d7fac9cd77371f72a54e6f7187c66b9b2770043f00c32012ceb123f1079635dcd081615d4e7b94683d6f9274aed0644abae890d76737bad18ea5
|
data/MRI_LICENSE
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
|
|
2
|
+
You can redistribute it and/or modify it under either the terms of the
|
|
3
|
+
2-clause BSDL (see the file BSDL), or the conditions below:
|
|
4
|
+
|
|
5
|
+
1. You may make and give away verbatim copies of the source form of the
|
|
6
|
+
software without restriction, provided that you duplicate all of the
|
|
7
|
+
original copyright notices and associated disclaimers.
|
|
8
|
+
|
|
9
|
+
2. You may modify your copy of the software in any way, provided that
|
|
10
|
+
you do at least ONE of the following:
|
|
11
|
+
|
|
12
|
+
a) place your modifications in the Public Domain or otherwise
|
|
13
|
+
make them Freely Available, such as by posting said
|
|
14
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
|
15
|
+
the author to include your modifications in the software.
|
|
16
|
+
|
|
17
|
+
b) use the modified software only within your corporation or
|
|
18
|
+
organization.
|
|
19
|
+
|
|
20
|
+
c) give non-standard binaries non-standard names, with
|
|
21
|
+
instructions on where to get the original software distribution.
|
|
22
|
+
|
|
23
|
+
d) make other distribution arrangements with the author.
|
|
24
|
+
|
|
25
|
+
3. You may distribute the software in object code or binary form,
|
|
26
|
+
provided that you do at least ONE of the following:
|
|
27
|
+
|
|
28
|
+
a) distribute the binaries and library files of the software,
|
|
29
|
+
together with instructions (in the manual page or equivalent)
|
|
30
|
+
on where to get the original distribution.
|
|
31
|
+
|
|
32
|
+
b) accompany the distribution with the machine-readable source of
|
|
33
|
+
the software.
|
|
34
|
+
|
|
35
|
+
c) give non-standard binaries non-standard names, with
|
|
36
|
+
instructions on where to get the original software distribution.
|
|
37
|
+
|
|
38
|
+
d) make other distribution arrangements with the author.
|
|
39
|
+
|
|
40
|
+
4. You may modify and include the part of the software into any other
|
|
41
|
+
software (possibly commercial). But some files in the distribution
|
|
42
|
+
are not written by the author, so that they are not under these terms.
|
|
43
|
+
|
|
44
|
+
For the list of those files and their copying conditions, see the
|
|
45
|
+
file LEGAL.
|
|
46
|
+
|
|
47
|
+
5. The scripts and library files supplied as input to or produced as
|
|
48
|
+
output from the software do not automatically fall under the
|
|
49
|
+
copyright of the software, but belong to whomever generated them,
|
|
50
|
+
and may be sold commercially, and may be aggregated with this
|
|
51
|
+
software.
|
|
52
|
+
|
|
53
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
|
54
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
55
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
56
|
+
PURPOSE.
|
data/lib/rubysl/irb/version.rb
CHANGED
data/rubysl-irb.gemspec
CHANGED
|
@@ -22,8 +22,6 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.add_runtime_dependency "rubysl-mathn", "~> 2.0"
|
|
23
23
|
spec.add_runtime_dependency "rubysl-thread", "~> 2.0"
|
|
24
24
|
|
|
25
|
-
spec.add_runtime_dependency "rb-readline", "~> 0.5"
|
|
26
|
-
|
|
27
25
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
28
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
29
27
|
spec.add_development_dependency "mspec", "~> 1.5"
|
metadata
CHANGED
|
@@ -1,125 +1,111 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubysl-irb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Shirai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubysl-e2mmap
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '2.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '2.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubysl-mathn
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ~>
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '2.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ~>
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '2.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rubysl-thread
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - ~>
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '2.0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - ~>
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '2.0'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: rb-readline
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0.5'
|
|
62
|
-
type: :runtime
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '0.5'
|
|
69
55
|
- !ruby/object:Gem::Dependency
|
|
70
56
|
name: bundler
|
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
|
72
58
|
requirements:
|
|
73
|
-
- -
|
|
59
|
+
- - ~>
|
|
74
60
|
- !ruby/object:Gem::Version
|
|
75
61
|
version: '1.3'
|
|
76
62
|
type: :development
|
|
77
63
|
prerelease: false
|
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
65
|
requirements:
|
|
80
|
-
- -
|
|
66
|
+
- - ~>
|
|
81
67
|
- !ruby/object:Gem::Version
|
|
82
68
|
version: '1.3'
|
|
83
69
|
- !ruby/object:Gem::Dependency
|
|
84
70
|
name: rake
|
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
|
86
72
|
requirements:
|
|
87
|
-
- -
|
|
73
|
+
- - ~>
|
|
88
74
|
- !ruby/object:Gem::Version
|
|
89
75
|
version: '10.0'
|
|
90
76
|
type: :development
|
|
91
77
|
prerelease: false
|
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
79
|
requirements:
|
|
94
|
-
- -
|
|
80
|
+
- - ~>
|
|
95
81
|
- !ruby/object:Gem::Version
|
|
96
82
|
version: '10.0'
|
|
97
83
|
- !ruby/object:Gem::Dependency
|
|
98
84
|
name: mspec
|
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
|
100
86
|
requirements:
|
|
101
|
-
- -
|
|
87
|
+
- - ~>
|
|
102
88
|
- !ruby/object:Gem::Version
|
|
103
89
|
version: '1.5'
|
|
104
90
|
type: :development
|
|
105
91
|
prerelease: false
|
|
106
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
93
|
requirements:
|
|
108
|
-
- -
|
|
94
|
+
- - ~>
|
|
109
95
|
- !ruby/object:Gem::Version
|
|
110
96
|
version: '1.5'
|
|
111
97
|
- !ruby/object:Gem::Dependency
|
|
112
98
|
name: rubysl-prettyprint
|
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
|
114
100
|
requirements:
|
|
115
|
-
- -
|
|
101
|
+
- - ~>
|
|
116
102
|
- !ruby/object:Gem::Version
|
|
117
103
|
version: '2.0'
|
|
118
104
|
type: :development
|
|
119
105
|
prerelease: false
|
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
107
|
requirements:
|
|
122
|
-
- -
|
|
108
|
+
- - ~>
|
|
123
109
|
- !ruby/object:Gem::Version
|
|
124
110
|
version: '2.0'
|
|
125
111
|
description: Ruby standard library irb.
|
|
@@ -130,10 +116,11 @@ executables:
|
|
|
130
116
|
extensions: []
|
|
131
117
|
extra_rdoc_files: []
|
|
132
118
|
files:
|
|
133
|
-
-
|
|
134
|
-
-
|
|
119
|
+
- .gitignore
|
|
120
|
+
- .travis.yml
|
|
135
121
|
- Gemfile
|
|
136
122
|
- LICENSE
|
|
123
|
+
- MRI_LICENSE
|
|
137
124
|
- README.md
|
|
138
125
|
- Rakefile
|
|
139
126
|
- bin/irb
|
|
@@ -195,17 +182,17 @@ require_paths:
|
|
|
195
182
|
- lib
|
|
196
183
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
197
184
|
requirements:
|
|
198
|
-
- -
|
|
185
|
+
- - ~>
|
|
199
186
|
- !ruby/object:Gem::Version
|
|
200
187
|
version: '2.0'
|
|
201
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
189
|
requirements:
|
|
203
|
-
- -
|
|
190
|
+
- - '>='
|
|
204
191
|
- !ruby/object:Gem::Version
|
|
205
192
|
version: '0'
|
|
206
193
|
requirements: []
|
|
207
194
|
rubyforge_project:
|
|
208
|
-
rubygems_version: 2.
|
|
195
|
+
rubygems_version: 2.0.14
|
|
209
196
|
signing_key:
|
|
210
197
|
specification_version: 4
|
|
211
198
|
summary: Ruby standard library irb.
|