Skip to content

Commit 5a1f6c5

Browse files
committed
Fix some dependent gem versions to support Ruby 1.9.3.
1 parent 877aba6 commit 5a1f6c5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sparql-client.gemspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,19 @@ Gem::Specification.new do |gem|
3232
gem.requirements = []
3333
gem.add_runtime_dependency 'rdf', '>= 1.99', '< 3'
3434
gem.add_runtime_dependency 'net-http-persistent', '~> 2.9'
35+
gem.add_runtime_dependency 'json', '~> 1.8'
36+
gem.add_runtime_dependency 'tins', '= 1.6.0'
3537
gem.add_development_dependency 'sparql', '>= 1.99', '< 3'
3638
gem.add_development_dependency 'rdf-spec', '>= 1.99', '< 3'
3739
gem.add_development_dependency 'rdf-turtle','>= 1.99', '< 3'
3840
gem.add_development_dependency 'rspec', '~> 3.0.0'
3941
gem.add_development_dependency 'rspec-its', '~> 1.0'
4042
gem.add_development_dependency 'webmock', '~> 1.15'
4143
gem.add_development_dependency 'yard' , '~> 0.8'
44+
gem.add_development_dependency 'rack' , '~> 0.8'
4245

4346
# Rubinius has it's own dependencies
44-
if RUBY_ENGINE == "rbx" && RUBY_VERSION >= "2.1.0"
47+
if RUBY_ENGINE == "rbx" && RUBY_VERSION >= "1.6"
4548
gem.add_runtime_dependency "json"
4649
end
4750

0 commit comments

Comments
 (0)