wcc-contentful-app 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: cfa9d4f23576789c57eec32e281809dbe73ecacd6b5c5bf77a2e1f2901735a66
4
- data.tar.gz: 76e260820f5b44b8191205464ee3aa653764b1b4a78f69669f2eef13240d2573
3
+ metadata.gz: 9ea7d39f2644d2dfc6cdef079c3108a00bd497618edcc9f743e9e31f42f394fc
4
+ data.tar.gz: 4acecfc5698bb4f66a570803fa341d15c7be66639794a08734fcb39647d5b218
5
5
  SHA512:
6
- metadata.gz: 8f9090104d47faf28821061231614f975fb4f5365ec8b38bef38f94fb90c40ddcddcb25a59973ac1bd1dcc27c864958ed9cf4bbcc8fe9f39812cd976421e214c
7
- data.tar.gz: 4def3fae3ac934d36c238d166bf1cf524ead5c6a640b9cf8f2929c22987a7d962c2bbfc2b45a70e7061494a1f9110728747af4ad7f287a9cb93df4025160e028
6
+ metadata.gz: 0dc92e2708b1ed4793ff7b33637ba49b07a0c7a4981d33fc14ce13e242bfab39d586af6b76a3b286f8aa6a77211a6e14f39bfa34674dabcb72a26eab67e38e9c
7
+ data.tar.gz: 4b2e9c2c8c7828e2fc71ec1f9498d525b5ff452f12eca7c362969ec87c2a8fad9eba2c4e68190340ca618e08b7a66e7deb6bc5334f2459e9ae3ea785fed18c36
data/Rakefile CHANGED
@@ -119,3 +119,7 @@ namespace :app do
119
119
  end
120
120
 
121
121
  # rubocop:enable Metrics/LineLength
122
+
123
+ task :release do
124
+ raise StandardError, 'Please run rake release only from the root folder.'
125
+ end
data/doc ADDED
@@ -0,0 +1 @@
1
+ ./../doc/wcc-contentful-app
@@ -3,7 +3,7 @@
3
3
  module WCC
4
4
  module Contentful
5
5
  module App
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/app/version'
6
6
 
7
+ doc_version = Gem::Version.new(WCC::Contentful::App::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-app'
9
12
  spec.version = WCC::Contentful::App::VERSION
@@ -15,6 +18,10 @@ Gem::Specification.new do |spec|
15
18
  spec.homepage = 'https://github.com/watermarkchurch/wcc-contentful'
16
19
  spec.license = 'MIT'
17
20
 
21
+ spec.metadata = {
22
+ 'documentation_uri' => "https://watermarkchurch.github.io/wcc-contentful/#{doc_version}/wcc-contentful-app"
23
+ }
24
+
18
25
  spec.required_ruby_version = '>= 2.3'
19
26
 
20
27
  spec.files =
@@ -57,3 +64,4 @@ Gem::Specification.new do |spec|
57
64
  spec.add_dependency 'redcarpet', '~> 3.4'
58
65
  spec.add_dependency 'wcc-contentful', "~> #{WCC::Contentful::App::VERSION}"
59
66
  end
67
+ # rubocop:enable Metrics/LineLength
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wcc-contentful-app
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: capybara
@@ -352,14 +352,14 @@ dependencies:
352
352
  requirements:
353
353
  - - "~>"
354
354
  - !ruby/object:Gem::Version
355
- version: 1.0.0.pre.rc1
355
+ version: 1.0.0.pre.rc2
356
356
  type: :runtime
357
357
  prerelease: false
358
358
  version_requirements: !ruby/object:Gem::Requirement
359
359
  requirements:
360
360
  - - "~>"
361
361
  - !ruby/object:Gem::Version
362
- version: 1.0.0.pre.rc1
362
+ version: 1.0.0.pre.rc2
363
363
  description: Models, Controllers, and Views common to Watermark Church apps
364
364
  email:
365
365
  - dev@watermark.org
@@ -406,6 +406,7 @@ files:
406
406
  - app/views/wcc/contentful/app/contact_mailer/contact_form_email.html.erb
407
407
  - bin/rails
408
408
  - config/routes.rb
409
+ - doc
409
410
  - lib/generators/wcc/USAGE
410
411
  - lib/generators/wcc/model_generator.rb
411
412
  - lib/generators/wcc/templates/.keep
@@ -460,7 +461,8 @@ files:
460
461
  homepage: https://github.com/watermarkchurch/wcc-contentful
461
462
  licenses:
462
463
  - MIT
463
- metadata: {}
464
+ metadata:
465
+ documentation_uri: https://watermarkchurch.github.io/wcc-contentful/1.0/wcc-contentful-app
464
466
  post_install_message:
465
467
  rdoc_options: []
466
468
  require_paths: