Skip to content

Commit

Permalink
fix test in sunspot_rails
Browse files Browse the repository at this point in the history
  • Loading branch information
takanamito committed Jul 16, 2016
1 parent f243171 commit 027c0fe
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
7 changes: 4 additions & 3 deletions sunspot_rails/gemfiles/rails-3.0.0
Expand Up @@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
group :test do
gem 'rspec-rails', '~> 2.14.0'
gem 'progress_bar', '~> 1.0.5', require: false
gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
end

group :postgres do
gem 'pg'
gem 'pg'
end

group :sqlite do
gem 'sqlite3', '~> 1.3.7'
end
gem 'sqlite3', '~> 1.3.7'
end
7 changes: 4 additions & 3 deletions sunspot_rails/gemfiles/rails-3.1.0
Expand Up @@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
group :test do
gem 'rspec-rails', '~> 2.14.0'
gem 'progress_bar', '~> 1.0.5', require: false
gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
end

group :postgres do
gem 'pg'
gem 'pg'
end

group :sqlite do
gem 'sqlite3', '~> 1.3.7'
end
gem 'sqlite3', '~> 1.3.7'
end
7 changes: 4 additions & 3 deletions sunspot_rails/gemfiles/rails-3.2.0
Expand Up @@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
group :test do
gem 'rspec-rails', '~> 2.14.0'
gem 'progress_bar', '~> 1.0.5', require: false
gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
end

group :postgres do
gem 'pg'
gem 'pg'
end

group :sqlite do
gem 'sqlite3', '~> 1.3.7'
end
gem 'sqlite3', '~> 1.3.7'
end
7 changes: 4 additions & 3 deletions sunspot_rails/gemfiles/rails-4.0.0
Expand Up @@ -10,15 +10,16 @@ gem 'sunspot_solr', :path => File.expand_path('../../../sunspot_solr', __FILE__)
gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)

group :test do
gem 'protected_attributes' # Rails 4 support for attr_accessor so specs still work
gem 'protected_attributes' # Rails 4 support for attr_accessor so specs still work
gem 'rspec-rails', '~> 2.14.0'
gem 'progress_bar', '~> 1.0.5', require: false
gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
end

group :postgres do
gem 'pg'
gem 'pg'
end

group :sqlite do
gem 'sqlite3', '~> 1.3.7'
gem 'sqlite3', '~> 1.3.7'
end

0 comments on commit 027c0fe

Please sign in to comment.