Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 20 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,36 @@ Supported platforms: MacOS and Linux. Pair with me if you want to see Windows s

## Install Ruby 1.9.3

Type "ruby -v" to see which ruby version you currently have.
Type `ruby -v` to see which ruby version you currently have.

On ubuntu, do: $ sudo apt-get install ruby1.9.3.
On ubuntu, run:

On the mac, install rvm (http://google.com/search?q=install+rvm) and the do: $ rvm install ruby-1.9.3
```sh
$ sudo apt-get install ruby1.9.3.
```

On the mac, install rvm (http://google.com/search?q=install+rvm) and then run:

```sh
$ rvm install ruby-1.9.3
```

## Install Xiki

Either install as a gem, or install from github.

### Install from github

$ git clone git://github.com/trogdoro/xiki.git
$ cd xiki
$ sudo gem install bundler # <- no "sudo" if using rvm
$ sudo bundle # <- no "sudo" if using rvm
$ sudo ruby etc/command/copy_xiki_command_to.rb /usr/bin/xiki
```sh
$ git clone git://github.com/trogdoro/xiki.git
$ cd xiki
$ sudo gem install bundler # <- no "sudo" if using rvm
$ sudo bundle # <- no "sudo" if using rvm
$ sudo ruby etc/command/copy_xiki_command_to.rb /usr/bin/xiki

# Or, if you're using rvm...
$ ruby etc/command/copy_xiki_command_to.rb /usr/local/bin/xiki
# Or, if you're using rvm...
$ ruby etc/command/copy_xiki_command_to.rb /usr/local/bin/xiki
```

### Or, as a gem

Expand Down