public
Description: A cross-platform programmer's editor written in Ruby.
Homepage: http://redcareditor.com
Clone URL: git://github.com/danlucraft/redcar.git
redcar / INSTALL.md
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 1 Installing on Ubuntu 9.04 (Jaunty)
bdbf2ea6 » danlucraft 2009-05-10 Revamped and tested Jaunty ... 2 ==================================
3
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 4 This assumes that you have Ruby installed from packages. This will overwrite your Ruby if you have Ruby installed from source, so be sure.
5f67d142 » danlucraft 2009-05-26 Updated install instructions 5
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 6 0. (Install Ruby from packages, if you haven't already).
750575b1 » danlucraft 2009-05-10 Added another step to insta... 7
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 8 sudo apt-get install ruby ruby1.8-dev rubygems1.8 libhttp-access2-ruby1.8 rubygems1.8 rake
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 9 echo "export PATH=/var/lib/gems/1.8/bin:\$PATH" >> ~/.bashrc
10 source . ~/.bashrc
11
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 12 1. Now install Ruby-GNOME2 and other system packages. Ubuntu 9.04 has shipped with an out of date Ruby-GNOME2, so you need to add a new package repository to get the latest version. (If you are using a version of Ruby installed from source, you will need to download and install Ruby-GNOME2 from http://ruby-gnome2.sourceforge.jp/ instead of doing this.)
5f67d142 » danlucraft 2009-05-26 Updated install instructions 13
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 14 echo "deb http://franz.hob-bruneck.info/downloads/ jaunty/" >> /etc/apt/sources.list
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 15 sudo apt-get update
16 sudo apt-get install ruby-gnome2 build-essential libonig2 libonig-dev libgtk2.0-dev libglib2.0-dev libgee0 libgee-dev libgtksourceview2.0-dev libxul-dev xvfb libdbus-ruby libwebkit-dev libwebkit-1.0-1
17
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 18 2. There are a few needed development headers:
5f67d142 » danlucraft 2009-05-26 Updated install instructions 19
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 20 wget redcareditor.com/stuff/missing_x64_headers/rbgdkconversions.h
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 21 wget redcareditor.com/stuff/missing_x64_headers/rbgtkconversions.h
22 sudo cp rbgdkconversions.h /usr/lib/ruby/1.8/i486-linux/
23 sudo cp rbgtkconversions.h /usr/lib/ruby/1.8/i486-linux/
24
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 25 3. Install the required Ruby gems:
5f67d142 » danlucraft 2009-05-26 Updated install instructions 26
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 27 sudo gem install oniguruma activesupport rspec cucumber hoe open4 zerenity
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 28
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 29 4. Clone the Redcar source.
5f67d142 » danlucraft 2009-05-26 Updated install instructions 30
31 git clone git://github.com/danlucraft/redcar.git
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 32
5f67d142 » danlucraft 2009-05-26 Updated install instructions 33 (You can install git on Ubuntu with "sudo apt-get install git-core")
34
bdbf2ea6 » danlucraft 2009-05-10 Revamped and tested Jaunty ... 35 5. Checkout the latest Redcar release.
5f67d142 » danlucraft 2009-05-26 Updated install instructions 36
37 git checkout stable
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 38
bdbf2ea6 » danlucraft 2009-05-10 Revamped and tested Jaunty ... 39 5. Download the Redcar git submodules
5f67d142 » danlucraft 2009-05-26 Updated install instructions 40
bdbf2ea6 » danlucraft 2009-05-10 Revamped and tested Jaunty ... 41 cd redcar/
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 42 git submodule init
43 git submodule update
44
5f67d142 » danlucraft 2009-05-26 Updated install instructions 45 6. Build Redcar
46
47 rake build
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 48
bdbf2ea6 » danlucraft 2009-05-10 Revamped and tested Jaunty ... 49 7. And start Redcar:
50
51 ./bin/redcar /optional/path/to/my/project
7eec7db1 » danlucraft 2009-05-26 Formatted install instructi... 52
5ccd02f0 » danlucraft 2009-04-10 Clarified install instructions Comment 53 The first time Redcar runs it will spend time loading the Textmate Bundles.
11130476 » danlucraft 2009-04-04 Bits of documentation here ... 54 This only happens once.
55
56 Problems?
973b8cd3 » danlucraft 2009-05-26 wax 57 =========
58
59 * Irc at #redcar on irc.freenode.net
60 * Mailing list at http://groups.google.com/group/redcar-editor
61
5ccd02f0 » danlucraft 2009-04-10 Clarified install instructions Comment 62