This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
redcar / INSTALL.md
| 11130476 » | danlucraft | 2009-04-04 | 1 | Installing on Ubuntu 9.04 (Jaunty) | |
| bdbf2ea6 » | danlucraft | 2009-05-10 | 2 | ================================== | |
| 3 | |||||
| 11130476 » | danlucraft | 2009-04-04 | 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 | 5 | ||
| 11130476 » | danlucraft | 2009-04-04 | 6 | 0. (Install Ruby from packages, if you haven't already). | |
| 750575b1 » | danlucraft | 2009-05-10 | 7 | ||
| 11130476 » | danlucraft | 2009-04-04 | 8 | sudo apt-get install ruby ruby1.8-dev rubygems1.8 libhttp-access2-ruby1.8 rubygems1.8 rake | |
| 7eec7db1 » | danlucraft | 2009-05-26 | 9 | echo "export PATH=/var/lib/gems/1.8/bin:\$PATH" >> ~/.bashrc | |
| 10 | source . ~/.bashrc | ||||
| 11 | |||||
| 11130476 » | danlucraft | 2009-04-04 | 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 | 13 | ||
| 11130476 » | danlucraft | 2009-04-04 | 14 | echo "deb http://franz.hob-bruneck.info/downloads/ jaunty/" >> /etc/apt/sources.list | |
| 7eec7db1 » | danlucraft | 2009-05-26 | 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 | 18 | 2. There are a few needed development headers: | |
| 5f67d142 » | danlucraft | 2009-05-26 | 19 | ||
| 11130476 » | danlucraft | 2009-04-04 | 20 | wget redcareditor.com/stuff/missing_x64_headers/rbgdkconversions.h | |
| 7eec7db1 » | danlucraft | 2009-05-26 | 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 | 25 | 3. Install the required Ruby gems: | |
| 5f67d142 » | danlucraft | 2009-05-26 | 26 | ||
| 11130476 » | danlucraft | 2009-04-04 | 27 | sudo gem install oniguruma activesupport rspec cucumber hoe open4 zerenity | |
| 7eec7db1 » | danlucraft | 2009-05-26 | 28 | ||
| 11130476 » | danlucraft | 2009-04-04 | 29 | 4. Clone the Redcar source. | |
| 5f67d142 » | danlucraft | 2009-05-26 | 30 | ||
| 31 | git clone git://github.com/danlucraft/redcar.git | ||||
| 7eec7db1 » | danlucraft | 2009-05-26 | 32 | ||
| 5f67d142 » | danlucraft | 2009-05-26 | 33 | (You can install git on Ubuntu with "sudo apt-get install git-core") | |
| 34 | |||||
| bdbf2ea6 » | danlucraft | 2009-05-10 | 35 | 5. Checkout the latest Redcar release. | |
| 5f67d142 » | danlucraft | 2009-05-26 | 36 | ||
| 37 | git checkout stable | ||||
| 7eec7db1 » | danlucraft | 2009-05-26 | 38 | ||
| bdbf2ea6 » | danlucraft | 2009-05-10 | 39 | 5. Download the Redcar git submodules | |
| 5f67d142 » | danlucraft | 2009-05-26 | 40 | ||
| bdbf2ea6 » | danlucraft | 2009-05-10 | 41 | cd redcar/ | |
| 7eec7db1 » | danlucraft | 2009-05-26 | 42 | git submodule init | |
| 43 | git submodule update | ||||
| 44 | |||||
| 5f67d142 » | danlucraft | 2009-05-26 | 45 | 6. Build Redcar | |
| 46 | |||||
| 47 | rake build | ||||
| 7eec7db1 » | danlucraft | 2009-05-26 | 48 | ||
| bdbf2ea6 » | danlucraft | 2009-05-10 | 49 | 7. And start Redcar: | |
| 50 | |||||
| 51 | ./bin/redcar /optional/path/to/my/project | ||||
| 7eec7db1 » | danlucraft | 2009-05-26 | 52 | ||
| 5ccd02f0 » | danlucraft | 2009-04-10 | 53 | The first time Redcar runs it will spend time loading the Textmate Bundles. | |
| 11130476 » | danlucraft | 2009-04-04 | 54 | This only happens once. | |
| 55 | |||||
| 56 | Problems? | ||||
| 973b8cd3 » | danlucraft | 2009-05-26 | 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 | 62 | ||








