graphql-playground 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b041ed5e124d7f1e8dceb0626368de67cea3a6d1b31c1e4dcdcd2a42524aed9
4
- data.tar.gz: da7d67a6569e4d827f5947347332fa8d022c01bf04a25c23996de05132861fbb
3
+ metadata.gz: 78586c3779ad3574215fde715b33cf3436b354606919d5c63ced6b92bf3d4ad9
4
+ data.tar.gz: 66c1f2d7c21c57bffe63d475635da2208468964c54e840f42e43f4abe0192bb6
5
5
  SHA512:
6
- metadata.gz: 96c9089a20ee91fe204d49d087a753df877c29abc337f14bd62935d1762b75d6d21e3e9e93198f5ba7848889782ca002d4b86ce6e57d115b7cc047bfe676fc5d
7
- data.tar.gz: 06cc2de36ad0dcb6450ea62b7e068c66cfe0d8afb67f09e18a1cc0508906ad8d41788734c6c450c7c6907d13a245eb9a896c8619309161d170c73f9376116259
6
+ metadata.gz: 8416f7e062bc01147b89c45703fb1ee8918d0f1be7f6d78fe94cf20aab62a3d9037ee2ec760e86116e06848891ad835b8e9e8864960933e845c9a38c704d8293
7
+ data.tar.gz: f7a4ca72955bf11896b8f6a7e597d94101d78008a4abc5fdcb51486accce9132ff05f8ae61839a700e75f4107dd993d86e42ca9b8c9b1bfa141f8c279d86db9a
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # GraphQL Playground
2
- Mount the (GraphQL Playground)[https://github.com/prisma/graphql-playground] in Ruby on Rails.
2
+ Mount the [GraphQL Playground](https://github.com/prisma/graphql-playground) in Ruby on Rails.
3
3
 
4
4
  ## Installation
5
5
  Add this line to your application's Gemfile:
@@ -31,8 +31,8 @@ Rails.application.routes.draw do
31
31
  end
32
32
  ```
33
33
 
34
- - at: is the path where GraphiQL will be served. You can access GraphiQL by visiting that path in your app.
35
- - graphql_path: is the path to the GraphQL endpoint. GraphiQL will send queries to this path.
34
+ - at: is the path where GraphQL Playground will be served. You can access GraphQL Playground by visiting that path in your app.
35
+ - graphql_path: is the path to the GraphQL endpoint. GraphQL Playground will send queries to this path.
36
36
 
37
37
  If you're using Rails 5 in "API mode", you'll also need to add require "sprockets/railtie" to your application.rb.
38
38
 
@@ -2,6 +2,7 @@ module GraphQL
2
2
  module Playground
3
3
  class ApplicationController < ActionController::Base
4
4
  protect_from_forgery with: :exception
5
+ helper GraphQL::Playground::ApplicationHelper
5
6
  end
6
7
  end
7
8
  end
@@ -1,5 +1,5 @@
1
1
  module GraphQL
2
2
  module Playground
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-playground
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pan Jie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-25 00:00:00.000000000 Z
11
+ date: 2019-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails