Skip to content

Commit

Permalink
Loosen rsolr dependency restriction to support rsolr 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Mar 4, 2016
1 parent fee2346 commit badf620
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blacklight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.add_dependency "globalid"
s.add_dependency "nokogiri", "~>1.6" # XML Parser
s.add_dependency "kaminari", ">= 0.15" # the pagination (page 1,2,3, etc..) of our search results
s.add_dependency "rsolr", "~> 1.0.11" # Library for interacting with rSolr.
s.add_dependency "rsolr", "~> 1.0", ">= 1.0.6" # Library for interacting with rSolr.
s.add_dependency "bootstrap-sass", "~> 3.2"
s.add_dependency "deprecation"
s.add_dependency "twitter-typeahead-rails", '~> 0.11'
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/blacklight/solr4_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def install_jettywrapper
end

def add_rsolr_gem
gem "rsolr".dup, "~> 1.0.6"
gem "rsolr".dup, "~> 1.0"
end

end
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/blacklight/solr5_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def install_solrwrapper
end

def add_rsolr_gem
gem 'rsolr', '~> 1.0.6'
gem 'rsolr', '~> 1.0'
end
end
end

0 comments on commit badf620

Please sign in to comment.