How to Send RubyMine Notifications to Growl?

May be This code will help you # -*- ruby -*- module Autotest::RedGreen Autotest.send(:alias_method, :real_ruby, :ruby) Autotest.send(:define_method, :ruby) do |*args| real_ruby + %[ -rrubygems -e “require ‘redgreen'” ] end # Clean the output so other modules can work correctly Autotest.add_hook :ran_command do |at| at.results.each do |r| r.gsub!(“\033[31m”, “”) r.gsub!(“\033[32m”, “”) r.gsub!(“\033[33m”, “”) r.gsub!(“\033[0m”, “”) end … Read more

How to manually install a pypi module without pip/easy_install?

Download the package unzip it if it is zipped cd into the directory containing setup.py If there are any installation instructions contained in documentation, read and follow the instructions OTHERWISE type in python setup.py install You may need administrator privileges for step 5. What you do here depends on your operating system. For example in … Read more