Top Level Namespace

Defined Under Namespace

Modules: SQLite3 Classes: String

Instance Method Summary collapse

Instance Method Details

#asplode(missing) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'ext/sqlite3/extconf.rb', line 54

def asplode missing
  if RUBY_PLATFORM =~ /mingw|mswin/
    abort "#{missing} is missing. Install SQLite3 from " +
          "http://www.sqlite.org/ first."
  else
    abort <<-error
#{missing} is missing. Try 'brew install sqlite3',
'yum install sqlite-devel' or 'apt-get install libsqlite3-dev'
and check your shared library search path (the
location where your sqlite3 shared library is located).
    error
  end
end