wcc-contentful 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 +4 -4
- data/Rakefile +5 -0
- data/doc +1 -0
- data/lib/wcc/contentful/rake.rb +1 -0
- data/lib/wcc/contentful/sync_engine.rb +1 -1
- data/lib/wcc/contentful/version.rb +1 -1
- data/wcc-contentful.gemspec +8 -0
- metadata +6 -4
- data/doc/wcc-contentful.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 641600f1bd3c583aad140a1505a02d3121cf6b0e4cac4a2484fc49d3c1134003
|
|
4
|
+
data.tar.gz: 233f01f125d9f30a4bc6ecd820f350a315c4a87d6813b5edf85750fe2179a97c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 699e37d8ca2948f4ddc8feb90a9850cbbc602e17fa3e7e62d99fe84944198d3b7ed8c253e823fa830717c5c491fa7e2d796bdc97923346a20012d8742b011414
|
|
7
|
+
data.tar.gz: cc5919e973428a78193e7821e9402a997deede747419f86810ba692a75f8493a35397e9c5c6a30d88d16302fd7d50d3228216b80d593b24564036ed0ffd4ffff
|
data/Rakefile
ADDED
data/lib/wcc/contentful/rake.rb
CHANGED
data/wcc-contentful.gemspec
CHANGED
|
@@ -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/version'
|
|
6
6
|
|
|
7
|
+
doc_version = Gem::Version.new(WCC::Contentful::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'
|
|
9
12
|
spec.version = WCC::Contentful::VERSION
|
|
@@ -15,6 +18,10 @@ Gem::Specification.new do |spec|
|
|
|
15
18
|
spec.homepage = 'https://github.com/watermarkchurch/wcc-contentful/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"
|
|
23
|
+
}
|
|
24
|
+
|
|
18
25
|
spec.required_ruby_version = '>= 2.3'
|
|
19
26
|
|
|
20
27
|
spec.files =
|
|
@@ -63,3 +70,4 @@ Gem::Specification.new do |spec|
|
|
|
63
70
|
spec.add_dependency 'wcc-base', '~> 0.3.1'
|
|
64
71
|
spec.add_dependency 'wisper', '~> 2.0.0'
|
|
65
72
|
end
|
|
73
|
+
# rubocop:enable Metrics/LineLength
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wcc-contentful
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
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-
|
|
11
|
+
date: 2021-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: byebug
|
|
@@ -432,6 +432,7 @@ files:
|
|
|
432
432
|
- ".rspec"
|
|
433
433
|
- Guardfile
|
|
434
434
|
- README.md
|
|
435
|
+
- Rakefile
|
|
435
436
|
- app/controllers/wcc/contentful/application_controller.rb
|
|
436
437
|
- app/controllers/wcc/contentful/webhook_controller.rb
|
|
437
438
|
- app/jobs/wcc/contentful/webhook_enable_job.rb
|
|
@@ -441,7 +442,7 @@ files:
|
|
|
441
442
|
- bin/setup
|
|
442
443
|
- config/initializers/mime_types.rb
|
|
443
444
|
- config/routes.rb
|
|
444
|
-
- doc
|
|
445
|
+
- doc
|
|
445
446
|
- lib/tasks/download_schema.rake
|
|
446
447
|
- lib/wcc/contentful.rb
|
|
447
448
|
- lib/wcc/contentful/active_record_shim.rb
|
|
@@ -500,7 +501,8 @@ files:
|
|
|
500
501
|
homepage: https://github.com/watermarkchurch/wcc-contentful/wcc-contentful
|
|
501
502
|
licenses:
|
|
502
503
|
- MIT
|
|
503
|
-
metadata:
|
|
504
|
+
metadata:
|
|
505
|
+
documentation_uri: https://watermarkchurch.github.io/wcc-contentful/1.0/wcc-contentful
|
|
504
506
|
post_install_message:
|
|
505
507
|
rdoc_options: []
|
|
506
508
|
require_paths:
|
data/doc/wcc-contentful.png
DELETED
|
Binary file
|