README.md in shelltastic-0.5.0 vs README.md in shelltastic-1.0.0
- old
+ new
@@ -1,8 +1,11 @@
# Shelltastic
Shelltastic is simple *nix shell wrapper for ruby. You can pass a single command or multiple commands to run.
+[![Gem Version](https://badge.fury.io/rb/shelltastic.svg)](https://badge.fury.io/rb/shelltastic)
+
+
## Installation
Add this line to your application's Gemfile:
gem 'shelltastic'
@@ -89,10 +92,10 @@
The parent process (you) will not wait for the child to finish or return any information.
This is useful if you want to run a command, but dont care about the output or exit status.
-__BEWARE__ of long running commands that could fail. ShellTastic detaches itself from the child command.
+__BEWARE__ of long running commands that could fail. ShellTastic detaches itself from the child command.
```ruby
ShellTastic::Command.start("sleep 10; date")