Last active
April 12, 2019 08:19
-
-
Save yuri-zubov/7704468 to your computer and use it in GitHub Desktop.
Install RubyMine 6.0
This file contains 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
wget http://download-ln.jetbrains.com/ruby/RubyMine-6.0.tar.gz -O /tmp/rubymine && sudo tar xvfz /tmp/rubymine -C /opt/ && sudo ln -fs /opt/RubyMine-6.0 /opt/Rubymine && sudo ln -fs /opt/Rubymine/bin/rubymine.sh /usr/bin/mine && bash -c 'cat > ~/.local/share/applications/jetbrains-rubymine.desktop | |
<<EOF | |
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Name=RubyMine | |
Icon=/opt/RubyMine/bin/RMlogo.svg | |
Exec="/opt/RubyMine/bin/rubymine.sh" %f | |
Comment=The Drive to Develop | |
Categories=Development;IDE; | |
Terminal=false | |
StartupWMClass=jetbrains-rubymine | |
EOF' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment