Skip to content

Commit 3849427

Browse files
committed
Finish 2.0.0
2 parents 5e82394 + 088023c commit 3849427

4 files changed

Lines changed: 45 additions & 8 deletions

File tree

CONTRIBUTING.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# How to contribute
2+
3+
Community contributions are essential for keeping Ruby RDF great. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
4+
5+
## Development
6+
7+
This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
8+
9+
* create or respond to an issue on the [Github Repository](http://github.com/ruby-rdf/rdf-turtle/issues)
10+
* Fork and clone the repo:
11+
`git clone git@github.com:your-username/rdf-turtle.git`
12+
* Install bundle:
13+
`bundle install`
14+
* Create tests in RSpec and make sure you achieve at least 90% code coverage for the feature your adding or behavior being modified.
15+
* Push to your fork and [submit a pull request][pr].
16+
17+
## Do's and Dont's
18+
* Do your best to adhere to the existing coding conventions and idioms.
19+
* Don't use hard tabs, and don't leave trailing whitespace on any line.
20+
Before committing, run `git diff --check` to make sure of this.
21+
* Do document every method you add using [YARD][] annotations. Read the
22+
[tutorial][YARD-GS] or just look at the existing code for examples.
23+
* Don't touch the `.gemspec` or `VERSION` files. If you need to change them,
24+
do so on your private branch only.
25+
* Do feel free to add yourself to the `CREDITS` file and the
26+
corresponding list in the the `README`. Alphabetical order applies.
27+
* Don't touch the `AUTHORS` file. If your contributions are significant
28+
enough, be assured we will eventually add you in there.
29+
* Do note that in order for us to merge any non-trivial changes (as a rule
30+
of thumb, additions larger than about 15 lines of code), we need an
31+
explicit [public domain dedication][PDD] on record from you.
32+
33+
[YARD]: http://yardoc.org/
34+
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
35+
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
36+
[pr]: https://github.com/ruby-rdf/rdf-turtle/compare/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ group :development, :test do
1616
gem 'rdf-spec', github: "ruby-rdf/rdf-spec", branch: "develop"
1717
gem 'rdf-isomorphic', github: "ruby-rdf/rdf-isomorphic", branch: "develop"
1818
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
19-
gem 'sxp', github: "gkellogg/sxp-ruby"
19+
gem 'sxp', github: "gkellogg/sxp-ruby", branch: "develop"
2020
gem "redcarpet", platforms: :ruby
2121
gem 'simplecov', require: false, platform: :mri
2222
gem 'coveralls', require: false, platform: :mri

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0.beta1
1+
2.0.0

rdf-turtle.gemspec

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,16 @@ Gem::Specification.new do |gem|
2626

2727
gem.required_ruby_version = '>= 2.0'
2828
gem.requirements = []
29-
gem.add_runtime_dependency 'rdf', '>= 2.0.0.beta', '< 3'
30-
gem.add_runtime_dependency 'ebnf', '~> 1.0', '>= 1.0.1.beta'
29+
gem.add_runtime_dependency 'rdf', '~> 2.0'
30+
gem.add_runtime_dependency 'ebnf', '~> 1.0', '>= 1.0.1'
3131
gem.add_development_dependency 'rspec', '~> 3.0'
3232
gem.add_development_dependency 'rspec-its', '~> 1.0'
33-
gem.add_development_dependency 'rdf-isomorphic', '>= 2.0.0.beta', '< 3'
34-
gem.add_development_dependency 'json-ld', '>= 2.0.0.beta', '< 3'
35-
gem.add_development_dependency 'rdf-spec', '>= 2.0.0.beta', '< 3'
36-
gem.add_development_dependency 'rdf-vocab', '>= 2.0.0.beta', '< 3'
33+
gem.add_development_dependency 'rdf-isomorphic', '~> 2.0'
34+
gem.add_development_dependency 'json-ld', '~> 2.0'
35+
gem.add_development_dependency 'rdf-spec', '~> 2.0'
36+
gem.add_development_dependency 'rdf-vocab', '~> 2.0'
3737

3838
gem.add_development_dependency 'rake', '~> 10.4'
39+
gem.add_development_dependency 'yard' , '~> 0.8'
3940
gem.post_install_message = nil
4041
end

0 commit comments

Comments
 (0)