wcc-contentful-app 1.0.3 → 1.0.4
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/lib/wcc/contentful/app/version.rb +1 -1
- data/wcc-contentful-app.gemspec +2 -4
- metadata +3 -8
- data/.rspec +0 -4
- data/Guardfile +0 -1
- data/bin/rails +0 -14
- data/doc +0 -1
- data/lib/generators/wcc/templates/.keep +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5a7b3e4f339c5c41851ed567148325b2050345b
|
4
|
+
data.tar.gz: 21e326e43a9acafacd50b09f6b56fb384e84dc00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e61db702889193b0b9bbf89b0b0513ef95bf95e79abf63e620204f642e382b8e4a9a759ae568d159bbf96b680c10d7a17a476331082a55d3f005f8e5da7488ca
|
7
|
+
data.tar.gz: 4104285fc476c42faed8f78a889cac82f373ec944623458f62d2e716dbfb26a785fa38de9d2364f3b2174ba1d9f53a777eba67c75387642833151c6ab1b2ad94
|
data/wcc-contentful-app.gemspec
CHANGED
@@ -24,10 +24,8 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.required_ruby_version = '>= 2.3'
|
26
26
|
|
27
|
-
spec.files
|
28
|
-
|
29
|
-
f.match(%r{^(test|spec|features|Guardfile)/})
|
30
|
-
end
|
27
|
+
spec.files = Dir['app/**/*', 'config/**/*', 'lib/**/*'] +
|
28
|
+
%w[Rakefile README.md wcc-contentful-app.gemspec]
|
31
29
|
|
32
30
|
spec.require_paths = ['lib']
|
33
31
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wcc-contentful-app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watermark Dev
|
@@ -352,14 +352,14 @@ dependencies:
|
|
352
352
|
requirements:
|
353
353
|
- - "~>"
|
354
354
|
- !ruby/object:Gem::Version
|
355
|
-
version: 1.0.
|
355
|
+
version: 1.0.4
|
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.
|
362
|
+
version: 1.0.4
|
363
363
|
description: Models, Controllers, and Views common to Watermark Church apps
|
364
364
|
email:
|
365
365
|
- dev@watermark.org
|
@@ -367,8 +367,6 @@ executables: []
|
|
367
367
|
extensions: []
|
368
368
|
extra_rdoc_files: []
|
369
369
|
files:
|
370
|
-
- ".rspec"
|
371
|
-
- Guardfile
|
372
370
|
- README.md
|
373
371
|
- Rakefile
|
374
372
|
- app/assets/config/manifest.js
|
@@ -404,12 +402,9 @@ files:
|
|
404
402
|
- app/views/sections/_video.html.erb
|
405
403
|
- app/views/sections/_video_highlight.html.erb
|
406
404
|
- app/views/wcc/contentful/app/contact_mailer/contact_form_email.html.erb
|
407
|
-
- bin/rails
|
408
405
|
- config/routes.rb
|
409
|
-
- doc
|
410
406
|
- lib/generators/wcc/USAGE
|
411
407
|
- lib/generators/wcc/model_generator.rb
|
412
|
-
- lib/generators/wcc/templates/.keep
|
413
408
|
- lib/generators/wcc/templates/Procfile
|
414
409
|
- lib/generators/wcc/templates/contentful_shell_wrapper
|
415
410
|
- lib/generators/wcc/templates/menu/migrations/generated_add_menus.ts
|
data/.rspec
DELETED
data/Guardfile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
./../wcc-contentful/Guardfile
|
data/bin/rails
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# This command will automatically be run when you run "rails" with Rails gems
|
3
|
-
# installed from the root of your application.
|
4
|
-
|
5
|
-
ENGINE_ROOT = File.expand_path('..', __dir__)
|
6
|
-
ENGINE_PATH = File.expand_path('../lib/wcc/contentful/app/engine', __dir__)
|
7
|
-
APP_PATH = File.expand_path('../spec/dummy/config/application', __dir__)
|
8
|
-
|
9
|
-
# Set up gems listed in the Gemfile.
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
11
|
-
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
12
|
-
|
13
|
-
require 'rails/all'
|
14
|
-
require 'rails/engine/commands'
|
File without changes
|