wcc-contentful-graphql 1.0.0.pre.rc1 → 1.0.0.pre.rc2

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: b2546f3684d711b927716615568c5a1d90994bd3242a91f056be643b0e9a8976
4
- data.tar.gz: a396b86a4fe13e61b031b73c3f55889dfeaf0cc0406bcf7413d00159daf7cd8d
3
+ metadata.gz: 4161d344682f95f1fa9a9ec34cc2102d23265319d15754890d129f76581b61c0
4
+ data.tar.gz: 8c9f5e69a1df614622ea8d4c840ee0a72d210c587374b54ddea226c0448091b6
5
5
  SHA512:
6
- metadata.gz: 8415a779ccb2d1997531d741b49e2b57a1d37f27f4283102047b8152ed7a5f2b234ef54661b2642d47ee1ae4f2b2c054698d71e225ae237815879cb55aa17c45
7
- data.tar.gz: fe9ad8a75a6be28f8b2eb996601741238dc5a9df0f314555c069a330bf79139214a70c21d041ae069dc4a2411a69cd496fae21520aba07f8fde3894a3b1f659e
6
+ metadata.gz: f5a8e5449b4f588950ea9227c4501cb1a88091a74554dd6e36af54e6bb05ac60a92330a5c48d8db00386ab31519f9b84b9562ed010435d7c955b643bcabf029a
7
+ data.tar.gz: 1a8e4cd5ff540984f0c5303d49de218d69f79f9ca8dd0dca0e22068f6e3c4b1dfc759d66775e6b3062c24a2455df21f0ddb57044c70e8b443c4636af453f738c
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ task :release do
4
+ raise StandardError, 'Please run rake release only from the root folder.'
5
+ end
data/doc ADDED
@@ -0,0 +1 @@
1
+ ./../doc/wcc-contentful-graphql
@@ -3,7 +3,7 @@
3
3
  module WCC
4
4
  module Contentful
5
5
  module Graphql
6
- VERSION = '1.0.0-rc1'
6
+ VERSION = '1.0.0-rc2'
7
7
  end
8
8
  end
9
9
  end
@@ -4,6 +4,9 @@ lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'wcc/contentful/graphql/version'
6
6
 
7
+ doc_version = Gem::Version.new(WCC::Contentful::Graphql::VERSION).release.to_s.sub(/\.\d+$/, '')
8
+
9
+ # rubocop:disable Metrics/LineLength
7
10
  Gem::Specification.new do |spec|
8
11
  spec.name = 'wcc-contentful-graphql'
9
12
  spec.version = WCC::Contentful::Graphql::VERSION
@@ -17,6 +20,10 @@ Gem::Specification.new do |spec|
17
20
 
18
21
  spec.required_ruby_version = '>= 2.3'
19
22
 
23
+ spec.metadata = {
24
+ 'documentation_uri' => "https://watermarkchurch.github.io/wcc-contentful/#{doc_version}/wcc-contentful-graphql"
25
+ }
26
+
20
27
  spec.files =
21
28
  `git ls-files -z`.split("\x0").reject do |f|
22
29
  f.match(%r{^(test|spec|features)/})
@@ -50,3 +57,4 @@ Gem::Specification.new do |spec|
50
57
  spec.add_dependency 'graphql', '~> 1.7'
51
58
  spec.add_dependency 'wcc-contentful', "~> #{WCC::Contentful::Graphql::VERSION}"
52
59
  end
60
+ # rubocop:enable Metrics/LineLength
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wcc-contentful-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.rc1
4
+ version: 1.0.0.pre.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Watermark Dev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-18 00:00:00.000000000 Z
11
+ date: 2021-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls
@@ -254,14 +254,14 @@ dependencies:
254
254
  requirements:
255
255
  - - "~>"
256
256
  - !ruby/object:Gem::Version
257
- version: 1.0.0.pre.rc1
257
+ version: 1.0.0.pre.rc2
258
258
  type: :runtime
259
259
  prerelease: false
260
260
  version_requirements: !ruby/object:Gem::Requirement
261
261
  requirements:
262
262
  - - "~>"
263
263
  - !ruby/object:Gem::Version
264
- version: 1.0.0.pre.rc1
264
+ version: 1.0.0.pre.rc2
265
265
  description: GraphQL interface over WCC::Contentful store
266
266
  email:
267
267
  - dev@watermark.org
@@ -272,6 +272,8 @@ files:
272
272
  - ".rspec"
273
273
  - Guardfile
274
274
  - README.md
275
+ - Rakefile
276
+ - doc
275
277
  - lib/wcc/contentful/ext/services.rb
276
278
  - lib/wcc/contentful/graphql.rb
277
279
  - lib/wcc/contentful/graphql/builder.rb
@@ -285,7 +287,8 @@ files:
285
287
  homepage: https://github.com/watermarkchurch/wcc-contentful/wcc-contentful-graphql
286
288
  licenses:
287
289
  - MIT
288
- metadata: {}
290
+ metadata:
291
+ documentation_uri: https://watermarkchurch.github.io/wcc-contentful/1.0/wcc-contentful-graphql
289
292
  post_install_message:
290
293
  rdoc_options: []
291
294
  require_paths: