graphiql-rails 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/graphiql/rails/application.js +3 -3
- data/app/assets/javascripts/graphiql/rails/{graphiql-0.8.0.js → graphiql-0.8.1.js} +1056 -673
- data/app/assets/javascripts/graphiql/rails/react-15.4.1.js +3756 -0
- data/app/assets/javascripts/graphiql/rails/{react-15.3.2.js → react-dom-15.4.1.js} +2617 -4973
- data/app/assets/stylesheets/graphiql/rails/application.css +1 -1
- data/app/assets/stylesheets/graphiql/rails/{graphiql-0.8.0.css → graphiql-0.8.1.css} +179 -208
- data/lib/graphiql/rails/version.rb +1 -1
- metadata +6 -6
- data/app/assets/javascripts/graphiql/rails/react-dom-15.3.2.js +0 -42
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphiql-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Mosolgo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -118,11 +118,11 @@ extra_rdoc_files: []
|
|
118
118
|
files:
|
119
119
|
- app/assets/javascripts/graphiql/rails/application.js
|
120
120
|
- app/assets/javascripts/graphiql/rails/fetch-0.10.1.js
|
121
|
-
- app/assets/javascripts/graphiql/rails/graphiql-0.8.
|
122
|
-
- app/assets/javascripts/graphiql/rails/react-15.
|
123
|
-
- app/assets/javascripts/graphiql/rails/react-dom-15.
|
121
|
+
- app/assets/javascripts/graphiql/rails/graphiql-0.8.1.js
|
122
|
+
- app/assets/javascripts/graphiql/rails/react-15.4.1.js
|
123
|
+
- app/assets/javascripts/graphiql/rails/react-dom-15.4.1.js
|
124
124
|
- app/assets/stylesheets/graphiql/rails/application.css
|
125
|
-
- app/assets/stylesheets/graphiql/rails/graphiql-0.8.
|
125
|
+
- app/assets/stylesheets/graphiql/rails/graphiql-0.8.1.css
|
126
126
|
- app/controllers/graphiql/rails/editors_controller.rb
|
127
127
|
- app/views/graphiql/rails/editors/show.html.erb
|
128
128
|
- config/routes.rb
|
@@ -1,42 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* ReactDOM v15.3.2
|
3
|
-
*
|
4
|
-
* Copyright 2013-present, Facebook, Inc.
|
5
|
-
* All rights reserved.
|
6
|
-
*
|
7
|
-
* This source code is licensed under the BSD-style license found in the
|
8
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
9
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
10
|
-
*
|
11
|
-
*/
|
12
|
-
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
|
13
|
-
;(function(f) {
|
14
|
-
// CommonJS
|
15
|
-
if (typeof exports === "object" && typeof module !== "undefined") {
|
16
|
-
module.exports = f(require('react'));
|
17
|
-
|
18
|
-
// RequireJS
|
19
|
-
} else if (typeof define === "function" && define.amd) {
|
20
|
-
define(['react'], f);
|
21
|
-
|
22
|
-
// <script>
|
23
|
-
} else {
|
24
|
-
var g;
|
25
|
-
if (typeof window !== "undefined") {
|
26
|
-
g = window;
|
27
|
-
} else if (typeof global !== "undefined") {
|
28
|
-
g = global;
|
29
|
-
} else if (typeof self !== "undefined") {
|
30
|
-
g = self;
|
31
|
-
} else {
|
32
|
-
// works providing we're not in "use strict";
|
33
|
-
// needed for Java 8 Nashorn
|
34
|
-
// see https://github.com/facebook/react/issues/3037
|
35
|
-
g = this;
|
36
|
-
}
|
37
|
-
g.ReactDOM = f(g.React);
|
38
|
-
}
|
39
|
-
|
40
|
-
})(function(React) {
|
41
|
-
return React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
42
|
-
});
|