iruby 0.4.0 → 0.7.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/.github/workflows/ubuntu.yml +69 -0
- data/CHANGES.md +219 -0
- data/Gemfile +0 -2
- data/LICENSE +1 -1
- data/README.md +81 -62
- data/Rakefile +10 -10
- data/ci/Dockerfile.main.erb +1 -3
- data/iruby.gemspec +13 -19
- data/lib/iruby.rb +6 -6
- data/lib/iruby/backend.rb +38 -10
- data/lib/iruby/command.rb +2 -6
- data/lib/iruby/display.rb +216 -81
- data/lib/iruby/event_manager.rb +40 -0
- data/lib/iruby/formatter.rb +3 -3
- data/lib/iruby/input.rb +6 -6
- data/lib/iruby/input/autoload.rb +1 -1
- data/lib/iruby/input/builder.rb +4 -4
- data/lib/iruby/input/button.rb +2 -2
- data/lib/iruby/input/cancel.rb +1 -1
- data/lib/iruby/input/checkbox.rb +3 -3
- data/lib/iruby/input/date.rb +3 -3
- data/lib/iruby/input/field.rb +2 -2
- data/lib/iruby/input/file.rb +3 -3
- data/lib/iruby/input/form.rb +6 -6
- data/lib/iruby/input/label.rb +4 -4
- data/lib/iruby/input/multiple.rb +10 -10
- data/lib/iruby/input/popup.rb +2 -2
- data/lib/iruby/input/radio.rb +6 -6
- data/lib/iruby/input/select.rb +8 -8
- data/lib/iruby/input/textarea.rb +1 -1
- data/lib/iruby/input/widget.rb +2 -2
- data/lib/iruby/jupyter.rb +1 -0
- data/lib/iruby/kernel.rb +157 -29
- data/lib/iruby/ostream.rb +27 -10
- data/lib/iruby/session.rb +1 -0
- data/lib/iruby/session_adapter.rb +7 -3
- data/lib/iruby/session_adapter/pyzmq_adapter.rb +11 -10
- data/lib/iruby/session_adapter/test_adapter.rb +49 -0
- data/lib/iruby/utils.rb +15 -0
- data/lib/iruby/version.rb +1 -1
- data/run-test.sh +1 -1
- data/test/helper.rb +136 -0
- data/test/integration_test.rb +1 -2
- data/test/iruby/backend_test.rb +37 -0
- data/test/iruby/command_test.rb +0 -1
- data/test/iruby/display_test.rb +188 -0
- data/test/iruby/event_manager_test.rb +92 -0
- data/test/iruby/jupyter_test.rb +0 -1
- data/test/iruby/kernel_test.rb +185 -0
- data/test/iruby/mime_test.rb +50 -0
- data/test/iruby/multi_logger_test.rb +0 -4
- data/test/iruby/session_adapter/cztop_adapter_test.rb +1 -1
- data/test/iruby/session_adapter/ffirzmq_adapter_test.rb +1 -1
- data/test/iruby/session_adapter/session_adapter_test_base.rb +1 -3
- data/test/iruby/session_adapter_test.rb +42 -67
- data/test/iruby/session_test.rb +10 -15
- data/test/run-test.rb +19 -0
- metadata +74 -62
- data/.travis.yml +0 -41
- data/CHANGES +0 -143
- data/CONTRIBUTORS +0 -19
- data/lib/iruby/session/rbczmq.rb +0 -72
- data/lib/iruby/session_adapter/rbczmq_adapter.rb +0 -33
- data/test/iruby/session_adapter/rbczmq_adapter_test.rb +0 -37
- data/test/test_helper.rb +0 -48
data/test/iruby/session_test.rb
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
1
|
module IRubyTest
|
4
2
|
class SessionAdapterSelectionTest < TestBase
|
5
3
|
def setup
|
@@ -22,14 +20,13 @@ module IRubyTest
|
|
22
20
|
adapter_class = case adapter_name
|
23
21
|
when 'cztop'
|
24
22
|
IRuby::SessionAdapter::CztopAdapter
|
25
|
-
when 'rbczmq'
|
26
|
-
IRuby::SessionAdapter::RbczmqAdapter
|
27
23
|
when 'ffi-rzmq'
|
28
24
|
IRuby::SessionAdapter::FfirzmqAdapter
|
29
25
|
when 'pyzmq'
|
30
|
-
|
26
|
+
omit("pyzmq adapter is disabled")
|
27
|
+
# IRuby::SessionAdapter::PyzmqAdapter
|
31
28
|
else
|
32
|
-
flunk "Unknown session adapter: #{adapter_name}"
|
29
|
+
flunk "Unknown session adapter: #{adapter_name.inspect}"
|
33
30
|
end
|
34
31
|
|
35
32
|
session = IRuby::Session.new(@session_config, adapter_name)
|
@@ -37,15 +34,13 @@ module IRubyTest
|
|
37
34
|
end
|
38
35
|
|
39
36
|
def test_without_any_session_adapter
|
40
|
-
|
41
|
-
IRuby::SessionAdapter::
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
end
|
48
|
-
end
|
37
|
+
assert_rr do
|
38
|
+
stub(IRuby::SessionAdapter::CztopAdapter).available? { false }
|
39
|
+
stub(IRuby::SessionAdapter::FfirzmqAdapter).available? { false }
|
40
|
+
stub(IRuby::SessionAdapter::PyzmqAdapter).available? { false }
|
41
|
+
stub(IRuby::SessionAdapter::TestAdapter).available? { false }
|
42
|
+
assert_raises IRuby::SessionAdapterNotFound do
|
43
|
+
IRuby::Session.new(@session_config)
|
49
44
|
end
|
50
45
|
end
|
51
46
|
end
|
data/test/run-test.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$VERBOSE = true
|
4
|
+
|
5
|
+
require "pathname"
|
6
|
+
|
7
|
+
base_dir = Pathname.new(__dir__).parent.expand_path
|
8
|
+
|
9
|
+
lib_dir = base_dir + "lib"
|
10
|
+
test_dir = base_dir + "test"
|
11
|
+
|
12
|
+
$LOAD_PATH.unshift(lib_dir.to_s)
|
13
|
+
|
14
|
+
require_relative "helper"
|
15
|
+
|
16
|
+
ENV["TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE"] ||= "10000"
|
17
|
+
ENV["IRUBY_TEST_SESSION_ADAPTER_NAME"] ||= "ffi-rzmq"
|
18
|
+
|
19
|
+
exit Test::Unit::AutoRunner.run(true, test_dir)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Mendler
|
@@ -9,30 +9,30 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-06-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: data_uri
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '0'
|
21
|
-
type: :
|
20
|
+
version: '0.1'
|
21
|
+
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - "
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '0'
|
27
|
+
version: '0.1'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
|
-
name:
|
29
|
+
name: ffi-rzmq
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - ">="
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: '0'
|
35
|
-
type: :
|
35
|
+
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
@@ -40,13 +40,13 @@ dependencies:
|
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '0'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
43
|
+
name: irb
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '0'
|
49
|
-
type: :
|
49
|
+
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
@@ -54,77 +54,90 @@ dependencies:
|
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '0'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
|
-
name:
|
57
|
+
name: mime-types
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
63
|
-
type: :
|
62
|
+
version: 3.3.1
|
63
|
+
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
69
|
+
version: 3.3.1
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
71
|
+
name: multi_json
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: '
|
76
|
+
version: '1.11'
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '
|
83
|
+
version: '1.11'
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
|
-
name:
|
85
|
+
name: pycall
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- - "
|
88
|
+
- - ">="
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
91
|
-
type: :
|
90
|
+
version: 1.2.1
|
91
|
+
type: :development
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- - "
|
95
|
+
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
97
|
+
version: 1.2.1
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
|
-
name:
|
99
|
+
name: rake
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
101
101
|
requirements:
|
102
|
-
- - "
|
102
|
+
- - ">="
|
103
103
|
- !ruby/object:Gem::Version
|
104
|
-
version: '0
|
105
|
-
type: :
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- - "
|
109
|
+
- - ">="
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version: '0
|
111
|
+
version: '0'
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
|
-
name:
|
113
|
+
name: test-unit
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
|
-
- - "
|
116
|
+
- - ">="
|
117
117
|
- !ruby/object:Gem::Version
|
118
|
-
version: '0
|
119
|
-
type: :
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
120
|
prerelease: false
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
122
122
|
requirements:
|
123
|
-
- - "
|
123
|
+
- - ">="
|
124
124
|
- !ruby/object:Gem::Version
|
125
|
-
version: '0
|
126
|
-
|
127
|
-
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: test-unit-rr
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
description: A Ruby kernel for Jupyter environment. Try it at try.jupyter.org.
|
128
141
|
email:
|
129
142
|
- mail@daniel-mendler.de
|
130
143
|
executables:
|
@@ -132,10 +145,9 @@ executables:
|
|
132
145
|
extensions: []
|
133
146
|
extra_rdoc_files: []
|
134
147
|
files:
|
148
|
+
- ".github/workflows/ubuntu.yml"
|
135
149
|
- ".gitignore"
|
136
|
-
-
|
137
|
-
- CHANGES
|
138
|
-
- CONTRIBUTORS
|
150
|
+
- CHANGES.md
|
139
151
|
- Gemfile
|
140
152
|
- LICENSE
|
141
153
|
- README.md
|
@@ -156,6 +168,7 @@ files:
|
|
156
168
|
- lib/iruby/comm.rb
|
157
169
|
- lib/iruby/command.rb
|
158
170
|
- lib/iruby/display.rb
|
171
|
+
- lib/iruby/event_manager.rb
|
159
172
|
- lib/iruby/formatter.rb
|
160
173
|
- lib/iruby/input.rb
|
161
174
|
- lib/iruby/input/README.ipynb
|
@@ -184,12 +197,11 @@ files:
|
|
184
197
|
- lib/iruby/session/cztop.rb
|
185
198
|
- lib/iruby/session/ffi_rzmq.rb
|
186
199
|
- lib/iruby/session/mixin.rb
|
187
|
-
- lib/iruby/session/rbczmq.rb
|
188
200
|
- lib/iruby/session_adapter.rb
|
189
201
|
- lib/iruby/session_adapter/cztop_adapter.rb
|
190
202
|
- lib/iruby/session_adapter/ffirzmq_adapter.rb
|
191
203
|
- lib/iruby/session_adapter/pyzmq_adapter.rb
|
192
|
-
- lib/iruby/session_adapter/
|
204
|
+
- lib/iruby/session_adapter/test_adapter.rb
|
193
205
|
- lib/iruby/utils.rb
|
194
206
|
- lib/iruby/version.rb
|
195
207
|
- logo/logo-32x32.png
|
@@ -197,32 +209,27 @@ files:
|
|
197
209
|
- logo/ruby.svg
|
198
210
|
- run-test.sh
|
199
211
|
- tasks/ci.rake
|
212
|
+
- test/helper.rb
|
200
213
|
- test/integration_test.rb
|
214
|
+
- test/iruby/backend_test.rb
|
201
215
|
- test/iruby/command_test.rb
|
216
|
+
- test/iruby/display_test.rb
|
217
|
+
- test/iruby/event_manager_test.rb
|
202
218
|
- test/iruby/jupyter_test.rb
|
219
|
+
- test/iruby/kernel_test.rb
|
220
|
+
- test/iruby/mime_test.rb
|
203
221
|
- test/iruby/multi_logger_test.rb
|
204
222
|
- test/iruby/session_adapter/cztop_adapter_test.rb
|
205
223
|
- test/iruby/session_adapter/ffirzmq_adapter_test.rb
|
206
|
-
- test/iruby/session_adapter/rbczmq_adapter_test.rb
|
207
224
|
- test/iruby/session_adapter/session_adapter_test_base.rb
|
208
225
|
- test/iruby/session_adapter_test.rb
|
209
226
|
- test/iruby/session_test.rb
|
210
|
-
- test/
|
227
|
+
- test/run-test.rb
|
211
228
|
homepage: https://github.com/SciRuby/iruby
|
212
229
|
licenses:
|
213
230
|
- MIT
|
214
231
|
metadata: {}
|
215
|
-
post_install_message:
|
216
|
-
Consider installing the optional dependencies to get additional functionality:
|
217
|
-
* pry
|
218
|
-
* pry-doc
|
219
|
-
* awesome_print
|
220
|
-
* gnuplot
|
221
|
-
* rubyvis
|
222
|
-
* nyaplot
|
223
|
-
* cztop
|
224
|
-
* rbczmq
|
225
|
-
|
232
|
+
post_install_message:
|
226
233
|
rdoc_options: []
|
227
234
|
require_paths:
|
228
235
|
- lib
|
@@ -230,26 +237,31 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
230
237
|
requirements:
|
231
238
|
- - ">="
|
232
239
|
- !ruby/object:Gem::Version
|
233
|
-
version: 2.
|
240
|
+
version: 2.3.0
|
234
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
235
242
|
requirements:
|
236
243
|
- - ">="
|
237
244
|
- !ruby/object:Gem::Version
|
238
245
|
version: '0'
|
239
246
|
requirements: []
|
240
|
-
rubygems_version: 3.
|
247
|
+
rubygems_version: 3.2.3
|
241
248
|
signing_key:
|
242
249
|
specification_version: 4
|
243
|
-
summary: Ruby Kernel for Jupyter
|
250
|
+
summary: Ruby Kernel for Jupyter
|
244
251
|
test_files:
|
252
|
+
- test/helper.rb
|
245
253
|
- test/integration_test.rb
|
254
|
+
- test/iruby/backend_test.rb
|
246
255
|
- test/iruby/command_test.rb
|
256
|
+
- test/iruby/display_test.rb
|
257
|
+
- test/iruby/event_manager_test.rb
|
247
258
|
- test/iruby/jupyter_test.rb
|
259
|
+
- test/iruby/kernel_test.rb
|
260
|
+
- test/iruby/mime_test.rb
|
248
261
|
- test/iruby/multi_logger_test.rb
|
249
262
|
- test/iruby/session_adapter/cztop_adapter_test.rb
|
250
263
|
- test/iruby/session_adapter/ffirzmq_adapter_test.rb
|
251
|
-
- test/iruby/session_adapter/rbczmq_adapter_test.rb
|
252
264
|
- test/iruby/session_adapter/session_adapter_test_base.rb
|
253
265
|
- test/iruby/session_adapter_test.rb
|
254
266
|
- test/iruby/session_test.rb
|
255
|
-
- test/
|
267
|
+
- test/run-test.rb
|
data/.travis.yml
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
sudo: required
|
2
|
-
|
3
|
-
language: ruby
|
4
|
-
|
5
|
-
services:
|
6
|
-
- docker
|
7
|
-
|
8
|
-
before_install:
|
9
|
-
- docker images
|
10
|
-
- rake ci:docker:before_install
|
11
|
-
|
12
|
-
install:
|
13
|
-
- rake ci:docker:install
|
14
|
-
- docker images
|
15
|
-
|
16
|
-
after_install:
|
17
|
-
- rake ci:docker:install
|
18
|
-
- docker images
|
19
|
-
|
20
|
-
script: rake ci:docker:script
|
21
|
-
|
22
|
-
matrix:
|
23
|
-
include:
|
24
|
-
- name: "Ruby trunk-nightly"
|
25
|
-
env:
|
26
|
-
- ruby_version=trunk-nightly
|
27
|
-
- name: "Ruby 2.6"
|
28
|
-
env:
|
29
|
-
- ruby_version=2.6.1
|
30
|
-
- name: "Ruby 2.5"
|
31
|
-
env:
|
32
|
-
- ruby_version=2.5.3
|
33
|
-
- name: "Ruby 2.4"
|
34
|
-
env:
|
35
|
-
- ruby_version=2.4.5
|
36
|
-
- name: "Ruby 2.3"
|
37
|
-
env:
|
38
|
-
- ruby_version=2.3.8
|
39
|
-
|
40
|
-
allow_failures:
|
41
|
-
- name: "Ruby trunk-nightly"
|
data/CHANGES
DELETED
@@ -1,143 +0,0 @@
|
|
1
|
-
0.3 (2017-03-26)
|
2
|
-
|
3
|
-
Bug Fixes:
|
4
|
-
* Disable Jupyter keyboard manager for all popups made using IRuby.popup (@kylekyle).
|
5
|
-
* Fix Iruby/Input date values bug that set date fields to whatever the last date value was (@kylekyle).
|
6
|
-
* Fix a bug where time strings put into prompter would give an 'out of range' error (@kylekyle).
|
7
|
-
|
8
|
-
Enhancements:
|
9
|
-
* Improvements to IRuby dependency detection using `Bundler::Dependencies#specs` (@kou).
|
10
|
-
* Use less memory forcing pry to store only the last 3 commands in memory (@kylekyle).
|
11
|
-
* Use bigger z-index that is used accross all browsers (@kylekyle).
|
12
|
-
* Ability to input date values as DateTime objects in IRuby/Input (@kylekyle).
|
13
|
-
* Add option to have check boxes checked by default (@kylekyle).
|
14
|
-
* Option for multi-select in drop down menus in the prompter (@kylekyle).
|
15
|
-
* Add support for multiple widgets using `IRuby::Input::Multiple` (@kylekyle).
|
16
|
-
* Calender icon for date selector icon (@kylekyle).
|
17
|
-
* Add support for Numo/NArray (@zalt50).
|
18
|
-
* Text now only completes after a space (@zalt50).
|
19
|
-
* Remove the DONTWAIT flag when receiving a message (@cloud-oak).
|
20
|
-
* Add support for CZTop (@kou).
|
21
|
-
|
22
|
-
0.2.9 (2016-05-02)
|
23
|
-
|
24
|
-
Bug Fixes:
|
25
|
-
* Fix an error where a NoMethodError was being raised where a table rendered using an Array of Hashes has more than `maxcols` columns. (@CGamesPlay)
|
26
|
-
* Patch PryBackend to throw unterminated string and unexpected end-of-file syntax errors (@kylekyle)
|
27
|
-
|
28
|
-
Enhnacements:
|
29
|
-
* Add an IRuby::Input class which provides widgets for getting inputs from users. (@kylekyle)
|
30
|
-
* Add data_uri dependency (@kylekyle)
|
31
|
-
* Added a clear_output display function (@mrkn)
|
32
|
-
* Doc fixes for installation (@kozo2, @generall)
|
33
|
-
|
34
|
-
0.2.8 (2015-12-06)
|
35
|
-
|
36
|
-
* Add compatibility with ffi-rzmq
|
37
|
-
* Windows support
|
38
|
-
|
39
|
-
0.2.7 (2015-07-02)
|
40
|
-
|
41
|
-
* Fix problem with autoloaded constants in Display, problem with sciruby gem
|
42
|
-
|
43
|
-
0.2.6 (2015-06-21)
|
44
|
-
|
45
|
-
* Check registered kernel and Gemfile to prevent gem loading problems
|
46
|
-
* Support to_tex method for the rendering
|
47
|
-
|
48
|
-
0.2.5 (2015-06-07)
|
49
|
-
|
50
|
-
* Fix #29, empty signatures
|
51
|
-
* Move iruby utils to IRuby::Utils module
|
52
|
-
* Add IRuby.tex alias for IRuby.latex
|
53
|
-
* Remove example notebooks from gem
|
54
|
-
|
55
|
-
0.2.4 (2015-06-02)
|
56
|
-
|
57
|
-
* Better exception handling
|
58
|
-
* Fix ctrl-C issue #17
|
59
|
-
* Fix timeout issue #19
|
60
|
-
|
61
|
-
0.2.3 (2015-05-31)
|
62
|
-
|
63
|
-
* Fix notebook indentation
|
64
|
-
* Fix tab completion for multiple lines
|
65
|
-
|
66
|
-
0.2.2 (2015-05-26)
|
67
|
-
|
68
|
-
* Support history variables In, Out, _, _i etc
|
69
|
-
* Internal refactoring and minor bugfixes
|
70
|
-
|
71
|
-
0.2.1 (2015-05-26)
|
72
|
-
|
73
|
-
* Copy Ruby logo to kernel specification
|
74
|
-
|
75
|
-
0.2.0 (2015-05-25)
|
76
|
-
|
77
|
-
* Dropped IPython2 support
|
78
|
-
* Dropped Ruby < 2.0.0 support
|
79
|
-
* Supports and requires now IPython3/Jupyter
|
80
|
-
* Switch from ffi-rzmq to rbczmq
|
81
|
-
* Added IRuby::Conn (experimental, to be used by widgets)
|
82
|
-
* iruby register/unregister commands to register IRuby kernel in Jupyter
|
83
|
-
|
84
|
-
0.1.13 (2014-08-19)
|
85
|
-
|
86
|
-
* Improved IRuby.table, supports :maxrows and :maxcols
|
87
|
-
* IRuby#javascript workaround (https://github.com/ipython/ipython/issues/6259)
|
88
|
-
|
89
|
-
0.1.12 (2014-08-01)
|
90
|
-
|
91
|
-
* IRuby#table add option maxrows
|
92
|
-
* powerful display system with format and datatype registry, see #25
|
93
|
-
* Add IRuby#javascript
|
94
|
-
* Add IRuby#svg
|
95
|
-
|
96
|
-
0.1.11 (2014-07-08)
|
97
|
-
|
98
|
-
* Push binding if pry binding stack is empty
|
99
|
-
|
100
|
-
0.1.10 (2014-07-08)
|
101
|
-
|
102
|
-
* Fix #19 (pp)
|
103
|
-
* Handle exception when symlink cannot be created
|
104
|
-
* Fix dependencies and Pry backend
|
105
|
-
|
106
|
-
0.1.9 (2014-02-28)
|
107
|
-
|
108
|
-
* Check IPython version
|
109
|
-
|
110
|
-
0.1.7/0.1.8
|
111
|
-
|
112
|
-
* Bugfixes #11, #12, #13
|
113
|
-
|
114
|
-
0.1.6 (2013-10-11)
|
115
|
-
|
116
|
-
* Print Matrix and GSL::Matrix as LaTeX
|
117
|
-
* Add check for Pry version
|
118
|
-
|
119
|
-
0.1.5 (2013-10-03)
|
120
|
-
|
121
|
-
* Implement a rich display system
|
122
|
-
* Fix error output
|
123
|
-
|
124
|
-
0.1.4 (2013-10-03)
|
125
|
-
|
126
|
-
* Extract display handler from kernel
|
127
|
-
* Always return a text/plain response
|
128
|
-
|
129
|
-
0.1.3 (2013-10-03)
|
130
|
-
|
131
|
-
* Implement missing request handlers
|
132
|
-
* Detect if Bundler is running and set kernel_cmd appropriately
|
133
|
-
* Improve Pry integration
|
134
|
-
* Add support for the gems gnuplot, gruff, rmagick and mini_magick
|
135
|
-
|
136
|
-
0.1.2 (2013-10-02)
|
137
|
-
|
138
|
-
* Support for Pry added
|
139
|
-
* Launch `iruby console` if plain `iruby` is started
|
140
|
-
|
141
|
-
0.1.0 (2013-10-02)
|
142
|
-
|
143
|
-
* Cleanup and rewrite of some parts
|