jsonapi-rb 0.1.1 → 0.1.2

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ac487a1a60b379764b46de979beeb4c1645aa70
4
- data.tar.gz: e4bf138540da13af6e94bc47d087c35ab8f7a8ef
3
+ metadata.gz: 47fe78d2690b9d17ee6e4e0bc07569d06d1bd202
4
+ data.tar.gz: 675aaae3f844621e44bef40af5c2db3ee6acf4be
5
5
  SHA512:
6
- metadata.gz: 8e93a5603c02b17087020ef8dd300b1ba14fecd1bd7a4ff37c383436f1ed7384b730d27b4523a5b850c2df7d911200318c2058e6e8d90d77239f3c1947c0ca78
7
- data.tar.gz: ad5157b3df4100d0596a3a92b1e0ffa19c5537126bafef51cb17576d3493e50da20d03cf803e42f9aae84f92ab1de5aeeb06b4f562afdc999eaeaefa7ca3e480
6
+ metadata.gz: 10f0680ab9d12c1ba413b7c77ced29d1dc38a6aa66c2ab2fcb4030e5c818d2cdfd1b10f563bfa4c594746396ff21d3c5f222eb4179e3dc1e8d0899d3ec3539bb
7
+ data.tar.gz: 7744aafcbf0c18b45f532fe38fba0bac4ec8056e87cdec764593bcdd0424d46644c72ede5f8a5513b350c52513f1002e9579a841f8f60e25e9769eee3b9f5486
data/README.md CHANGED
@@ -6,6 +6,23 @@ Ruby gem for building and consuming [JSON API](http://jsonapi.org) documents.
6
6
  [![Gem Version](https://badge.fury.io/rb/jsonapi-rb.svg)](https://badge.fury.io/rb/jsonapi-rb)
7
7
  [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/jsonapi-rb/Lobby)
8
8
 
9
+ ## Resources
10
+
11
+ * Chat: [gitter](http://gitter.im/jsonapi-rb)
12
+ * Twitter: [@jsonapirb](http://twitter.com/jsonapirb)
13
+ * Docs: [jsonapi-rb.org](http://jsonapi-rb.org)
14
+
15
+ ## Code
16
+
17
+ jsonapi-rb is simply a bundle of:
18
+ * [jsonapi-serializable](https://github.com/jsonapi-rb/jsonapi-serializable) for serialization, and
19
+ * [jsonapi-deserializable](https://github.com/jsonapi-rb/jsonapi-deserializable) for deserialization.
20
+
21
+ For framework integrations, see:
22
+ * [jsonapi-hanami](https://github.com/jsonapi-rb/jsonapi-hanami) for [Hanami](http://hanamirb.org), and
23
+ * [jsonapi-rails](https://github.com/jsonapi-rb/jsonapi-rails) for [Ruby on Rails](http://rubyonrails.org).
24
+
25
+
9
26
  ## Installation
10
27
  ```ruby
11
28
  # In Gemfile
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonapi-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Hosseini
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-02 00:00:00.000000000 Z
11
+ date: 2017-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jsonapi-serializable
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.1
19
+ version: '0.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.1
26
+ version: '0.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jsonapi-deserializable
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '='
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.1
33
+ version: '0.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '='
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.1
40
+ version: '0.1'
41
41
  description: Build and consume JSON API documents.
42
42
  email: lucas.hosseini@gmail.com
43
43
  executables: []