-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
44 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
language: ruby | ||
bundler_args: --without debug | ||
script: "bundle exec rspec spec" | ||
before_install: | ||
- 'gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)' | ||
- 'gem update bundler --conservative' | ||
env: | ||
- CI=true | ||
rvm: | ||
- 2.2.2 | ||
- 2.3 | ||
- 2.4 | ||
- 2.5 | ||
- 2.6 | ||
- jruby-9 | ||
- rbx-3 | ||
- 2.7 | ||
- jruby | ||
- rbx | ||
cache: bundler | ||
sudo: false | ||
matrix: | ||
allow_failures: | ||
- rvm: jruby-9 | ||
- rvm: rbx-3 | ||
- rvm: jruby | ||
- rvm: rbx | ||
dist: trusty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.2 | ||
1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ Gem::Specification.new do |gem| | |
gem.license = 'Unlicense' | ||
gem.summary = 'A pure-Ruby implementation of a universal S-expression parser.' | ||
gem.description = 'Universal S-expression parser with specific support for Common Lisp, Scheme, and RDF/SPARQL' | ||
gem.rubyforge_project = 'sxp' | ||
|
||
gem.author = ['Arto Bendiken', 'Gregg Kellogg'] | ||
gem.email = ['[email protected]', '[email protected]'] | ||
|
@@ -21,11 +20,11 @@ Gem::Specification.new do |gem| | |
gem.executables = %w(sxp2rdf sxp2json sxp2xml sxp2yaml) | ||
gem.require_paths = %w(lib) | ||
|
||
gem.required_ruby_version = '>= 2.2.2' | ||
gem.required_ruby_version = '>= 2.4' | ||
gem.requirements = [] | ||
gem.add_development_dependency 'rspec', '~> 3.8' | ||
gem.add_development_dependency 'yard' , '~> 0.9.18' | ||
gem.add_runtime_dependency 'rdf', '~> 3.0' | ||
gem.add_development_dependency 'rspec', '~> 3.9' | ||
gem.add_development_dependency 'yard' , '~> 0.9.20' | ||
gem.add_runtime_dependency 'rdf', '~> 3.1' | ||
|
||
gem.post_install_message = nil | ||
end |