Skip to content

Commit

Permalink
Finish 1.0.1.beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Feb 23, 2016
2 parents 5e8f60f + 8c312a5 commit 3824443
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Expand Up @@ -4,11 +4,13 @@ script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
- 2.2.4
- jruby-9.0.4.0
- rbx-2
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx-2
5 changes: 3 additions & 2 deletions Gemfile
Expand Up @@ -2,12 +2,13 @@ source "https://rubygems.org"

gemspec :name => ""
gem 'sxp', git: "git://github.com/gkellogg/sxp-ruby.git"
gem 'rdf', git: "git://github.com/ruby-rdf/rdf.git", branch: "develop"

group :development do
gem "wirble"
gem "byebug", platforms: :mri_21
gem "byebug", platforms: :mri
gem 'psych', platforms: [:mri, :rbx]
gem "rocco", platforms: [:mri_20, :mri_21], git: "git://github.com/rtomayko/rocco.git"
gem "rocco", platforms: :mri, git: "git://github.com/rtomayko/rocco.git"
gem "redcarpet", platforms: :mri
end

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.0.0
1.0.1.beta1
8 changes: 4 additions & 4 deletions ebnf.gemspec
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |gem|

gem.name = "ebnf"
gem.homepage = "http://github.com/gkellogg/ebnf"
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.license = 'Unlicense'
gem.summary = "EBNF parser and parser generator."
gem.description = %q{EBNF is a Ruby parser for W3C EBNF and a parser generator for compliant LL(1) grammars.}

Expand All @@ -26,10 +26,10 @@ Gem::Specification.new do |gem|
gem.test_files = %w()
gem.has_rdoc = false

gem.required_ruby_version = '>= 1.9.3'
gem.required_ruby_version = '>= 2.0'
gem.requirements = []
gem.add_runtime_dependency 'sxp', '~> 0.1', '>= 0.1.3'
gem.add_runtime_dependency 'rdf', '~> 1.1' # Required by sxp
gem.add_runtime_dependency 'sxp', '>= 1.0.0.beta', '< 2'
gem.add_runtime_dependency 'rdf', '>= 2.0.0.beta', '< 3' # Required by sxp
gem.add_development_dependency 'haml', '~> 4.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rspec-its', '~> 1.0'
Expand Down

0 comments on commit 3824443

Please sign in to comment.