Skip to content

Commit ddcb4f5

Browse files
committed
Use 'rdf' '>= 2.0.0.beta', '< 3'.
1 parent eb2ffc7 commit ddcb4f5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ group :debug do
1414
end
1515

1616
group :development, :test do
17-
gem 'simplecov', require: false, platform: :mri_21 # Travis doesn't understand 22 yet.
18-
gem 'coveralls', require: false, platform: :mri_21 # Travis doesn't understand 22 yet.
19-
end
17+
gem 'simplecov', require: false, platform: :mri
18+
gem 'coveralls', require: false, platform: :mri
19+
end

lib/rdf/spec/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ def self.to_str() STRING end
1414

1515
##
1616
# @return [Array(String, String, String, String)]
17-
def self.to_a() [MAJOR, MINOR, TINY, EXTRA].compact end
17+
def self.to_a() STRING.split(".") end
1818
end
1919
end; end

rdf-spec.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gem::Specification.new do |gem|
2727

2828
gem.required_ruby_version = '>= 2.0'
2929
gem.requirements = []
30-
gem.add_runtime_dependency 'rdf', '>= 1.99', '< 3'
30+
gem.add_runtime_dependency 'rdf', '>= 2.0.0.beta', '< 3'
3131
gem.add_runtime_dependency 'rdf-isomorphic', '>= 1.99', '< 3'
3232
gem.add_runtime_dependency 'rspec', '~> 3.0'
3333
gem.add_runtime_dependency 'rspec-its', '~> 1.0'

0 commit comments

Comments
 (0)