Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ script: "bundle exec rspec spec"
sudo: false
cache: bundler
rvm:
- 2.1
- 2.2.2
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ source "https://rubygems.org"

gemspec

gem 'activesupport', '< 5.0.0' if RUBY_VERSION =~ /2\.1\..*/
gem 'pry-byebug' unless ENV["CI"]
2 changes: 1 addition & 1 deletion active_triples-solrizer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.summary = %q{Provide default solrizer implementation for ActiveTriples.}
s.description = %q{active_triples-solrizer provides a default solr indexing implementation for ActiveTriples.}
s.license = "APACHE2"
s.required_ruby_version = '>= 2.2.0'
s.required_ruby_version = '>= 2.1'

s.add_dependency 'rsolr'
s.add_dependency('active-triples')
Expand Down
2 changes: 1 addition & 1 deletion lib/active_triples/solrizer/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ActiveTriples
module Solrizer
VERSION = "0.3.0"
VERSION = "0.3.1"
end
end