Fixed finding load paths for the gem
This commit is contained in:
parent
f6792e150d
commit
653e57fa03
3
bin/pirb
3
bin/pirb
|
@ -1,7 +1,8 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
executable = File.expand_path("../" + Gem.default_exec_format % "irb", Gem.ruby)
|
||||
load_paths = Gem.loaded_specs["sockets"].load_paths.map { |p| "-I#{p}" }
|
||||
full_gem_path = Gem.loaded_specs["sockets"].full_gem_path
|
||||
load_paths = Gem.loaded_specs["sockets"].require_paths.map { |p| "-I#{File.join(full_gem_path, p)}" }
|
||||
# TODO: support argument switches
|
||||
|
||||
exec(executable, *load_paths, "-rsockets/env", *ARGV)
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
executable = Gem.ruby
|
||||
load_paths = Gem.loaded_specs["sockets"].load_paths.map { |p| "-I#{p}" }
|
||||
full_gem_path = Gem.loaded_specs["sockets"].full_gem_path
|
||||
load_paths = Gem.loaded_specs["sockets"].require_paths.map { |p| "-I#{File.join(full_gem_path, p)}" }
|
||||
# TODO: support argument switches
|
||||
|
||||
exec(executable, *load_paths, "-rsockets/env", *ARGV)
|
||||
|
|
Loading…
Reference in New Issue