wcc-contentful 1.0.4 → 1.0.5

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: 5e0a14cd883ecb58fe7d8dd07963eeb83c8f3f7d
4
- data.tar.gz: 445174542f3d500a9e2872f0887efc98aa2c6554
3
+ metadata.gz: 551f901561d8802b640ca39589f01d9bb84ef93d
4
+ data.tar.gz: 9ecbe5e30e384cc1356572c697ab8b1ddbfa7e12
5
5
  SHA512:
6
- metadata.gz: f3928e46b2ad722c4bcd003225b3092fac6dd602f5ab79994767e134966fd2592b35c1df1301f65c41a95f270d2ac99255dc9971a0ca3dde818d0918676a0f79
7
- data.tar.gz: f3d31807796c12b9407b1a6e9dcb6ef92cd8b95ee7dcdddcb6ee6c925c071f6c61bf5b5396807105ebaec1129891f6d7fd0729bfa5604a16d3f4ee1a6efdefa2
6
+ metadata.gz: 2970a99078a8944660f7f1b256180194a5ffe59736573efa3c6293bea77ab48b68f2f860d83a5d62013161080ad4ba990712c206e29f18fde63aae9a2f4c3d65
7
+ data.tar.gz: 95aa86b6211689681cb9f1c0a30345b2e76b89988bbd52589e7ff7e43919fdfc39f596a02ec0bdbd56ff8c5807429faba21c8aec8768aedd16028d0163753731
@@ -2,6 +2,6 @@
2
2
 
3
3
  module WCC
4
4
  module Contentful
5
- VERSION = '1.0.4'
5
+ VERSION = '1.0.5'
6
6
  end
7
7
  end
@@ -29,6 +29,9 @@ Gem::Specification.new do |spec|
29
29
  f.match(%r{^(test|spec|features)/})
30
30
  end
31
31
 
32
+ spec.files = Dir['app/**/*', 'config/**/*', 'lib/**/*'] +
33
+ %w[Rakefile README.md wcc-contentful.gemspec]
34
+
32
35
  spec.require_paths = ['lib']
33
36
 
34
37
  spec.add_development_dependency 'byebug', '~> 11.0.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wcc-contentful
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Watermark Dev
@@ -429,20 +429,13 @@ executables: []
429
429
  extensions: []
430
430
  extra_rdoc_files: []
431
431
  files:
432
- - ".rspec"
433
- - Guardfile
434
432
  - README.md
435
433
  - Rakefile
436
434
  - app/controllers/wcc/contentful/application_controller.rb
437
435
  - app/controllers/wcc/contentful/webhook_controller.rb
438
436
  - app/jobs/wcc/contentful/webhook_enable_job.rb
439
- - bin/console
440
- - bin/rails
441
- - bin/rspec
442
- - bin/setup
443
437
  - config/initializers/mime_types.rb
444
438
  - config/routes.rb
445
- - doc-static/wcc-contentful.png
446
439
  - lib/tasks/download_schema.rake
447
440
  - lib/wcc/contentful.rb
448
441
  - lib/wcc/contentful/active_record_shim.rb
data/.rspec DELETED
@@ -1,4 +0,0 @@
1
- --require spec_helper
2
- --format documentation
3
- --color
4
- --order rand
data/Guardfile DELETED
@@ -1,101 +0,0 @@
1
- # A guardfile for making Danger Plugins
2
- # For more info see https://github.com/guard/guard#readme
3
-
4
- # To run, use `bundle exec guard`.
5
-
6
- def watch_async(regexp)
7
- raise ArgumentError, "No block given" unless block_given?
8
- match_queue = Queue.new
9
-
10
- watch(regexp) do |match|
11
- # Producer - add matches to the match queue
12
- match_queue << match
13
- nil
14
- end
15
-
16
- # Consumer - process matches as a batch
17
- Thread.new do
18
- loop do
19
- matches = []
20
- matches << match_queue.pop
21
-
22
- loop do
23
- begin
24
- matches << match_queue.pop(true)
25
- rescue ThreadError
26
- break
27
- end
28
- end
29
-
30
- begin
31
- yield matches if matches.length > 0
32
- rescue StandardError => ex
33
- STDERR.puts "Error! #{ex}"
34
- end
35
- end
36
- end
37
- end
38
-
39
- group :red_green_refactor, halt_on_fail: true do
40
- guard :rspec, cmd: 'bundle exec rspec' do
41
- require 'guard/rspec/dsl'
42
- dsl = Guard::RSpec::Dsl.new(self)
43
-
44
- # RSpec files
45
- rspec = dsl.rspec
46
- watch(rspec.spec_helper) { rspec.spec_dir }
47
- # watch(rspec.spec_support) { rspec.spec_dir }
48
- watch(rspec.spec_files)
49
-
50
- # Ruby files
51
- ruby = dsl.ruby
52
- watch(%r{lib/wcc/(.+)\.rb$}) { |m| rspec.spec.call("wcc/#{m[1]}") }
53
- watch(%r{lib/generators/(.+)\.rb$}) { |m| rspec.spec.call("generators/#{m[1]}") }
54
-
55
- # Rails files
56
- rails = dsl.rails(view_extensions: %w[erb haml slim])
57
- dsl.watch_spec_files_for(rails.app_files)
58
- dsl.watch_spec_files_for(rails.views)
59
-
60
- watch(rails.controllers) do |m|
61
- [
62
- rspec.spec.call("routing/#{m[1]}_routing"),
63
- rspec.spec.call("controllers/#{m[1]}_controller"),
64
- rspec.spec.call("acceptance/#{m[1]}")
65
- ]
66
- end
67
-
68
- # Rails config changes
69
- watch(rails.spec_helper) { rspec.spec_dir }
70
- watch(rails.routes) { "#{rspec.spec_dir}/routing" }
71
- watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
72
-
73
- # Capybara features specs
74
- watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") }
75
- watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") }
76
- end
77
-
78
- guard :rubocop, cli: ['--display-cop-names'] do
79
- watch(%r{.+\.rb$})
80
- watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
81
- end
82
-
83
- guard :shell, all_on_start: false do
84
- watch_async(%r{app/views/(.+\.html.*\.erb)}) { |matches|
85
-
86
- matches = matches.map { |m| File.absolute_path(m[0]) }
87
- Dir.chdir('..') {
88
- system("bundle exec erblint #{matches.join(' ')}")
89
- }
90
- }
91
- end
92
- end
93
-
94
- group :autofix do
95
- guard :rubocop, all_on_start: false, cli: ['--auto-correct', '--display-cop-names'] do
96
- watch(%r{.+\.rb$})
97
- watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
98
- end
99
- end
100
-
101
- scope group: :red_green_refactor
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require 'bundler/setup'
5
- require 'wcc/contentful'
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require 'irb'
15
- IRB.start(__FILE__)
data/bin/rails DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- # This command will automatically be run when you run "rails" with Rails gems
5
- # installed from the root of your application.
6
-
7
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
8
- ENGINE_PATH = File.expand_path('../../lib/wcc/contentful/engine', __FILE__)
9
- APP_PATH = File.expand_path('../../spec/dummy/config/application', __FILE__)
10
-
11
- # Set up gems listed in the Gemfile.
12
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
13
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
14
-
15
- require 'rails/all'
16
- require 'rails/engine/commands'
data/bin/rspec DELETED
@@ -1,3 +0,0 @@
1
- #!/bin/sh
2
-
3
- bundle exec rspec $*
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
Binary file