0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pry include gem to debug

Last updated at Posted at 2016-06-15

% irb -Ilib -rhola
irb(main):001:0> Hola.hi("english")
=> "hello world"
irb(main):002:0> Hola.hi("spanish")
=> "hola mundo"

-I指把lib目录加入load_path,-r表示require这个文件

vagrant@precise64:~/data$ pry -Iinclude -r1
[1] pry(main)> Hold.test
lala
=> nil
[2] pry(main)> exit
vagrant@precise64:~/data$ ls -al include/
total 13
drwxrwxrwx 1 vagrant vagrant     0 Jun 15 14:42 .
drwxrwxrwx 1 vagrant vagrant 12288 Jun 15 14:41 ..
-rwxrwxrwx 1 vagrant vagrant   106 Jun 15 14:43 1.rb
class Hold
	def self.test
		A.lala
	end
end

class Hold::A
	def self.lala
		puts "lala"
	end
end

rubygems/specification.rb:2158:in `method_missing': undefined method `this' for #<Gem::Specification

升级rubygems

gem update --system

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?