From a0bebf3e8785d3040428a16493eee67851bce71f Mon Sep 17 00:00:00 2001 From: "scotty.b.brown@gmail.com" Date: Sun, 2 Jan 2011 04:17:14 +0000 Subject: [PATCH] Fixing #189 - i read it wrong the first time. git-svn-id: https://beef.googlecode.com/svn/trunk@652 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- INSTALL | 5 +++++ install.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index 93561d351..5af36bae4 100644 --- a/INSTALL +++ b/INSTALL @@ -31,6 +31,11 @@ Most of the contents of this file will eventually be added to /install.rb. In th sudo apt-get install libsqlite3-dev sqlite3 sqlite3-doc + You also need to install the ruby-dev package (required for mkmf) + + sudo apt-get install ruby-dev + + 4. Prerequisites (Mac OSX) Make sure you have XCode installed - which provided the sqlite support Beef needs diff --git a/install.rb b/install.rb index 0b2953e6d..9f8a8eca1 100644 --- a/install.rb +++ b/install.rb @@ -6,7 +6,7 @@ puts "\nPlease make sure you have installed SQLite before proceeding. For instr # array of required gems - add to as needed (specify a version if needed eg "gem_name, =x.x.x") $gems_required = ["ansi", "dm-core", "json", "data_objects", "do_sqlite3", "sqlite3-ruby", "dm-sqlite-adapter", - "parseconfig", "erubis", "dm-migrations", "ruby-dev"] + "parseconfig", "erubis", "dm-migrations"] # array of missing non-version specific gems installed $gems_missing = Array.new