Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 1089 Bytes
1 | = Installing HighLine |
2 | |
3 | RubyGems is the preferred easy install method for HighLine. However, you can |
4 | install HighLine manually as described below. |
5 | |
6 | == Installing the Gem |
7 | |
8 | HighLine is intended to be installed via the |
9 | RubyGems[http://rubyforge.org/projects/rubygems/] system. To get the latest |
10 | version, simply enter the following into your command prompt: |
11 | |
12 | $ sudo gem install highline |
13 | |
14 | You must have RubyGems[http://rubyforge.org/projects/rubygems/] installed for |
15 | the above to work. |
16 | |
17 | == Installing Manually |
18 | |
19 | Download the latest version of HighLine from the |
20 | {RubyForge project page}[http://rubyforge.org/frs/?group_id=683]. Navigate to |
21 | the root project directory and enter: |
22 | |
23 | $ sudo ruby setup.rb |
24 | |
25 | == Using termios |
26 | |
27 | While not a requirement, HighLine will take advantage of the termios library if |
28 | installed (on Unix). This slightly improves HighLine's character reading |
29 | capabilities and thus is recommended for all Unix users. |
30 | |
31 | If using the HighLine gem, you should be able to add termios as easily as: |
32 | |
33 | $ sudo gem install termios |
34 | |
35 | For manual installs, consult the termios documentation. |