README.md in irby-1.0.1 vs README.md in irby-1.1.0
- old
+ new
@@ -1,31 +1,35 @@
IRBy
======
-The IRBy allows you to start irb super quickly.
+The IRBy defines Object#irb.
+It allows you to start irb super quickly.
Installation
------------
gem install irby
Usage
------------
+Call irb on current context.
+
require 'irby'
- class Foo
- def bar
- irb
- end
- end
+ irb # start irb session
- Foo.new.bar
+Call irb of an object.
+ require 'irby'
+
+ "test".irb #=> start irb session
+
Note
------------
-Inspired by http://d.hatena.ne.jp/ursm/20090625/1245951503
+Inspired by [http://d.hatena.ne.jp/ursm/20090625/1245951503](http://d.hatena.ne.jp/ursm/20090625/1245951503)
+
Copyright
------------
Copyright (c) 2010 jugyo. See LICENSE for details.