Forked from anonymous/download and install RubyMine
Last active
September 18, 2017 08:05
-
-
Save bogdanRada/5974873 to your computer and use it in GitHub Desktop.
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-5.4.3.tar.gz -O /tmp/rubymine | |
sudo tar -xzvf /tmp/rubymine -C /opt | |
sudo mv /opt/RubyMine-5.4.3.2.1 /opt/RubyMine | |
sudo cat >/usr/share/applications/jetbrains-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