Skip to content

Commit 84c83f7

Browse files
committed
Finish 2.0.0
2 parents cb33bb3 + 3e66e21 commit 84c83f7

File tree

5 files changed

+47
-11
lines changed

5 files changed

+47
-11
lines changed

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-rdfxml/issues)
10+
* Fork and clone the repo:
11+
`git clone [email protected]:your-username/rdf-rdfxml.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-rdfxml/compare/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ group :development do
1515
gem 'rdf-turtle', github: "ruby-rdf/rdf-turtle", branch: "develop"
1616
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
1717
gem "rdf-xsd", github: "ruby-rdf/rdf-xsd", branch: "develop"
18-
gem 'sxp', github: "gkellogg/sxp-ruby"
18+
gem 'sxp', github: "gkellogg/sxp-ruby", branch: "develop"
1919

2020
gem "equivalent-xml"
2121
end

Gemfile-pure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ group :development do
1515
gem 'rdf-turtle', github: "ruby-rdf/rdf-turtle", branch: "develop"
1616
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
1717
gem "rdf-xsd", github: "ruby-rdf/rdf-xsd", branch: "develop"
18-
gem 'sxp', github: "gkellogg/sxp-ruby"
18+
gem 'sxp', github: "gkellogg/sxp-ruby", branch: "develop"
1919

2020
gem "equivalent-xml"
2121
end

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-rdfxml.gemspec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ Gem::Specification.new do |gem|
2323
gem.required_ruby_version = '>= 2.0'
2424
gem.requirements = []
2525

26-
gem.add_runtime_dependency 'rdf', '>= 2.0.0.beta', '< 3'
27-
gem.add_runtime_dependency 'rdf-rdfa', '>= 2.0.0.beta', '< 3'
28-
gem.add_runtime_dependency 'rdf-xsd', '>= 2.0.0.beta', '< 3'
26+
gem.add_runtime_dependency 'rdf', '~> 2.0'
27+
gem.add_runtime_dependency 'rdf-rdfa', '~> 2.0'
28+
gem.add_runtime_dependency 'rdf-xsd', '~> 2.0'
2929
gem.add_runtime_dependency 'htmlentities', '~> 4.3'
3030

3131
#gem.add_development_dependency 'nokogiri' , '>= 1.6.1' # conditionally done in Gemfile
3232
#gem.add_development_dependency 'equivalent-xml' , '~> 0.2' # conditionally done in Gemfile
3333
gem.add_development_dependency 'open-uri-cached', '~> 0.0', '>= 0.0.5'
3434
gem.add_development_dependency 'spira', '= 0.0.12'
35-
gem.add_development_dependency 'json-ld', '>= 2.0.0.beta', '< 3'
35+
gem.add_development_dependency 'json-ld', '~> 2.0'
3636
gem.add_development_dependency 'rspec', '~> 3.4'
3737
gem.add_development_dependency 'rspec-its', '~> 1.2'
38-
gem.add_development_dependency 'rdf-isomorphic', '>= 2.0.0.beta', '< 3'
39-
gem.add_development_dependency 'rdf-turtle', '>= 2.0.0.beta', '< 3'
40-
gem.add_development_dependency 'rdf-spec', '>= 2.0.0.beta', '< 3'
41-
gem.add_development_dependency 'rdf-vocab', '>= 2.0.0.beta', '< 3'
38+
gem.add_development_dependency 'rdf-isomorphic', '~> 2.0'
39+
gem.add_development_dependency 'rdf-turtle', '~> 2.0'
40+
gem.add_development_dependency 'rdf-spec', '~> 2.0'
41+
gem.add_development_dependency 'rdf-vocab', '~> 2.0'
4242
gem.add_development_dependency 'yard' , '~> 0.8'
4343

4444
# Rubinius has it's own dependencies

0 commit comments

Comments
 (0)