Skip to content

Commit 292209c

Browse files
Merge pull request #18 from graphql-devise/update-travis-config
Test with latest ruby versions
2 parents 5f1a7a8 + 7741e75 commit 292209c

4 files changed

Lines changed: 15 additions & 10 deletions

File tree

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ before_script: RAILS_ENV=test bundle exec rake db:create db:schema:load
88
rvm:
99
- 2.2.10
1010
- 2.3.8
11-
- 2.4.7
12-
- 2.5.6
13-
- 2.6.4
11+
- 2.4.9
12+
- 2.5.7
13+
- 2.6.5
1414

1515
gemfile:
1616
- gemfiles/rails4.2_graphql1.8.gemfile
@@ -23,11 +23,11 @@ gemfile:
2323

2424
matrix:
2525
include:
26-
- gemfile: gemfiles/rails_edge_graphql_edge.gemfile
27-
rvm: 2.5.6
28-
- gemfile: gemfiles/rails_edge_graphql_edge.gemfile
29-
rvm: 2.6.4
3026
- gemfile: gemfiles/rails6.0_graphql1.8.gemfile
31-
rvm: 2.5.6
27+
rvm: 2.5.7
3228
- gemfile: gemfiles/rails6.0_graphql1.9.gemfile
33-
rvm: 2.6.4
29+
rvm: 2.6.5
30+
- gemfile: gemfiles/rails_edge_graphql_edge.gemfile
31+
rvm: 2.5.7
32+
- gemfile: gemfiles/rails_edge_graphql_edge.gemfile
33+
rvm: 2.6.5

spec/dummy/app/assets/config/manifest.js

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
module Types
22
class MutationType < Types::BaseObject
3+
field :dummy_mutation, String, null: false
4+
5+
def dummy_mutation
6+
'Necessary so GraphQL gem does not complain about empty mutation type'
7+
end
38
end
49
end

spec/requests/user_controller_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
context 'when user is authenticated' do
2323
let(:headers) { user.create_new_auth_token }
2424

25-
it 'allow to perform tue query' do
25+
it 'allow to perform the query' do
2626
expect(json_response[:data][:user]).to match(
2727
email: user.email,
2828
id: user.id

0 commit comments

Comments
 (0)