Skip to content

Instantly share code, notes, and snippets.

Created July 11, 2013 12:05
Show Gist options
  • Save anonymous/5974871 to your computer and use it in GitHub Desktop.
Save anonymous/5974871 to your computer and use it in GitHub Desktop.
download and install RubyMine
#!/bin/bash
wget http://download.jetbrains.com/ruby/RubyMine-3.1.tar.gz -O /tmp/rubymine
sudo tar -xzvf /tmp/rubymine -C /opt
sudo mv /opt/RubyMine-3.1 /opt/RubyMine
sudo cat >/usr/share/applications/rubymine.desktop <<EOF
[Desktop Entry]
Name=RubyMine
Comment=Integrated Development Environment
TryExec=/opt/RubyMine/bin/rubymine.sh
Exec=/opt/RubyMine/bin/rubymine.sh
Icon=/opt/RubyMine/bin/RMlogo.svg
Categories=Development;IDE;Ruby;
Terminal=false
Type=Application
StartupNotify=true
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment