I
Iñaki Baz Castillo
Hi, supposing a gemspec containing:
Gem::Specification.new do |spec|
spec.name =3D "xxx-handler"
[...]
spec.extensions =3D ["ext/xxx_parser/extconf.rb"]
end
when running "gem install xx-handler" the compiled extension
xxx_parser.so is installed into GEMS_DIR/xxx-handler/lib/ directory.
Is it possible to tell the gemspec file to install the extension in a
subdirectory within GEMS_DIR/xxx-handler/lib/ ?
Thanks a lot.
--=20
I=C3=B1aki Baz Castillo
<[email protected]>
Gem::Specification.new do |spec|
spec.name =3D "xxx-handler"
[...]
spec.extensions =3D ["ext/xxx_parser/extconf.rb"]
end
when running "gem install xx-handler" the compiled extension
xxx_parser.so is installed into GEMS_DIR/xxx-handler/lib/ directory.
Is it possible to tell the gemspec file to install the extension in a
subdirectory within GEMS_DIR/xxx-handler/lib/ ?
Thanks a lot.
--=20
I=C3=B1aki Baz Castillo
<[email protected]>