graphql_playground-rails 1.0.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7ea42c2cf211c96d1a91e622883708277786b49c
4
- data.tar.gz: c8c68c1063964f9b32a260ec4ce1070fe898a2dc
2
+ SHA256:
3
+ metadata.gz: a8b34ee00d3929fbf5f5774f0b88936e2d7a7eda2953e9fa1d16fc3258642416
4
+ data.tar.gz: 4bc8eff10b37a27cbc2a522793c61fc78ab8fb8bbae20436c882f7e7ff113daf
5
5
  SHA512:
6
- metadata.gz: 1f85bccf3def8c63e1655cb709d7f12d41c9ee791690212793c2e9a799097bd6b6793cb87d8d104ee7ce6ad8d35d462afacf25563778024380868c45b5d1f4fe
7
- data.tar.gz: af5feea1ec0dcbc301568710c4cfa473163e32ac00867dbdcb2c56f00f6df1e3599ccdd89828bb0606b34cd6886e5c2a57de917681a0427519802e39e7fdbf77
6
+ metadata.gz: 76fd2113f22abb551d7a63cac586d21fb98de004aee84b77de21b04d12a4feef1d5b89df74598aceb124c9ae7675a0e12f4d303067787aecca2379acc98b4717
7
+ data.tar.gz: 444980d79ee43f6e88e47e21a6c35e7833572fb5688667ba1d5ae535646733ad1338f085ebed1c3e5ab54b6bf96d6d1e71a1c3df1e53b78d91860b2b0765bbcc
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Gem Version](https://badge.fury.io/rb/graphql_playground-rails.svg)](https://badge.fury.io/rb/graphql_playground-rails)
1
2
  # GraphqlPlayground::Rails
2
3
  A blatant copy of [GraphiQL::Rails](https://github.com/rmosolgo/graphiql-rails) with much less functionality but with [GraphQL Playground](https://github.com/graphcool/graphql-playground) instead.
3
4
 
@@ -27,13 +28,14 @@ Add the engine to `routes.rb`:
27
28
  Rails.application.routes.draw do
28
29
  # ...
29
30
  if Rails.env.development?
30
- mount GraphqlPlayground::Rails::Engine, at: "/graphiql", graphql_path: "/your/endpoint"
31
+ mount GraphqlPlayground::Rails::Engine, at: "/graphql_playground", graphql_path: "/your/endpoint"
31
32
  end
32
33
  end
33
34
  ```
34
35
 
35
36
  ## Contributing
36
- Contribution directions go here.
37
+
38
+ Submit a PR.
37
39
 
38
40
  ## License
39
41
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,6 +1,6 @@
1
1
  module GraphqlPlayground
2
2
  module Rails
3
- VERSION = '1.0.0'
4
- PLAYGROUND_VERSION = '1.5.6'
3
+ VERSION = '2.0.0'
4
+ PLAYGROUND_VERSION = 'latest'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql_playground-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan Apodaca
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-23 00:00:00.000000000 Z
11
+ date: 2018-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  version: '0'
77
77
  requirements: []
78
78
  rubyforge_project:
79
- rubygems_version: 2.6.11
79
+ rubygems_version: 2.7.6
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: An engine to provide the GraphQL Playground