graphql_model_mapper 0.0.4 → 0.0.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/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/graphql_model_mapper.gemspec +1 -1
- data/lib/graphql_model_mapper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3caf8e99b813b53bdace0f006ae5b1ef18d14af9
|
|
4
|
+
data.tar.gz: 5fe2908d454b3c39aaf8d763e6afe595bf8ac3ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1d4a123b7354c39b416e808298efe0a7e116c6235dbf0b9fd2afd4c663271d2d041c102a7847cfbaeb7eaff15a53198a9c9ba8fe75ba1105549946e90822854
|
|
7
|
+
data.tar.gz: f6a53a3dc0dbab8055b13171d5469c1f9f3adf5760f130d2feb77d793b4a3f8c21c6e13f3e6e52b43a1b2b4917703bb6b2d08616bec94d19a1c7b5a332f59b99
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ It has been tested on Rails 3.2, 4.1 and 5.0 using Ruby 2.2.8
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
13
|
-
gem 'graphql_model_mapper'
|
|
13
|
+
gem 'graphql_model_mapper'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
@@ -352,7 +352,7 @@ so you may access and test your GraphQL queries. It is located at https://github
|
|
|
352
352
|
....
|
|
353
353
|
end
|
|
354
354
|
|
|
355
|
-
you can then reference your previously assigned schema in app/controllers/
|
|
355
|
+
you can then reference your previously assigned schema in app/controllers/graphql_controller.rb
|
|
356
356
|
|
|
357
357
|
#app/controllers/graphql_controller
|
|
358
358
|
class GraphqlController < ApplicationController
|
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ["lib"]
|
|
32
32
|
|
|
33
|
-
spec.required_ruby_version = '>= 1
|
|
33
|
+
spec.required_ruby_version = '>= 2.1'
|
|
34
34
|
spec.add_runtime_dependency "activesupport", ['>= 3.2.22.5']
|
|
35
35
|
spec.add_runtime_dependency "activemodel", ['>= 3.2.22.5']
|
|
36
36
|
spec.add_runtime_dependency "activerecord", ['>= 3.2.22.5']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphql_model_mapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gene Black
|
|
@@ -163,7 +163,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
163
163
|
requirements:
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: 1
|
|
166
|
+
version: '2.1'
|
|
167
167
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
168
|
requirements:
|
|
169
169
|
- - ">="
|