irb_remote 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +21 -0
- data/README.md +12 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/irb_remote.gemspec +28 -0
- data/lib/irb_remote/client.rb +17 -0
- data/lib/irb_remote/configuration.rb +10 -0
- data/lib/irb_remote/core_ext/binding.rb +6 -0
- data/lib/irb_remote/input_method.rb +59 -0
- data/lib/irb_remote/output_method.rb +11 -0
- data/lib/irb_remote/server.rb +29 -0
- data/lib/irb_remote/version.rb +3 -0
- data/lib/irb_remote.rb +15 -0
- metadata +105 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 74b85fbb95a993f04c1786fa2ad69a21aad60c17baa43d99d4d111924e514dcd
|
4
|
+
data.tar.gz: 0cb0510249e561c5d1f1b3baa73c951870e3d1903177fd60dd695e088e75858f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 61e558563b21486c662296c3b632de9a4e3dbbd4cf5b9f2fb6b81fdf5aa5cb9b6c96c28865cb03d4e313015c5b10bc75f776318a1547ca19c31b58e1179aebca
|
7
|
+
data.tar.gz: 2b724854a4c94df726d3e241ff201c43fc25d70ac9536e59724f8b959482326432c8b25c673e154bb5075c3af68b976c8a99805ee5dff64b2e0468d88d73b1a4
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
irb_remote (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.7.0)
|
12
|
+
rspec-core (~> 3.7.0)
|
13
|
+
rspec-expectations (~> 3.7.0)
|
14
|
+
rspec-mocks (~> 3.7.0)
|
15
|
+
rspec-core (3.7.1)
|
16
|
+
rspec-support (~> 3.7.0)
|
17
|
+
rspec-expectations (3.7.0)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.7.0)
|
20
|
+
rspec-mocks (3.7.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.7.0)
|
23
|
+
rspec-support (3.7.1)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 1.16)
|
30
|
+
irb_remote!
|
31
|
+
rake (~> 10.0)
|
32
|
+
rspec (~> 3.0)
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.16.3
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Shota Iguchi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# IRBRemote
|
2
|
+
A way to start IRB remotely and to connect to it using DRb.
|
3
|
+
This allows to access the state of the running program from anywhere.
|
4
|
+
|
5
|
+
Inspired by [pry-remote](https://github.com/Mon-Ouie/pry-remote)
|
6
|
+
|
7
|
+
## TODO
|
8
|
+
- Client's CLI support
|
9
|
+
- Readline support
|
10
|
+
|
11
|
+
## License
|
12
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "irb_remote"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/irb_remote.gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "irb_remote/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "irb_remote"
|
8
|
+
spec.version = IRBRemote::VERSION
|
9
|
+
spec.authors = ["Shota Iguchi"]
|
10
|
+
spec.email = ["shota-iguchi@cookpad.com"]
|
11
|
+
|
12
|
+
spec.summary = "irb remote"
|
13
|
+
spec.homepage = "https://github.com/iguchi1124/irb_remote"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
18
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
28
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'irb'
|
2
|
+
require 'drb/drb'
|
3
|
+
|
4
|
+
module IRBRemote
|
5
|
+
class Client
|
6
|
+
def initialize
|
7
|
+
@drb_server_host = IRBRemote.config.host
|
8
|
+
@drb_server_port = IRBRemote.config.port
|
9
|
+
end
|
10
|
+
|
11
|
+
def start
|
12
|
+
DRb.start_service
|
13
|
+
server = DRbObject.new_with_uri("druby://#{@drb_server_host}:#{@drb_server_port}")
|
14
|
+
server.connected($stdin, $stdout)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require "readline"
|
2
|
+
|
3
|
+
module IRBRemote
|
4
|
+
class InputMethod < IRB::InputMethod
|
5
|
+
# Creates a new input method object using Readline
|
6
|
+
def initialize(input, output)
|
7
|
+
super()
|
8
|
+
|
9
|
+
@line_no = 0
|
10
|
+
@line = []
|
11
|
+
@eof = false
|
12
|
+
|
13
|
+
input.set_encoding(IRB.conf[:LC_MESSAGES].encoding, '-')
|
14
|
+
output.set_encoding(IRB.conf[:LC_MESSAGES].encoding, '-')
|
15
|
+
|
16
|
+
@stdin = input
|
17
|
+
@stdout = output
|
18
|
+
end
|
19
|
+
|
20
|
+
# Reads the next line from this input method.
|
21
|
+
#
|
22
|
+
# See IO#gets for more information.
|
23
|
+
def gets
|
24
|
+
@stdout.print @prompt
|
25
|
+
line = @stdin.gets
|
26
|
+
@line[@line_no += 1] = line
|
27
|
+
end
|
28
|
+
|
29
|
+
# Whether the end of this input method has been reached, returns +true+ if
|
30
|
+
# there is no more data to read.
|
31
|
+
#
|
32
|
+
# See IO#eof? for more information.
|
33
|
+
def eof?
|
34
|
+
@stdin.eof?
|
35
|
+
end
|
36
|
+
|
37
|
+
# Whether this input method is still readable when there is no more data to
|
38
|
+
# read.
|
39
|
+
#
|
40
|
+
# See IO#eof for more information.
|
41
|
+
def readable_after_eof?
|
42
|
+
true
|
43
|
+
end
|
44
|
+
|
45
|
+
# Returns the current line number for #io.
|
46
|
+
#
|
47
|
+
# #line counts the number of times #gets is called.
|
48
|
+
#
|
49
|
+
# See IO#lineno for more information.
|
50
|
+
def line(line_no)
|
51
|
+
@line[line_no]
|
52
|
+
end
|
53
|
+
|
54
|
+
# The external encoding for standard input.
|
55
|
+
def encoding
|
56
|
+
@stdin.external_encoding
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'drb/drb'
|
2
|
+
require 'irb'
|
3
|
+
require 'irb_remote/input_method'
|
4
|
+
require 'irb_remote/output_method'
|
5
|
+
|
6
|
+
module IRBRemote
|
7
|
+
class Server
|
8
|
+
def initialize(b)
|
9
|
+
@binding = b
|
10
|
+
end
|
11
|
+
|
12
|
+
def start
|
13
|
+
IRB.setup(@binding.eval('__FILE__'), argv: [])
|
14
|
+
DRb.start_service("druby://#{IRBRemote.config.host}:#{IRBRemote.config.port}", self, safe_level: 1)
|
15
|
+
DRb.thread.join
|
16
|
+
end
|
17
|
+
|
18
|
+
def connected(input, output)
|
19
|
+
$stdout = output
|
20
|
+
workspace = IRB::WorkSpace.new(@binding)
|
21
|
+
output.print(workspace.code_around_binding)
|
22
|
+
irb = IRB::Irb.new(workspace, InputMethod.new(input, output), OutputMethod.new(output))
|
23
|
+
irb.run(IRB.conf)
|
24
|
+
rescue DRb::DRbConnError
|
25
|
+
ensure
|
26
|
+
DRb.stop_service
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/irb_remote.rb
ADDED
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: irb_remote
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Shota Iguchi
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-08-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- shota-iguchi@cookpad.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- Gemfile.lock
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- irb_remote.gemspec
|
73
|
+
- lib/irb_remote.rb
|
74
|
+
- lib/irb_remote/client.rb
|
75
|
+
- lib/irb_remote/configuration.rb
|
76
|
+
- lib/irb_remote/core_ext/binding.rb
|
77
|
+
- lib/irb_remote/input_method.rb
|
78
|
+
- lib/irb_remote/output_method.rb
|
79
|
+
- lib/irb_remote/server.rb
|
80
|
+
- lib/irb_remote/version.rb
|
81
|
+
homepage: https://github.com/iguchi1124/irb_remote
|
82
|
+
licenses:
|
83
|
+
- MIT
|
84
|
+
metadata: {}
|
85
|
+
post_install_message:
|
86
|
+
rdoc_options: []
|
87
|
+
require_paths:
|
88
|
+
- lib
|
89
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 2.7.6
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: irb remote
|
105
|
+
test_files: []
|