Skip to content

Commit

Permalink
Be more permissive about algolia client (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobrinho authored and raphi committed Nov 2, 2017
1 parent 6e52c56 commit 5a7ee70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,7 +1,7 @@
source "http://rubygems.org"

gem 'json', '~> 1.8', '>= 1.8.6'
gem 'algoliasearch', '~> 1.17.0'
gem 'algoliasearch', '>= 1.17.0', '< 2.0.0'

if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
gem 'rubysl', '~> 2.0', :platform => :rbx
Expand Down
6 changes: 3 additions & 3 deletions algoliasearch-rails.gemspec
Expand Up @@ -77,19 +77,19 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json>, [">= 1.5.1"])
s.add_runtime_dependency(%q<algoliasearch>, ["~> 1.17.0"])
s.add_runtime_dependency(%q<algoliasearch>, [">= 1.17.0", "< 2.0.0"])
s.add_development_dependency(%q<will_paginate>, [">= 2.3.15"])
s.add_development_dependency(%q<kaminari>, [">= 0"])
s.add_development_dependency "travis"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
else
s.add_dependency(%q<json>, [">= 1.5.1"])
s.add_dependency(%q<algoliasearch>, ["~> 1.17.0"])
s.add_dependency(%q<algoliasearch>, [">= 1.17.0", "< 2.0.0"])
end
else
s.add_dependency(%q<json>, [">= 1.5.1"])
s.add_dependency(%q<algoliasearch>, ["~> 1.17.0"])
s.add_dependency(%q<algoliasearch>, [">= 1.17.0", "< 2.0.0"])
end
end

0 comments on commit 5a7ee70

Please sign in to comment.