rdf-json 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README +28 -5
  3. data/VERSION +1 -1
  4. metadata +32 -44
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cf4c7b7eaa31ad1a98dd9281fbaf109abfadbd4d
4
+ data.tar.gz: f3e6bba1cf25b2653eee2ba6190f5076f8f45dfa
5
+ SHA512:
6
+ metadata.gz: 87086f402638f4e6e806546468a4d052ac7ce1443fd72fab43a4a3441e0c9ee0def2e74049d34e8b31f22ef6fab10fbeb441283865863c3c4134e125f420d59d
7
+ data.tar.gz: 6c11b46049d3478bf7f35aea9ddc0ea865b3032b3c20a6eae9293112b0b4b9d88c173a4e486b942b0c8c2f9a8dd88545ccf34337aa4b3b7fe57c7279a17a7fb3
data/README CHANGED
@@ -7,6 +7,9 @@ This is an [RDF.rb][] plugin that adds support for parsing/serializing
7
7
  * <http://github.com/bendiken/rdf-json>
8
8
  * <http://blog.datagraph.org/2010/04/parsing-rdf-with-ruby>
9
9
 
10
+ [![Gem Version](https://badge.fury.io/rb/rdf-json.png)](http://badge.fury.io/rb/rdf-json)
11
+ [![Build Status](https://travis-ci.org/ruby-rdf/rdf-json.png)](https://travis-ci.org/ruby-rdf/rdf-json)
12
+
10
13
  Documentation
11
14
  -------------
12
15
 
@@ -19,8 +22,7 @@ Documentation
19
22
  Dependencies
20
23
  ------------
21
24
 
22
- * [RDF.rb](http://rubygems.org/gems/rdf) (>= 1.0)
23
- * [JSON](http://rubygems.org/gems/json_pure) (>= 1.4)
25
+ * [RDF.rb](http://rubygems.org/gems/rdf) (>= 1.1)
24
26
 
25
27
  Installation
26
28
  ------------
@@ -57,11 +59,32 @@ Contributors
57
59
 
58
60
  Refer to the accompanying {file:CREDITS} file.
59
61
 
60
- License
61
- -------
62
+ ## Contributing
63
+
64
+ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
65
+
66
+ * Do your best to adhere to the existing coding conventions and idioms.
67
+ * Don't use hard tabs, and don't leave trailing whitespace on any line.
68
+ Before committing, run `git diff --check` to make sure of this.
69
+ * Do document every method you add using [YARD][] annotations. Read the
70
+ [tutorial][YARD-GS] or just look at the existing code for examples.
71
+ * Don't touch the `.gemspec` or `VERSION` files. If you need to change them,
72
+ do so on your private branch only.
73
+ * Do feel free to add yourself to the `CREDITS` file and the
74
+ corresponding list in the the `README`. Alphabetical order applies.
75
+ * Don't touch the `AUTHORS` file. If your contributions are significant
76
+ enough, be assured we will eventually add you in there.
77
+ * Do note that in order for us to merge any non-trivial changes (as a rule
78
+ of thumb, additions larger than about 15 lines of code), we need an
79
+ explicit [public domain dedication][PDD] on record from you.
80
+
81
+ ## License
62
82
 
63
83
  This is free and unencumbered public domain software. For more information,
64
84
  see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
65
85
 
66
86
  [RDF.rb]: http://rdf.rubyforge.org/
67
- [RDF/JSON]: http://n2.talis.com/wiki/RDF_JSON_Specification
87
+ [RDF/JSON]: http://www.w3.org/TR/2013/NOTE-rdf-json-20131107/
88
+ [YARD]: http://yardoc.org/
89
+ [YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
90
+ [PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
metadata CHANGED
@@ -1,96 +1,85 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Arto Bendiken
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-01-19 00:00:00.000000000 Z
11
+ date: 2013-11-14 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rdf
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
- version: '1.0'
19
+ version: 1.1.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
- version: '1.0'
26
+ version: 1.1.0
30
27
  - !ruby/object:Gem::Dependency
31
- name: json_pure
28
+ name: rdf-spec
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
- version: '1.4'
38
- type: :runtime
33
+ version: 1.1.0
34
+ type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
- version: '1.4'
40
+ version: 1.1.0
46
41
  - !ruby/object:Gem::Dependency
47
- name: rdf-spec
42
+ name: rdf-isomorphic
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - '>='
52
46
  - !ruby/object:Gem::Version
53
- version: '1.0'
47
+ version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - '>='
60
53
  - !ruby/object:Gem::Version
61
- version: '1.0'
54
+ version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - '>='
68
60
  - !ruby/object:Gem::Version
69
- version: '2.12'
61
+ version: '2.14'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - '>='
76
67
  - !ruby/object:Gem::Version
77
- version: '2.12'
68
+ version: '2.14'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: yard
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - '>='
84
74
  - !ruby/object:Gem::Version
85
- version: '0.8'
75
+ version: 0.8.5
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - '>='
92
81
  - !ruby/object:Gem::Version
93
- version: '0.8'
82
+ version: 0.8.5
94
83
  description: RDF.rb plugin for parsing/serializing RDF/JSON data.
95
84
  email: public-rdf-ruby@w3.org
96
85
  executables: []
@@ -109,30 +98,29 @@ files:
109
98
  - lib/rdf/json/version.rb
110
99
  - lib/rdf/json/writer.rb
111
100
  - lib/rdf/json.rb
112
- homepage: http://ruby-rdf.github.com/rdf-json/
101
+ homepage: http://ruby-rdf.github.com/rdf-json
113
102
  licenses:
114
103
  - Public Domain
104
+ metadata: {}
115
105
  post_install_message:
116
106
  rdoc_options: []
117
107
  require_paths:
118
108
  - lib
119
109
  required_ruby_version: !ruby/object:Gem::Requirement
120
- none: false
121
110
  requirements:
122
- - - ! '>='
111
+ - - '>='
123
112
  - !ruby/object:Gem::Version
124
- version: 1.8.1
113
+ version: 1.9.2
125
114
  required_rubygems_version: !ruby/object:Gem::Requirement
126
- none: false
127
115
  requirements:
128
- - - ! '>='
116
+ - - '>='
129
117
  - !ruby/object:Gem::Version
130
118
  version: '0'
131
119
  requirements: []
132
120
  rubyforge_project: rdf
133
- rubygems_version: 1.8.24
121
+ rubygems_version: 2.1.11
134
122
  signing_key:
135
- specification_version: 3
123
+ specification_version: 4
136
124
  summary: RDF/JSON support for RDF.rb.
137
125
  test_files: []
138
126
  has_rdoc: false