Created
July 11, 2013 12:05
-
-
Save anonymous/5974871 to your computer and use it in GitHub Desktop.
download and install RubyMine
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 | |
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