Evan Martin (evan) wrote in evan_tech,
Evan Martin
evan
evan_tech

making ruby apps work with or without gems

I have an application that does require 'sqlite3'. This works if you've installed the sqlite3 package directly. If you instead install it via gem install sqlite3-ruby, it installs into a subdirectory and the require fails; you have to require 'rubygems' first. But that fails to run if you don't have RubyGems installed.

Is there a standard way to make this work? Or should I just prefix all my programs with
begin require 'rubygems' except Exception; end
?

Within a library that uses sqlite, should it also do the same trick? Or should it require that the caller has done this?
Tags: fourth wall, ruby
Subscribe

  • blog moved

    As described elsewhere, I've quit LiveJournal. If you're interested in my continuing posts, you should look at one of these (each contains feed…

  • dremel

    They published a paper on Dremel, my favorite previously-unpublished tool from the Google toolchest. Greg Linden discusses it: "[...] it is capable…

  • treemaps

    I finally wrote up my recent adventures in treemapping, complete with nifty clickable visualizations.

  • Post a new comment

    Error

    default userpic
    When you submit the form an invisible reCAPTCHA check will be performed.
    You must follow the Privacy Policy and Google Terms of use.
  • 9 comments