Is it possible to install a RubyGem that I created in NetBeans, through NetBeans without uploading it to RubyForge?
A:
From here:
gem install
will install the named gem. It will attempt a local installation (i.e. a .gem file in the current directory), and if that fails, it will attempt to download and install the most recent version of the gem you want.
So, you should be able to just run gem from the directory with your .gem file.
Pesto
2009-03-05 19:46:42
I was hoping to do it right from netbeans. So that I don't have to leave the IDE each time I 'rake gem' to install it.
semmons99
2009-03-06 18:19:21
A:
Looks like there is currently no way to do this. Just have to do the normal way and install your gem from the command line.
semmons99
2009-03-13 17:07:32