Created
March 15, 2011 19:56
-
-
Save vongrippen/871330 to your computer and use it in GitHub Desktop.
RubyMine 3.1.1 Ubuntu Install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VERSION=3.2.3 | |
wget http://download.jetbrains.com/ruby/RubyMine-$VERSION.tar.gz -O /tmp/rubymine | |
sudo tar -xzvf /tmp/rubymine -C /opt | |
sudo mv /opt/RubyMine-$VERSION /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