graphql_playground-rails 2.0.0 → 2.0.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
- SHA256:
3
- metadata.gz: a8b34ee00d3929fbf5f5774f0b88936e2d7a7eda2953e9fa1d16fc3258642416
4
- data.tar.gz: 4bc8eff10b37a27cbc2a522793c61fc78ab8fb8bbae20436c882f7e7ff113daf
2
+ SHA1:
3
+ metadata.gz: c903c1a51c787fb81974054f5cc74d827ec04a97
4
+ data.tar.gz: 19f75c6d7752c579bf14623d80b989d068a721a0
5
5
  SHA512:
6
- metadata.gz: 76fd2113f22abb551d7a63cac586d21fb98de004aee84b77de21b04d12a4feef1d5b89df74598aceb124c9ae7675a0e12f4d303067787aecca2379acc98b4717
7
- data.tar.gz: 444980d79ee43f6e88e47e21a6c35e7833572fb5688667ba1d5ae535646733ad1338f085ebed1c3e5ab54b6bf96d6d1e71a1c3df1e53b78d91860b2b0765bbcc
6
+ metadata.gz: 39ee6283883ec387d77abf644738a1103a90bacab4b752cbdfd7435cf4945e5a9196ca10befa44d26480f53756bf232b0c20dc96e31d21664e17633486782d77
7
+ data.tar.gz: 82d201a52f227ea5bfdbb7c0ef80172b70b532eaf33e40d1ae40ba24cda0b538f12ed6569269ad700aea155518aba3ba84bf3600e5ec9b7b72d2a66f71fec75f
@@ -48,7 +48,9 @@
48
48
 
49
49
  GraphQLPlayground.init(root, {
50
50
  "endpoint": "<%= get_endpoint_url %>",
51
- "canSaveConfig": false
51
+ "settings": {
52
+ "request.credentials": "include"
53
+ }
52
54
  });
53
55
  });
54
56
  </script>
@@ -2,7 +2,6 @@
2
2
  <html>
3
3
  <head>
4
4
  <%= csrf_meta_tags %>
5
- <%= csp_meta_tag %>
6
5
  <meta charset=utf-8 />
7
6
  <meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
8
7
  <link rel="shortcut icon" href="https://graphcool-playground.netlify.com/favicon.png">
@@ -1,6 +1,6 @@
1
1
  module GraphqlPlayground
2
2
  module Rails
3
- VERSION = '2.0.0'
3
+ VERSION = '2.0.1'
4
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: 2.0.0
4
+ version: 2.0.1
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-09-23 00:00:00.000000000 Z
11
+ date: 2018-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -45,10 +45,6 @@ files:
45
45
  - app/assets/stylesheets/graphql_playground/rails/application.css
46
46
  - app/assets/stylesheets/graphql_playground/rails/graphql_playground.css
47
47
  - app/controllers/graphql_playground/rails/application_controller.rb
48
- - app/helpers/graphql_playground/rails/application_helper.rb
49
- - app/jobs/graphql_playground/rails/application_job.rb
50
- - app/mailers/graphql_playground/rails/application_mailer.rb
51
- - app/models/graphql_playground/rails/application_record.rb
52
48
  - app/views/graphql_playground/rails/application/index.html.erb
53
49
  - app/views/layouts/graphql_playground/rails/application.html.erb
54
50
  - config/routes.rb
@@ -76,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
72
  version: '0'
77
73
  requirements: []
78
74
  rubyforge_project:
79
- rubygems_version: 2.7.6
75
+ rubygems_version: 2.5.2.3
80
76
  signing_key:
81
77
  specification_version: 4
82
78
  summary: An engine to provide the GraphQL Playground
@@ -1,6 +0,0 @@
1
- module GraphqlPlayground
2
- module Rails
3
- module ApplicationHelper
4
- end
5
- end
6
- end
@@ -1,6 +0,0 @@
1
- module GraphqlPlayground
2
- module Rails
3
- class ApplicationJob < ActiveJob::Base
4
- end
5
- end
6
- end
@@ -1,8 +0,0 @@
1
- module GraphqlPlayground
2
- module Rails
3
- class ApplicationMailer < ActionMailer::Base
4
- default from: 'from@example.com'
5
- layout 'mailer'
6
- end
7
- end
8
- end
@@ -1,7 +0,0 @@
1
- module GraphqlPlayground
2
- module Rails
3
- class ApplicationRecord < ActiveRecord::Base
4
- self.abstract_class = true
5
- end
6
- end
7
- end