> Hi, > I want to add a new package from an existing gem (I am upstream author). > > > I'd like to know how to avoid the rubygems dependency in the ruby gem > library. > The package indeed depend on an other gem. If I remove the require > 'rubygems' from the code, the gem code is not found when running unit > tests.
You could change the shebang to #!/usr/bin/env ruby -rubygems (but I believe Gem2Deb will break that hotfix) but as far as fixing the issue with Gems inside of the app itself, you'll need to contact the upstream author, as Ryan Tomayko put it once: "I cannot unrequire rubygems, but you can not require it in the first place." -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

