graphql-rails-api 0.7.4 → 0.7.5
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.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/lib/graphql/rails/api/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be9e058e2a7ae159b7a92a033421fca0ec479cef7bd59a31519fb1c13ec4b553
|
|
4
|
+
data.tar.gz: 13f8555992be67e1491aebcfeb25b8cb995dcb8906b28d27d32f2a5985f3e34b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4a6e96f941bdb060b1c1e613a1318938fcd11289fd60995500ea0ba46235ef7889e601d200f02a34a7fdfc3e0f24297ac1fe208bde429d1ef089a42eb71ee98
|
|
7
|
+
data.tar.gz: a935282ed62517179e467d7cf5b74605c9088336993894ef7b3b90d2db4ca02d59999f0707bd76fbf9508d40fb7eb651640c14860326dd5aac54c6b853af8926
|
data/README.md
CHANGED
|
@@ -6,8 +6,16 @@ Need any help or wanna talk with me about it on slack ? Don't hesitate,
|
|
|
6
6
|
https://bit.ly/2KvV8Pk
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
|
-
Add these lines to your application's Gemfile:
|
|
10
9
|
|
|
10
|
+
Create a rails app via
|
|
11
|
+
```
|
|
12
|
+
rails new project-name --api --database=postgresql
|
|
13
|
+
cd project-name
|
|
14
|
+
bundle
|
|
15
|
+
rails db:create
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Add these lines to your application's Gemfile:
|
|
11
19
|
```ruby
|
|
12
20
|
gem 'graphql'
|
|
13
21
|
gem 'graphql-rails-api'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphql-rails-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- poilon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphql
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.1.
|
|
33
|
+
version: 1.1.3
|
|
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: 1.1.
|
|
40
|
+
version: 1.1.3
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rails
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|