I have a C extension module for Python and I want to make it available to Rubyists.
The source has a number of C modules, with only one being Python-dependent. The rest depend only on each other and the standard library. I can build it with python setup.py build in the usual way.
I've been experimenting with adding Ruby support using n...
> jruby -S newgem testgem --simple -T test_unit
invalid option: -T
Newgem v1.5.1
Also tried
> jruby -S newgem testgem --simple --test-with=test_unit
invalid option: --test-with=test_unit
Also tried MRI.
Any ideas?
Thanks
...
I'm using newgem to manage my gem and according to the readme you just change the version in the top level file of the gem name. However rake gem is not picking up the gem version i am specifiying.
module mygem
VERSION = "0.0.1.beta1"
end
when i run the rake task rake gem it builds '0.0.1', not 0.0.1.beta1
is there a rake argument ...