Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

39 support graphql ruby 1.9 #40

Merged
merged 3 commits into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ rvm:
- 2.5.1
- 2.4.4
- 2.3.7
- 2.2.10
gemfile:
- gemfiles/graphql_1.8.gemfile
- gemfiles/graphql_1.9.gemfile
before_script:
- gem install bundler
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
appraise "graphql-1.8" do
gem 'graphql', '~> 1.8'
end

appraise "graphql-1.9" do
gem 'graphql', '~> 1.9'
end
54 changes: 27 additions & 27 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
graphql-cache (0.4.0)
graphql (~> 1.8.0)
graphql-cache (0.6.0)
graphql (~> 1, > 1.8)

GEM
remote: https://rubygems.org/
Expand All @@ -11,47 +11,47 @@ GEM
bundler
rake
thor (>= 0.14.0)
codeclimate-test-reporter (0.6.0)
simplecov (>= 0.7.1, < 1.0.0)
codeclimate-test-reporter (1.0.9)
simplecov (<= 0.13)
coderay (1.1.2)
diff-lcs (1.3)
docile (1.3.0)
graphql (1.8.6)
json (2.1.0)
method_source (0.9.0)
docile (1.1.5)
graphql (1.9.3)
json (2.2.0)
method_source (0.9.2)
mini_cache (1.1.0)
pry (0.11.3)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rake (10.5.0)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.1)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
rspec (3.8.0)
rspec-core (~> 3.8.0)
rspec-expectations (~> 3.8.0)
rspec-mocks (~> 3.8.0)
rspec-core (3.8.0)
rspec-support (~> 3.8.0)
rspec-expectations (3.8.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
rspec-support (~> 3.8.0)
rspec-mocks (3.8.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
sequel (5.9.0)
simplecov (0.16.1)
docile (~> 1.1)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
sequel (5.17.0)
simplecov (0.13.0)
docile (~> 1.1.0)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
sqlite3 (1.3.13)
thor (0.20.0)
sqlite3 (1.4.0)
thor (0.20.3)

PLATFORMS
ruby

DEPENDENCIES
appraisal
bundler (~> 1.16)
bundler (~> 2.0)
codeclimate-test-reporter
graphql-cache!
mini_cache
Expand All @@ -63,4 +63,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
1.16.3
2.0.1
2 changes: 2 additions & 0 deletions gemfiles/.bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
BUNDLE_RETRY: "1"
7 changes: 7 additions & 0 deletions gemfiles/graphql_1.9.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "graphql", "~> 1.9"

gemspec path: "../"
4 changes: 2 additions & 2 deletions graphql-cache.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.2.0' # bc graphql-ruby requires >= 2.2.0

s.add_development_dependency 'appraisal'
s.add_development_dependency 'bundler', '~> 1.16'
s.add_development_dependency 'bundler', '~> 2.0'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'mini_cache'
s.add_development_dependency 'pry'
Expand All @@ -32,5 +32,5 @@ Gem::Specification.new do |s|
s.add_development_dependency 'simplecov'
s.add_development_dependency 'sqlite3'

s.add_dependency 'graphql', '~> 1.8.0'
s.add_dependency 'graphql', '~> 1', '> 1.8'
end