http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/
http://stackoverflow.com/questions/2577346/how-to-install-gem-from-github-source
well, that depends on the project in question. Some projects have a *.gemspec file in their root directory. In that case, it would be
Other projects have a rake task, called "gem" or "build" or something like that, in this case you have to invoke "rake ", but that depends on the project. In both cases you have to download the source. | ||||||
|
Read this post > http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/ mlzboy@mlzboy-MacBook ~/source/eventmachine $ gem list --local|grep eventmachine/home/mlzboy/.rvm/rubies/ruby-1.9.2-p0/bin/gem:4: warning: Insecure world writable dir /usr/local/sbin in PATH, mode 040777 eventmachine (1.0.0.beta.2, 0.12.10) mlzboy@mlzboy-MacBook ~/source/eventmachine $ gem uninstall eventmachine -v 0.12.10 /home/mlzboy/.rvm/rubies/ruby-1.9.2-p0/bin/gem:4: warning: Insecure world writable dir /usr/local/sbin in PATH, mode 040777 Successfully uninstalled eventmachine-0.12.10 |