Fixed finding load paths for the gem

This commit is contained in:
Samuel Kadolph 2011-06-10 12:24:08 -04:00
parent f6792e150d
commit 653e57fa03
2 changed files with 4 additions and 2 deletions

View File

@ -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)

View File

@ -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)