wcc-contentful-app 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e9b7d9c60463c93becc357408875dc33954b2a8
4
- data.tar.gz: 5b6314552a866de365c4274e7cb76bea042e15b5
3
+ metadata.gz: e5a7b3e4f339c5c41851ed567148325b2050345b
4
+ data.tar.gz: 21e326e43a9acafacd50b09f6b56fb384e84dc00
5
5
  SHA512:
6
- metadata.gz: a3fca4d5b6d4ba6ec05b7b01a52e4c1e9701db7dfe34e87c9a9d5df76dd7cdeae6a9eb3f6c3c31d8aeba8723b177f13cdb24e8207292f0ef8c324be78b0553bf
7
- data.tar.gz: 1cf0983b4b606b8dce414ffe84bacc31796a2334c0ae95e667a1fdbec606dccf1c73d618c7428cf3c231f38ca414b4359c77548fb3baef52ac47aac5f9e8229a
6
+ metadata.gz: e61db702889193b0b9bbf89b0b0513ef95bf95e79abf63e620204f642e382b8e4a9a759ae568d159bbf96b680c10d7a17a476331082a55d3f005f8e5da7488ca
7
+ data.tar.gz: 4104285fc476c42faed8f78a889cac82f373ec944623458f62d2e716dbfb26a785fa38de9d2364f3b2174ba1d9f53a777eba67c75387642833151c6ab1b2ad94
@@ -3,7 +3,7 @@
3
3
  module WCC
4
4
  module Contentful
5
5
  module App
6
- VERSION = '1.0.3'
6
+ VERSION = '1.0.4'
7
7
  end
8
8
  end
9
9
  end
@@ -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
- `git ls-files -z`.split("\x0").reject do |f|
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.3
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.3
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.3
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
@@ -1,4 +0,0 @@
1
- --require spec_helper
2
- --format documentation
3
- --color
4
- --order rand
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'
data/doc DELETED
@@ -1 +0,0 @@
1
- ./../doc/wcc-contentful-app
File without changes