rack-graphql 0.8.0 → 0.8.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2c44329e54404c5d84af3d21bb11ef103aa2dd6f42548e7ecd41d4306fa2d67
4
- data.tar.gz: 0c4f66ac577a3f3de3330a7a1d044814778c541d95e811496f7e49a4fa11db61
3
+ metadata.gz: 631b0b4eec7f703a3afe325840feab8fa361691234b47836471ff0c5bd0a45b9
4
+ data.tar.gz: ee5a9872c0381238024377c855bd66a50b1f8eb5aeb3c0c3bd49e511feb21ad7
5
5
  SHA512:
6
- metadata.gz: 1b3865eae32648b095fb43dbac0b8614af46d77585510a8c2a37aa5b5bb373ca3bd5d63fbcb7b98f2446b15b3e41e6352d3acb53f2f9465314089f9863e5be18
7
- data.tar.gz: 512e9b7f447ecfe684bf0eebea86e1f47e1ff5d72e612082b887a147ec48886c0739f7ba6f4430d564f8c753372036ba979a310fef0c26c3efabac6eca0eb60a
6
+ metadata.gz: 342f85fd13281cc479a42d9bfcba01c3c724b6de39347e1bd77132468570f78010d0aa21383beeb265bb18617aca88e26d09481986fcfa2c2e500aa6f34392d7
7
+ data.tar.gz: 4af4e655ad1746c43560426184cda066fcde01d3aeee28cb1159ce12b104be9497c8216ad144b9ef6753130a13bcd670405bddf125e64116aa0715dbf8f68715
data/.travis.yml CHANGED
@@ -7,5 +7,4 @@ rvm:
7
7
  - 2.6.5
8
8
  before_install: gem install bundler -v 2.0.2
9
9
  script:
10
- - bundle exec rspec
11
- - bundle exec rubocop
10
+ - bundle exec rake
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-graphql (0.8.0)
4
+ rack-graphql (0.8.1)
5
5
  graphql (>= 1.9.0)
6
6
  oj
7
7
  rack (>= 2.0.0)
@@ -12,21 +12,21 @@ GEM
12
12
  ast (2.4.0)
13
13
  coderay (1.1.2)
14
14
  diff-lcs (1.3)
15
- graphql (1.9.15)
15
+ graphql (1.9.17)
16
16
  jaro_winkler (1.5.4)
17
17
  method_source (0.9.2)
18
- oj (3.9.2)
19
- parallel (1.18.0)
18
+ oj (3.10.0)
19
+ parallel (1.19.1)
20
20
  parser (2.6.5.0)
21
21
  ast (~> 2.4.0)
22
22
  pry (0.12.2)
23
23
  coderay (~> 1.1.0)
24
24
  method_source (~> 0.9.0)
25
- rack (2.0.7)
25
+ rack (2.0.8)
26
26
  rack-test (1.1.0)
27
27
  rack (>= 1.0, < 3)
28
28
  rainbow (3.0.0)
29
- rake (13.0.0)
29
+ rake (13.0.1)
30
30
  rspec (3.9.0)
31
31
  rspec-core (~> 3.9.0)
32
32
  rspec-expectations (~> 3.9.0)
@@ -40,14 +40,14 @@ GEM
40
40
  diff-lcs (>= 1.2.0, < 2.0)
41
41
  rspec-support (~> 3.9.0)
42
42
  rspec-support (3.9.0)
43
- rubocop (0.76.0)
43
+ rubocop (0.78.0)
44
44
  jaro_winkler (~> 1.5.1)
45
45
  parallel (~> 1.10)
46
46
  parser (>= 2.6)
47
47
  rainbow (>= 2.2.2, < 4.0)
48
48
  ruby-progressbar (~> 1.7)
49
49
  unicode-display_width (>= 1.4.0, < 1.7)
50
- rubocop-performance (1.5.0)
50
+ rubocop-performance (1.5.1)
51
51
  rubocop (>= 0.71.0)
52
52
  ruby-progressbar (1.10.1)
53
53
  unicode-display_width (1.6.0)
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
1
  require 'bundler/gem_tasks'
2
2
  require 'rspec/core/rake_task'
3
+ require 'rubocop/rake_task'
3
4
 
4
5
  RSpec::Core::RakeTask.new(:spec)
6
+ RuboCop::RakeTask.new
5
7
 
6
- task default: :spec
8
+ task default: %i[rubocop spec]
@@ -1,3 +1,3 @@
1
1
  module RackGraphql
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '0.8.1'.freeze
3
3
  end
data/rack-graphql.gemspec CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.metadata['source_code_uri'] = 'https://github.com/RenoFi/rack-graphql'
17
17
 
18
18
  spec.files = Dir.chdir(__dir__) do
19
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
20
20
  end
21
21
  spec.bindir = 'exe'
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2019-11-04 00:00:00.000000000 Z
12
+ date: 2019-12-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql
@@ -160,19 +160,13 @@ extensions: []
160
160
  extra_rdoc_files: []
161
161
  files:
162
162
  - ".gitignore"
163
- - ".hound.yml"
164
163
  - ".rspec"
165
- - ".rubocop.yml"
166
- - ".ruby-version"
167
164
  - ".travis.yml"
168
165
  - Gemfile
169
166
  - Gemfile.lock
170
167
  - LICENSE
171
168
  - README.md
172
169
  - Rakefile
173
- - bin/console
174
- - bin/release
175
- - bin/setup
176
170
  - lib/rack-graphql.rb
177
171
  - lib/rack_graphql.rb
178
172
  - lib/rack_graphql/application.rb
data/.hound.yml DELETED
@@ -1,4 +0,0 @@
1
- fail_on_violations: true
2
-
3
- rubocop:
4
- config_file: .rubocop.yml
data/.rubocop.yml DELETED
@@ -1,12 +0,0 @@
1
- require:
2
- - rubocop-performance
3
-
4
- inherit_from:
5
- - https://raw.githubusercontent.com/RenoFi/rubocop/master/ruby.yml
6
-
7
- AllCops:
8
- TargetRubyVersion: 2.5
9
-
10
- Naming/FileName:
11
- Exclude:
12
- - 'lib/*.rb'
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-2.6.5
data/bin/console DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'rack_graphql'
5
- require 'pry'
6
- require 'irb'
7
-
8
- IRB.start(__FILE__)
data/bin/release DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- lib = File.expand_path('../lib', __dir__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'rack_graphql/version'
6
-
7
- `bundle && git commit -am "Release #{RackGraphql::VERSION}" && bundle exec rake build release`
data/bin/setup DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install