README.md in writer-0.1.0 vs README.md in writer-0.1.1
- old
+ new
@@ -33,9 +33,21 @@
$ wr hello world
#=> Creates a file named `hello` with the content `world`
```
+## Now supports the Ruby interactive shell!
+
+```
+$ irb
+> require 'writer'
+#=> true
+> wr 'hello.txt', 'world'
+#=>""
+> File.open('hello.txt').read
+#=> "world\n"
+```
+
## Use a template
The Writer will copy a template file's contents into your new file
if you configure the template file's path.