rubypython 0.6.3 → 0.6.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.
@@ -0,0 +1,143 @@
1
+ --Do not remove this if you are using--
2
+ Original Author: Remiz Rahnas
3
+ Original Author URL: http://www.htmlremix.com
4
+ Published date: 2008/09/24
5
+
6
+ Changes by Nick Fetchak:
7
+ - IE8 standards mode compatibility
8
+ - VML elements now positioned behind original box rather than inside of it - should be less prone to breakage
9
+ Published date : 2009/11/18
10
+
11
+
12
+ <public:attach event="oncontentready" onevent="oncontentready('v08vnSVo78t4JfjH')" />
13
+ <script type="text/javascript">
14
+
15
+ // findPos() borrowed from http://www.quirksmode.org/js/findpos.html
16
+ function findPos(obj) {
17
+ var curleft = curtop = 0;
18
+
19
+ if (obj.offsetParent) {
20
+ do {
21
+ curleft += obj.offsetLeft;
22
+ curtop += obj.offsetTop;
23
+ } while (obj = obj.offsetParent);
24
+ }
25
+
26
+ return({
27
+ 'x': curleft,
28
+ 'y': curtop
29
+ });
30
+ }
31
+
32
+ function oncontentready(classID) {
33
+ if (this.className.match(classID)) { return(false); }
34
+
35
+ if (!document.namespaces.v) { document.namespaces.add("v", "urn:schemas-microsoft-com:vml"); }
36
+
37
+ this.className = this.className.concat(' ', classID);
38
+ var arcSize = Math.min(parseInt(this.currentStyle['-moz-border-radius'] ||
39
+ this.currentStyle['-webkit-border-radius'] ||
40
+ this.currentStyle['border-radius'] ||
41
+ this.currentStyle['-khtml-border-radius']) /
42
+ Math.min(this.offsetWidth, this.offsetHeight), 1);
43
+ var fillColor = this.currentStyle.backgroundColor;
44
+ var fillSrc = this.currentStyle.backgroundImage.replace(/^url\("(.+)"\)$/, '$1');
45
+ var strokeColor = this.currentStyle.borderColor;
46
+ var strokeWeight = parseInt(this.currentStyle.borderWidth);
47
+ var stroked = 'true';
48
+ if (isNaN(strokeWeight)) {
49
+ strokeWeight = 0;
50
+ strokeColor = fillColor;
51
+ stroked = 'false';
52
+ }
53
+
54
+ this.style.background = 'transparent';
55
+ this.style.borderColor = 'transparent';
56
+
57
+ // Find which element provides position:relative for the target element (default to BODY)
58
+ var el = this;
59
+ var limit = 100, i = 0;
60
+ while ((typeof(el) != 'unknown') && (el.currentStyle.position != 'relative') && (el.tagName != 'BODY')) {
61
+ el = el.parentElement;
62
+ i++;
63
+ if (i >= limit) { return(false); }
64
+ }
65
+ var el_zindex = parseInt(el.currentStyle.zIndex);
66
+ if (isNaN(el_zindex)) { el_zindex = 0; }
67
+ //alert('got tag '+ el.tagName +' with pos '+ el.currentStyle.position);
68
+
69
+ var rect_size = {
70
+ 'width': this.offsetWidth - strokeWeight,
71
+ 'height': this.offsetHeight - strokeWeight
72
+ };
73
+ var el_pos = findPos(el);
74
+ var this_pos = findPos(this);
75
+ this_pos.y = this_pos.y + (0.5 * strokeWeight) - el_pos.y;
76
+ this_pos.x = this_pos.x + (0.5 * strokeWeight) - el_pos.x;
77
+
78
+ var rect = document.createElement('v:roundrect');
79
+ rect.arcsize = arcSize +'px';
80
+ rect.strokecolor = strokeColor;
81
+ rect.strokeWeight = strokeWeight +'px';
82
+ rect.stroked = stroked;
83
+ rect.style.display = 'block';
84
+ rect.style.position = 'absolute';
85
+ rect.style.top = this_pos.y +'px';
86
+ rect.style.left = this_pos.x +'px';
87
+ rect.style.width = rect_size.width +'px';
88
+ rect.style.height = rect_size.height +'px';
89
+ rect.style.antialias = true;
90
+ rect.style.zIndex = el_zindex - 1;
91
+
92
+ var fill = document.createElement('v:fill');
93
+ fill.color = fillColor;
94
+ fill.src = fillSrc;
95
+ fill.type = 'tile';
96
+
97
+ rect.appendChild(fill);
98
+ el.appendChild(rect);
99
+
100
+ var css = el.document.createStyleSheet();
101
+ css.addRule("v\\:roundrect", "behavior: url(#default#VML)");
102
+ css.addRule("v\\:fill", "behavior: url(#default#VML)");
103
+
104
+ isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
105
+ // IE6 doesn't support transparent borders, use padding to offset original element
106
+ if (isIE6 && (strokeWeight > 0)) {
107
+ this.style.borderStyle = 'none';
108
+ this.style.paddingTop = parseInt(this.currentStyle.paddingTop || 0) + strokeWeight;
109
+ this.style.paddingBottom = parseInt(this.currentStyle.paddingBottom || 0) + strokeWeight;
110
+ }
111
+
112
+ if (typeof(window.rounded_elements) == 'undefined') {
113
+ window.rounded_elements = new Array();
114
+
115
+ if (typeof(window.onresize) == 'function') { window.previous_onresize = window.onresize; }
116
+ window.onresize = window_resize;
117
+ }
118
+ this.element.vml = rect;
119
+ window.rounded_elements.push(this.element);
120
+ }
121
+
122
+ function window_resize() {
123
+ if (typeof(window.rounded_elements) == 'undefined') { return(false); }
124
+
125
+ for (var i in window.rounded_elements) {
126
+ var el = window.rounded_elements[i];
127
+
128
+ var strokeWeight = parseInt(el.currentStyle.borderWidth);
129
+ if (isNaN(strokeWeight)) { strokeWeight = 0; }
130
+
131
+ var parent_pos = findPos(el.vml.parentNode);
132
+ var pos = findPos(el);
133
+ pos.y = pos.y + (0.5 * strokeWeight) - parent_pos.y;
134
+ pos.x = pos.x + (0.5 * strokeWeight) - parent_pos.x;
135
+
136
+ el.vml.style.top = pos.y +'px';
137
+ el.vml.style.left = pos.x +'px';
138
+ }
139
+
140
+ if (typeof(window.previous_onresize) == 'function') { window.previous_onresize(); }
141
+ }
142
+ </script>
143
+
@@ -0,0 +1,132 @@
1
+ body {
2
+ background-color: #E1D1F1;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+
10
+ h1, h2, h3, h4, h5, h6 {
11
+ font-family: 'Cabin', sans-serif;
12
+ color: #444;
13
+ }
14
+
15
+ #header h1 {
16
+ font-weight: normal;
17
+ font-size: 4em;
18
+ line-height: 0.8em;
19
+ letter-spacing: -0.05em;
20
+ margin: 5px;
21
+ }
22
+
23
+ #toc {
24
+ line-height: 1.2em;
25
+ font-size: 0.9em;
26
+ }
27
+
28
+ #toc li {
29
+ line-height: 1.15em;
30
+ }
31
+
32
+ ul {
33
+ list-style-type: square;
34
+ }
35
+
36
+ li {
37
+ padding: 0;
38
+ margin: 0;
39
+ }
40
+
41
+ a {
42
+ color: #5E5AFF;
43
+ font-weight: normal;
44
+ text-decoration: underline;
45
+ }
46
+
47
+ .coda {
48
+ text-align: right;
49
+ color: #77f;
50
+ font-size: smaller;
51
+ }
52
+
53
+ pre, code {
54
+ font-family: 'Inconsolata', monospace;
55
+ font-size: 90%;
56
+ line-height: 1.4em;
57
+ color: #ff8;
58
+ background-color: #111;
59
+ padding: 2px 10px 2px 10px;
60
+ }
61
+
62
+ .teardrop-corners {
63
+ behavior: url(stylesheets/border-radius.htc);
64
+ /*
65
+ * -moz-border-radius: 10px;
66
+ * -webkit-border-radius: 10px;
67
+ * -khtml-border-radius: 10px;
68
+ * border-radius: 10px;
69
+ */
70
+ -webkit-border-top-left-radius: 50px;
71
+ -webkit-border-bottom-right-radius: 50px;
72
+ -moz-border-radius-topleft: 50px;
73
+ -moz-border-radius-bottomright: 50px;
74
+ border-top-left-radius: 50px;
75
+ border-bottom-right-radius: 50px;
76
+ }
77
+
78
+ #toc {
79
+ border: 3px solid #141331;
80
+ line-height: 1.2em !important;
81
+ font-size: 0.8em !important;
82
+ padding: 0;
83
+ }
84
+
85
+ #toc h1 {
86
+ margin-left: 1em;
87
+ }
88
+
89
+ #toc li {
90
+ line-height: 1.2em;
91
+ }
92
+
93
+ #version {
94
+ text-align: right;
95
+ font-family: 'Cabin', sans-serif;
96
+ font-weight: normal;
97
+ background-color: #B3ABFF;
98
+ color: #141331;
99
+ padding: 10px 20px 10px 20px;
100
+ margin: 0 auto;
101
+ margin-top: 15px;
102
+ margin-bottom: 15px;
103
+ border: 3px solid #141331;
104
+ }
105
+
106
+ #version .numbers {
107
+ display: block;
108
+ font-size: 4em;
109
+ line-height: 0.8em;
110
+ letter-spacing: -0.2ex;
111
+ margin-bottom: 15px;
112
+ }
113
+
114
+ #version p {
115
+ text-decoration: none;
116
+ color: #141331;
117
+ background-color: #B3ABFF;
118
+ margin: 0;
119
+ padding: 0;
120
+ }
121
+
122
+ #version a {
123
+ text-decoration: none;
124
+ color: #141331;
125
+ background-color: #B3ABFF;
126
+ }
127
+
128
+ .clickable {
129
+ cursor: pointer;
130
+ cursor: hand;
131
+ }
132
+
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypython
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
5
- prerelease:
4
+ version: 0.6.4
6
5
  platform: ruby
7
6
  authors:
8
7
  - Steeve Morin
@@ -10,134 +9,203 @@ authors:
10
9
  - Zach Raines
11
10
  autorequire:
12
11
  bindir: bin
13
- cert_chain:
14
- - !binary |-
15
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURTRENDQWpDZ0F3SUJB
16
- Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREJLTVJ3d0dnWURWUVFEREJOeVlX
17
- bHUKWlhONmJWOXlkV0o1Y0hsMGFHOXVNUlV3RXdZS0NaSW1pWlB5TEdRQkdS
18
- WUZaMjFoYVd3eEV6QVJCZ29Ka2lhSgprL0lzWkFFWkZnTmpiMjB3SGhjTk1U
19
- QXdPREE0TURJME5UTXdXaGNOTVRFd09EQTRNREkwTlRNd1dqQktNUnd3Ckdn
20
- WURWUVFEREJOeVlXbHVaWE42YlY5eWRXSjVjSGwwYUc5dU1SVXdFd1lLQ1pJ
21
- bWlaUHlMR1FCR1JZRloyMWgKYVd3eEV6QVJCZ29Ka2lhSmsvSXNaQUVaRmdO
22
- amIyMHdnZ0VpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElCRHdBdwpnZ0VLQW9J
23
- QkFRRFBTbW14WXFXV041M1hyRDRidFowOHR3aXBSejVwcmlURnR3bUtMMDFX
24
- ZmhIYTY2T2hEb1YyCk9QdFcwUm9XZWdaNWd0aS9nSjY3UDZJVmwxeUJla2ZW
25
- NTgxeUhzWnFWN1ZxY09rRGJUOTNGM0h1VExIMTJkMUMKdy9PaEhvR1pVVVJl
26
- ZE5lU01qS21NU2xDQ0Q0cnpDZlhUZUFFVTZFM3JYaDN1MkFEN2tRZmVZY1pB
27
- L3UwWWdyRApsUzNjMm9YM0d2SkhqZDRoVjVoSUdnT0dYRHhjZ0g1UzFpTzY1
28
- ODhTQnhMTit4ZFlDODJ3MDllNXIwOXRCdm8zCkJYWmxzRXJ3dVdSSThIYTd5
29
- NnRoYnJCMjhHUzVqSTM3OGV3NGtTVVMvMVQ5U3o0RWNQbWh5aHlDZVh2dnNk
30
- Q20KNEJ2TlBNQmwveVAyZmhjdWJNRC9RMHQ5SWE5Y2hWYzNBZ01CQUFHak9U
31
- QTNNQWtHQTFVZEV3UUNNQUF3SFFZRApWUjBPQkJZRUZOTG5jVS9LajFSUnNq
32
- YjVibEFoaWswaGd2S0NNQXNHQTFVZER3UUVBd0lFc0RBTkJna3Foa2lHCjl3
33
- MEJBUVVGQUFPQ0FRRUFqOHoxa1JTLzFzSFUyeVJab3RoS3Jnc09Mb0R4RjEr
34
- dVlxOTA5clMyZDZGcU9KYnQKVjA4SmFPaWwvZU1sVGpQazduQlVVOU9abE5t
35
- YjhvRDBXdDJMZ3Y5R0ZNSkptMG1jaDc2N05rM2gxdDlxaUpKQwp2NElkYTdl
36
- NitBckFjSEV4UXgvbHVsMmpKQ1dlemdJVnh6OVQ5dW5PZnZ5bE95WHdBSFY0
37
- RUVLNDdFZVUxVFpWClQ0Y01sMkp5eXRCdGpDUHlkVkpHZmlyeGxNN2FUTU9a
38
- NkZ2VWJDaUZ2SGF5bUFnb09WWm1tN05wRTZHc01UN2cKMWIxVWNRcXZMcXlw
39
- OWdkQjNqVmViN0puVExZK1dsSFd0MnJGVmJlcXY3S3RKbHA3KzR1V01La3pU
40
- YlcvdWpkRwpjZ3VKTWlRQ1NPbFVQWnhDV1dNa2pmWmJYdnRTNVZkekpldlNx
41
- UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K
42
- date: 2012-09-25 00:00:00.000000000 Z
12
+ cert_chain: []
13
+ date: 2014-02-04 00:00:00.000000000 Z
43
14
  dependencies:
44
15
  - !ruby/object:Gem::Dependency
45
16
  name: ffi
46
- requirement: &70104953559200 !ruby/object:Gem::Requirement
47
- none: false
17
+ requirement: !ruby/object:Gem::Requirement
48
18
  requirements:
49
- - - ! '>='
19
+ - - "~>"
50
20
  - !ruby/object:Gem::Version
51
21
  version: 1.0.7
52
22
  type: :runtime
53
23
  prerelease: false
54
- version_requirements: *70104953559200
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: 1.0.7
55
29
  - !ruby/object:Gem::Dependency
56
30
  name: blankslate
57
- requirement: &70104953558540 !ruby/object:Gem::Requirement
58
- none: false
31
+ requirement: !ruby/object:Gem::Requirement
59
32
  requirements:
60
- - - ! '>='
33
+ - - ">="
61
34
  - !ruby/object:Gem::Version
62
35
  version: 2.1.2.3
63
36
  type: :runtime
64
37
  prerelease: false
65
- version_requirements: *70104953558540
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.1.2.3
66
43
  - !ruby/object:Gem::Dependency
67
44
  name: rubyforge
68
- requirement: &70104953557840 !ruby/object:Gem::Requirement
69
- none: false
45
+ requirement: !ruby/object:Gem::Requirement
70
46
  requirements:
71
- - - ! '>='
47
+ - - ">="
72
48
  - !ruby/object:Gem::Version
73
49
  version: 2.0.4
74
50
  type: :development
75
51
  prerelease: false
76
- version_requirements: *70104953557840
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 2.0.4
77
57
  - !ruby/object:Gem::Dependency
78
58
  name: rdoc
79
- requirement: &70104953557080 !ruby/object:Gem::Requirement
80
- none: false
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '4.0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '4.0'
71
+ - !ruby/object:Gem::Dependency
72
+ name: hoe-doofus
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '1.0'
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: '1.0'
85
+ - !ruby/object:Gem::Dependency
86
+ name: hoe-gemspec2
87
+ requirement: !ruby/object:Gem::Requirement
81
88
  requirements:
82
- - - ~>
89
+ - - "~>"
83
90
  - !ruby/object:Gem::Version
84
- version: '3.10'
91
+ version: '1.1'
85
92
  type: :development
86
93
  prerelease: false
87
- version_requirements: *70104953557080
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - "~>"
97
+ - !ruby/object:Gem::Version
98
+ version: '1.1'
99
+ - !ruby/object:Gem::Dependency
100
+ name: hoe-git
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - "~>"
104
+ - !ruby/object:Gem::Version
105
+ version: '1.5'
106
+ type: :development
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '1.5'
113
+ - !ruby/object:Gem::Dependency
114
+ name: hoe-hg
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '1.0'
120
+ type: :development
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - "~>"
125
+ - !ruby/object:Gem::Version
126
+ version: '1.0'
127
+ - !ruby/object:Gem::Dependency
128
+ name: hoe-rubygems
129
+ requirement: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: '1.0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - "~>"
139
+ - !ruby/object:Gem::Version
140
+ version: '1.0'
141
+ - !ruby/object:Gem::Dependency
142
+ name: hoe-travis
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: '1.2'
148
+ type: :development
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - "~>"
153
+ - !ruby/object:Gem::Version
154
+ version: '1.2'
88
155
  - !ruby/object:Gem::Dependency
89
156
  name: rspec
90
- requirement: &70104953556240 !ruby/object:Gem::Requirement
91
- none: false
157
+ requirement: !ruby/object:Gem::Requirement
92
158
  requirements:
93
- - - ~>
159
+ - - "~>"
94
160
  - !ruby/object:Gem::Version
95
161
  version: '2.0'
96
162
  type: :development
97
163
  prerelease: false
98
- version_requirements: *70104953556240
164
+ version_requirements: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - "~>"
167
+ - !ruby/object:Gem::Version
168
+ version: '2.0'
99
169
  - !ruby/object:Gem::Dependency
100
170
  name: tilt
101
- requirement: &70104953555580 !ruby/object:Gem::Requirement
102
- none: false
171
+ requirement: !ruby/object:Gem::Requirement
103
172
  requirements:
104
- - - ~>
173
+ - - "~>"
105
174
  - !ruby/object:Gem::Version
106
175
  version: '1.0'
107
176
  type: :development
108
177
  prerelease: false
109
- version_requirements: *70104953555580
178
+ version_requirements: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - "~>"
181
+ - !ruby/object:Gem::Version
182
+ version: '1.0'
110
183
  - !ruby/object:Gem::Dependency
111
184
  name: hoe
112
- requirement: &70104953570780 !ruby/object:Gem::Requirement
113
- none: false
185
+ requirement: !ruby/object:Gem::Requirement
114
186
  requirements:
115
- - - ~>
187
+ - - "~>"
116
188
  - !ruby/object:Gem::Version
117
- version: '3.0'
189
+ version: '3.8'
118
190
  type: :development
119
191
  prerelease: false
120
- version_requirements: *70104953570780
121
- description: ! 'RubyPython is a bridge between the Ruby and Python interpreters. It
122
- embeds a
123
-
124
- running Python interpreter in the Ruby application''s process using FFI and
125
-
192
+ version_requirements: !ruby/object:Gem::Requirement
193
+ requirements:
194
+ - - "~>"
195
+ - !ruby/object:Gem::Version
196
+ version: '3.8'
197
+ description: |-
198
+ RubyPython is a bridge between the Ruby and Python interpreters. It embeds a
199
+ running Python interpreter in the Ruby application's process using FFI and
126
200
  provides a means for wrapping, converting, and calling Python objects and
127
-
128
201
  methods.
129
202
 
130
-
131
203
  RubyPython uses FFI to marshal the data between the Ruby and Python VMs and
132
-
133
204
  make Python calls. You can:
134
205
 
135
-
136
206
  * Inherit from Python classes.
137
-
138
207
  * Configure callbacks from Python.
139
-
140
- * Run Python generators (on Ruby 1.9.2 or later).'
208
+ * Run Python generators (on Ruby 1.9.2 or later).
141
209
  email:
142
210
  - swiuzzz+rubypython@gmail.com
143
211
  - austin@rubyforge.org
@@ -151,9 +219,13 @@ extra_rdoc_files:
151
219
  - Manifest.txt
152
220
  - PostInstall.txt
153
221
  - README.rdoc
222
+ - website/robots.txt
154
223
  files:
155
- - .autotest
156
- - .rspec
224
+ - ".autotest"
225
+ - ".gitignore"
226
+ - ".hgignore"
227
+ - ".hgtags"
228
+ - ".rspec"
157
229
  - Contributors.rdoc
158
230
  - History.rdoc
159
231
  - License.rdoc
@@ -190,32 +262,36 @@ files:
190
262
  - spec/rubypyproxy_spec.rb
191
263
  - spec/rubypython_spec.rb
192
264
  - spec/spec_helper.rb
193
- - .gemtest
265
+ - website/index.rhtml
266
+ - website/robots.txt
267
+ - website/stylesheets/960.css
268
+ - website/stylesheets/border-radius.htc
269
+ - website/stylesheets/screen.css
194
270
  homepage:
195
- licenses: []
271
+ licenses:
272
+ - MIT
273
+ metadata: {}
196
274
  post_install_message:
197
275
  rdoc_options:
198
- - --main
276
+ - "--main"
199
277
  - README.rdoc
200
278
  require_paths:
201
279
  - lib
202
280
  required_ruby_version: !ruby/object:Gem::Requirement
203
- none: false
204
281
  requirements:
205
- - - ! '>='
282
+ - - ">="
206
283
  - !ruby/object:Gem::Version
207
284
  version: '0'
208
285
  required_rubygems_version: !ruby/object:Gem::Requirement
209
- none: false
210
286
  requirements:
211
- - - ! '>='
287
+ - - ">="
212
288
  - !ruby/object:Gem::Version
213
289
  version: '0'
214
290
  requirements:
215
291
  - Python, ~> 2.4
216
292
  rubyforge_project: rubypython
217
- rubygems_version: 1.8.17
293
+ rubygems_version: 2.6.12
218
294
  signing_key:
219
- specification_version: 3
295
+ specification_version: 4
220
296
  summary: RubyPython is a bridge between the Ruby and Python interpreters
221
297
  test_files: []