Skip to content

Commit 11321d8

Browse files
committed
v0.0.4
1 parent 66e274e commit 11321d8

File tree

197 files changed

+1746
-1616
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+1746
-1616
lines changed

.rubocop.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Metrics/MethodLength:
2+
Max: 1000
3+
Metrics/LineLength:
4+
Max: 1000

Gemfile

+11-18
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
4+
ruby '2.5.0'
25

3-
# Declare your gem's dependencies in Graphoid.gemspec.
4-
# Bundler will treat runtime dependencies like base dependencies, and
5-
# development dependencies will be added by default to the :development group.
66
gemspec
77

8-
# Declare any dependencies that are still in development here instead of in
9-
# your gemspec. These might include edge Rails or gems from your path or
10-
# Git. Remember to move these dependencies to your gemspec before releasing
11-
# your gem to rubygems.org.
12-
13-
# To use a debugger
14-
15-
gem 'byebug', group: [:development, :test]
16-
gem 'rspec', group: [:development, :test]
17-
gem 'rspec-rails', group: [:development, :test]
188
gem 'graphql'
19-
gem 'jwt'
9+
10+
group :development, :test do
11+
gem 'byebug'
12+
end
2013

2114
group :test do
22-
gem 'mongoid', '~>6'
23-
gem 'mongoid-compatibility'
15+
gem 'mongoid'
2416
gem 'mongoid-rspec'
25-
gem 'mongoid-enum', github: 'outboundworks/mongoid-enum'
26-
gem 'apollo_upload_server', '2.0.0.beta.1'
17+
gem 'rspec'
18+
gem 'rspec-rails'
19+
gem 'sqlite3'
2720
end

Gemfile.lock

+78-92
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,75 @@
1-
GIT
2-
remote: git://github.com/outboundworks/mongoid-enum.git
3-
revision: 049d75074a579dd214cf391e8e7fe3992af7fd9c
4-
specs:
5-
mongoid-enum (0.4.0)
6-
mongoid (~> 6)
7-
81
PATH
92
remote: .
103
specs:
11-
graphoid (0.1.0)
12-
rails (~> 5.1.0)
4+
graphoid (0.0.4)
5+
graphql (~> 1.8.17)
6+
rails (~> 5.1.6)
137

148
GEM
159
remote: https://rubygems.org/
1610
specs:
17-
actioncable (5.1.6)
18-
actionpack (= 5.1.6)
11+
actioncable (5.1.7)
12+
actionpack (= 5.1.7)
1913
nio4r (~> 2.0)
2014
websocket-driver (~> 0.6.1)
21-
actionmailer (5.1.6)
22-
actionpack (= 5.1.6)
23-
actionview (= 5.1.6)
24-
activejob (= 5.1.6)
15+
actionmailer (5.1.7)
16+
actionpack (= 5.1.7)
17+
actionview (= 5.1.7)
18+
activejob (= 5.1.7)
2519
mail (~> 2.5, >= 2.5.4)
2620
rails-dom-testing (~> 2.0)
27-
actionpack (5.1.6)
28-
actionview (= 5.1.6)
29-
activesupport (= 5.1.6)
21+
actionpack (5.1.7)
22+
actionview (= 5.1.7)
23+
activesupport (= 5.1.7)
3024
rack (~> 2.0)
3125
rack-test (>= 0.6.3)
3226
rails-dom-testing (~> 2.0)
3327
rails-html-sanitizer (~> 1.0, >= 1.0.2)
34-
actionview (5.1.6)
35-
activesupport (= 5.1.6)
28+
actionview (5.1.7)
29+
activesupport (= 5.1.7)
3630
builder (~> 3.1)
3731
erubi (~> 1.4)
3832
rails-dom-testing (~> 2.0)
3933
rails-html-sanitizer (~> 1.0, >= 1.0.3)
40-
activejob (5.1.6)
41-
activesupport (= 5.1.6)
34+
activejob (5.1.7)
35+
activesupport (= 5.1.7)
4236
globalid (>= 0.3.6)
43-
activemodel (5.1.6)
44-
activesupport (= 5.1.6)
45-
activerecord (5.1.6)
46-
activemodel (= 5.1.6)
47-
activesupport (= 5.1.6)
37+
activemodel (5.1.7)
38+
activesupport (= 5.1.7)
39+
activerecord (5.1.7)
40+
activemodel (= 5.1.7)
41+
activesupport (= 5.1.7)
4842
arel (~> 8.0)
49-
activesupport (5.1.6)
43+
activesupport (5.1.7)
5044
concurrent-ruby (~> 1.0, >= 1.0.2)
5145
i18n (>= 0.7, < 2)
5246
minitest (~> 5.1)
5347
tzinfo (~> 1.1)
54-
apollo_upload_server (2.0.0.beta.1)
55-
graphql (~> 1.7)
56-
rails (>= 4.2)
5748
arel (8.0.0)
58-
bson (4.3.0)
49+
bson (4.4.2)
5950
builder (3.2.3)
60-
byebug (10.0.2)
61-
concurrent-ruby (1.0.5)
51+
byebug (11.0.1)
52+
concurrent-ruby (1.1.5)
6253
crass (1.0.4)
6354
diff-lcs (1.3)
64-
erubi (1.7.1)
65-
globalid (0.4.1)
55+
erubi (1.8.0)
56+
globalid (0.4.2)
6657
activesupport (>= 4.2.0)
67-
graphql (1.8.5)
68-
i18n (1.0.1)
58+
graphql (1.8.17)
59+
i18n (1.6.0)
6960
concurrent-ruby (~> 1.0)
70-
jwt (2.1.0)
71-
loofah (2.2.2)
61+
loofah (2.2.3)
7262
crass (~> 1.0.2)
7363
nokogiri (>= 1.5.9)
74-
mail (2.7.0)
64+
mail (2.7.1)
7565
mini_mime (>= 0.1.1)
76-
method_source (0.9.0)
66+
method_source (0.9.2)
7767
mini_mime (1.0.1)
78-
mini_portile2 (2.3.0)
68+
mini_portile2 (2.4.0)
7969
minitest (5.11.3)
80-
mongo (2.6.2)
81-
bson (>= 4.3.0, < 5.0.0)
82-
mongoid (6.4.1)
70+
mongo (2.8.0)
71+
bson (>= 4.4.2, < 5.0.0)
72+
mongoid (7.0.2)
8373
activemodel (>= 5.1, < 6.0.0)
8474
mongo (>= 2.5.1, < 3.0.0)
8575
mongoid-compatibility (0.5.1)
@@ -91,67 +81,65 @@ GEM
9181
mongoid-compatibility (>= 0.5.1)
9282
rspec (~> 3.3)
9383
nio4r (2.3.1)
94-
nokogiri (1.8.2)
95-
mini_portile2 (~> 2.3.0)
96-
rack (2.0.5)
97-
rack-test (1.0.0)
84+
nokogiri (1.10.2)
85+
mini_portile2 (~> 2.4.0)
86+
rack (2.0.7)
87+
rack-test (1.1.0)
9888
rack (>= 1.0, < 3)
99-
rails (5.1.6)
100-
actioncable (= 5.1.6)
101-
actionmailer (= 5.1.6)
102-
actionpack (= 5.1.6)
103-
actionview (= 5.1.6)
104-
activejob (= 5.1.6)
105-
activemodel (= 5.1.6)
106-
activerecord (= 5.1.6)
107-
activesupport (= 5.1.6)
89+
rails (5.1.7)
90+
actioncable (= 5.1.7)
91+
actionmailer (= 5.1.7)
92+
actionpack (= 5.1.7)
93+
actionview (= 5.1.7)
94+
activejob (= 5.1.7)
95+
activemodel (= 5.1.7)
96+
activerecord (= 5.1.7)
97+
activesupport (= 5.1.7)
10898
bundler (>= 1.3.0)
109-
railties (= 5.1.6)
99+
railties (= 5.1.7)
110100
sprockets-rails (>= 2.0.0)
111101
rails-dom-testing (2.0.3)
112102
activesupport (>= 4.2.0)
113103
nokogiri (>= 1.6)
114104
rails-html-sanitizer (1.0.4)
115105
loofah (~> 2.2, >= 2.2.2)
116-
railties (5.1.6)
117-
actionpack (= 5.1.6)
118-
activesupport (= 5.1.6)
106+
railties (5.1.7)
107+
actionpack (= 5.1.7)
108+
activesupport (= 5.1.7)
119109
method_source
120110
rake (>= 0.8.7)
121111
thor (>= 0.18.1, < 2.0)
122-
rake (12.3.1)
123-
rspec (3.7.0)
124-
rspec-core (~> 3.7.0)
125-
rspec-expectations (~> 3.7.0)
126-
rspec-mocks (~> 3.7.0)
127-
rspec-collection_matchers (1.1.3)
128-
rspec-expectations (>= 2.99.0.beta1)
129-
rspec-core (3.7.1)
130-
rspec-support (~> 3.7.0)
131-
rspec-expectations (3.7.0)
112+
rake (12.3.2)
113+
rspec (3.8.0)
114+
rspec-core (~> 3.8.0)
115+
rspec-expectations (~> 3.8.0)
116+
rspec-mocks (~> 3.8.0)
117+
rspec-core (3.8.0)
118+
rspec-support (~> 3.8.0)
119+
rspec-expectations (3.8.2)
132120
diff-lcs (>= 1.2.0, < 2.0)
133-
rspec-support (~> 3.7.0)
134-
rspec-mocks (3.7.0)
121+
rspec-support (~> 3.8.0)
122+
rspec-mocks (3.8.0)
135123
diff-lcs (>= 1.2.0, < 2.0)
136-
rspec-support (~> 3.7.0)
137-
rspec-rails (3.7.2)
124+
rspec-support (~> 3.8.0)
125+
rspec-rails (3.8.2)
138126
actionpack (>= 3.0)
139127
activesupport (>= 3.0)
140128
railties (>= 3.0)
141-
rspec-core (~> 3.7.0)
142-
rspec-expectations (~> 3.7.0)
143-
rspec-mocks (~> 3.7.0)
144-
rspec-support (~> 3.7.0)
145-
rspec-support (3.7.1)
129+
rspec-core (~> 3.8.0)
130+
rspec-expectations (~> 3.8.0)
131+
rspec-mocks (~> 3.8.0)
132+
rspec-support (~> 3.8.0)
133+
rspec-support (3.8.0)
146134
sprockets (3.7.2)
147135
concurrent-ruby (~> 1.0)
148136
rack (> 1, < 3)
149137
sprockets-rails (3.2.1)
150138
actionpack (>= 4.0)
151139
activesupport (>= 4.0)
152140
sprockets (>= 3.0.0)
153-
sqlite3 (1.3.13)
154-
thor (0.20.0)
141+
sqlite3 (1.4.0)
142+
thor (0.20.3)
155143
thread_safe (0.3.6)
156144
tzinfo (1.2.5)
157145
thread_safe (~> 0.1)
@@ -163,19 +151,17 @@ PLATFORMS
163151
ruby
164152

165153
DEPENDENCIES
166-
apollo_upload_server (= 2.0.0.beta.1)
167154
byebug
155+
graphoid!
168156
graphql
169-
jwt
170-
mongoid (~> 6)
171-
mongoid-compatibility
172-
mongoid-enum!
157+
mongoid
173158
mongoid-rspec
174-
graphoid!
175159
rspec
176-
rspec-collection_matchers
177160
rspec-rails
178161
sqlite3
179162

163+
RUBY VERSION
164+
ruby 2.5.0p0
165+
180166
BUNDLED WITH
181-
1.16.2
167+
2.0.1

0 commit comments

Comments
 (0)