📜 ⬆️ ⬇️

Ubuntu on rails

Recently, on the expanses of Launchpad.net was created Tim Ubuntu on Rails .

Tim's mission is to maintain the toolkit packages needed in Ruby / Rails development. First of all, these are the current versions of rubygems (do you still install them from source?) And passenger.

The guys from Brightbox , who still supported the passenger, nginx-passenger, ruby-ee packages for Ubuntu and Debian, are participating in the team .
')
In my blog, I published a small howto for those who want to help.

Under the cat, instructions for removing the installed rubygems from sources and installing the correct ones :)


sudo -s
cd /usr/local/lib/site_ruby/1.8
rm -r gauntlet_rubygems.rb rubygems.rb ubygems.rb rubygems
rm -r /usr/lib/ruby/gems/
rm /usr/bin/gem{,1.8}


Now install the correct rubygems:

First, add a new channel for the software:
wget edge.launchpad.net/~ubuntu-on-rails/+archive/ppa/+files/ubuntu-on-rails-ppa_0.0.2-uor0_all.deb
sudo dpkg -i ubuntu-on-rails-ppa_0.0.2-uor0_all.deb


After that, the source for ubuntu-on-rails-ppa.list should appear in /etc/apt/sources.list.d/

sudo aptitude update
sudo aptitude install libgems-ruby gitg passenger ...


Join us, report bugs, earn karma on Launchpad;)

Source: https://habr.com/ru/post/65157/


All Articles