Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 3160e2e

Browse files
committed
explicitly require postgres adapter (fixes combustion issues)
1 parent beef7bd commit 3160e2e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
source :rubygems
22

33
gemspec
4-
# fix for failing tests with combustion 0.3.1 and rails 3.2.0
5-
gem "rails", "~> 3.1.0"

lib/activerecord-postgres-array/activerecord.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'active_record/connection_adapters/postgresql_adapter'
2+
13
module ActiveRecord
24
class ArrayTypeMismatch < ActiveRecord::ActiveRecordError
35
end

spec/integration_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
article.languages.should == ["\\","\""]
3838
end
3939
end
40-
40+
4141
describe ".update" do
4242
before(:each) do
4343
@article = Article.create

0 commit comments

Comments
 (0)