Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bogdanRada/5974873 to your computer and use it in GitHub Desktop.
Save bogdanRada/5974873 to your computer and use it in GitHub Desktop.
#!/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