aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-09-22 14:33:44 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-09-22 14:33:44 -0300
commit090c9ae3a35f9dc4866b52dc696e7d07a5bb7189 (patch)
tree5180987e24aade74fc253f04553d52f1d93bd53c /activerecord
parent48a108d55b6bf50c7960c1c1e10fd1f457fd1ada (diff)
downloadrails-090c9ae3a35f9dc4866b52dc696e7d07a5bb7189.tar.gz
rails-090c9ae3a35f9dc4866b52dc696e7d07a5bb7189.tar.bz2
rails-090c9ae3a35f9dc4866b52dc696e7d07a5bb7189.zip
Missing the mysql2 gem here
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/mysql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
index 1d453e642d..d645376cb2 100644
--- a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
@@ -19,7 +19,7 @@ module ActiveRecord
begin
require 'mysql'
rescue LoadError
- raise "!!! Missing the mysql gem. Add it to your Gemfile: gem 'mysql2'"
+ raise "!!! Missing the mysql2 gem. Add it to your Gemfile: gem 'mysql2'"
end
unless defined?(Mysql::Result) && Mysql::Result.method_defined?(:each_hash)