renderful 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +44 -7
- data/.gitignore +2 -0
- data/.rubocop-https---relaxed-ruby-style-rubocop-yml +9 -1
- data/.rubocop.yml +2 -16
- data/Appraisals +9 -0
- data/CHANGELOG.md +14 -1
- data/README.md +7 -0
- data/config.ru +9 -0
- data/gemfiles/rails_5_2.gemfile +9 -0
- data/gemfiles/rails_6_0.gemfile +9 -0
- data/lib/renderful/cache_invalidator.rb +7 -3
- data/lib/renderful/version.rb +1 -1
- data/renderful.gemspec +7 -6
- metadata +57 -21
- data/.hound.yml +0 -5
- data/Gemfile.lock +0 -190
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2915cb05e7ad342ff0423bb0a5f024f92388334aec40f8bb209ff30b2c14e57e
|
4
|
+
data.tar.gz: 28ff5620681ba6c05aa67887e45400a3035c9eb0f4c131bd5972801ef193f5ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bde61ec61fb15f4eaa13bb807263df6f85816d17d80810c033a5d9757a42c2fb0846b7663a7bb313a8c5602c2a73fec4c6b0ae36457bf65e7afccc44efe596e
|
7
|
+
data.tar.gz: 475ab0f2bb694af4c9d7d109881a4e98fd09ce3a639e7b360f466b4d1d0170fe633a4590c537a76016ced1b3b5187c0c453eef779fba246643854dc902e99bce
|
data/.circleci/config.yml
CHANGED
@@ -1,8 +1,7 @@
|
|
1
|
-
version: 2
|
2
1
|
jobs:
|
3
|
-
|
2
|
+
setup:
|
4
3
|
docker:
|
5
|
-
- image: circleci/ruby:2.
|
4
|
+
- image: circleci/ruby:2.7.0
|
6
5
|
environment:
|
7
6
|
BUNDLE_JOBS: 3
|
8
7
|
BUNDLE_RETRY: 3
|
@@ -11,22 +10,60 @@ jobs:
|
|
11
10
|
- checkout
|
12
11
|
- restore_cache:
|
13
12
|
keys:
|
14
|
-
- renderful-v1-{{
|
13
|
+
- renderful-v1-{{ .Branch }}-{{ .Revision }}
|
14
|
+
- renderful-v1-{{ .Branch }}
|
15
15
|
- renderful-v1-
|
16
16
|
- run:
|
17
17
|
name: Bundle Install
|
18
18
|
command: bundle check || bundle install
|
19
19
|
- save_cache:
|
20
|
-
key: renderful-v1-{{
|
20
|
+
key: renderful-v1-{{ .Branch }}-{{ .Revision }}
|
21
21
|
paths:
|
22
22
|
- vendor/bundle
|
23
|
+
|
24
|
+
test:
|
25
|
+
docker:
|
26
|
+
- image: circleci/ruby:2.7.0
|
27
|
+
environment:
|
28
|
+
BUNDLE_PATH: vendor/bundle
|
29
|
+
steps:
|
30
|
+
- checkout
|
31
|
+
- restore_cache:
|
32
|
+
keys:
|
33
|
+
- renderful-v1-{{ .Branch }}-{{ .Revision }}
|
23
34
|
- run:
|
24
|
-
name: Run
|
35
|
+
name: Run RSpec
|
25
36
|
command: |
|
26
|
-
bundle exec rspec --profile 10 \
|
37
|
+
bundle exec appraisal rspec --profile 10 \
|
27
38
|
--format RspecJunitFormatter \
|
28
39
|
--out test_results/rspec.xml \
|
29
40
|
--format progress \
|
30
41
|
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
31
42
|
- store_test_results:
|
32
43
|
path: test_results
|
44
|
+
|
45
|
+
lint:
|
46
|
+
docker:
|
47
|
+
- image: circleci/ruby:2.7.0
|
48
|
+
environment:
|
49
|
+
BUNDLE_PATH: vendor/bundle
|
50
|
+
steps:
|
51
|
+
- checkout
|
52
|
+
- restore_cache:
|
53
|
+
keys:
|
54
|
+
- renderful-v1-{{ .Branch }}-{{ .Revision }}
|
55
|
+
- run:
|
56
|
+
name: Run RuboCop
|
57
|
+
command: bundle exec rubocop
|
58
|
+
|
59
|
+
workflows:
|
60
|
+
version: 2
|
61
|
+
test-and-lint:
|
62
|
+
jobs:
|
63
|
+
- setup
|
64
|
+
- test:
|
65
|
+
requires:
|
66
|
+
- setup
|
67
|
+
- lint:
|
68
|
+
requires:
|
69
|
+
- setup
|
data/.gitignore
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Relaxed.Ruby.Style
|
2
|
-
## Version 2.
|
2
|
+
## Version 2.4
|
3
3
|
|
4
4
|
Style/Alias:
|
5
5
|
Enabled: false
|
@@ -65,6 +65,10 @@ Style/NegatedWhile:
|
|
65
65
|
Enabled: false
|
66
66
|
StyleGuide: https://relaxed.ruby.style/#stylenegatedwhile
|
67
67
|
|
68
|
+
Style/NumericPredicate:
|
69
|
+
Enabled: false
|
70
|
+
StyleGuide: https://relaxed.ruby.style/#stylenumericpredicate
|
71
|
+
|
68
72
|
Style/ParallelAssignment:
|
69
73
|
Enabled: false
|
70
74
|
StyleGuide: https://relaxed.ruby.style/#styleparallelassignment
|
@@ -121,6 +125,10 @@ Style/TrailingCommaInHashLiteral:
|
|
121
125
|
Enabled: false
|
122
126
|
StyleGuide: https://relaxed.ruby.style/#styletrailingcommainhashliteral
|
123
127
|
|
128
|
+
Style/SymbolArray:
|
129
|
+
Enabled: false
|
130
|
+
StyleGuide: http://relaxed.ruby.style/#stylesymbolarray
|
131
|
+
|
124
132
|
Style/WhileUntilModifier:
|
125
133
|
Enabled: false
|
126
134
|
StyleGuide: https://relaxed.ruby.style/#stylewhileuntilmodifier
|
data/.rubocop.yml
CHANGED
@@ -1,22 +1,8 @@
|
|
1
1
|
inherit_from:
|
2
2
|
- https://relaxed.ruby.style/rubocop.yml
|
3
3
|
|
4
|
-
|
4
|
+
AllCops:
|
5
|
+
TargetRubyVersion: 2.4
|
5
6
|
|
6
7
|
Metrics/BlockLength:
|
7
8
|
Enabled: false
|
8
|
-
|
9
|
-
Layout/IndentHash:
|
10
|
-
EnforcedStyle: consistent
|
11
|
-
|
12
|
-
RSpec/ExampleLength:
|
13
|
-
Enabled: false
|
14
|
-
|
15
|
-
Layout/ClosingParenthesisIndentation:
|
16
|
-
Enabled: false
|
17
|
-
|
18
|
-
Layout/FirstParameterIndentation:
|
19
|
-
EnforcedStyle: consistent
|
20
|
-
|
21
|
-
RSpec/NestedGroups:
|
22
|
-
Enabled: false
|
data/Appraisals
ADDED
data/CHANGELOG.md
CHANGED
@@ -7,4 +7,17 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
-
|
10
|
+
### Added
|
11
|
+
|
12
|
+
- Added support for Rails 6 ([#5](https://github.com/nebulab/renderful/pull/5))
|
13
|
+
|
14
|
+
### Fixed
|
15
|
+
|
16
|
+
- Fixed linked entries not being invalidated ([5325981](https://github.com/nebulab/renderful/commit/5325981b6ed093407712e16e9937d86f92cdbab0))
|
17
|
+
|
18
|
+
## [0.1.0] (2019-06-08)
|
19
|
+
|
20
|
+
First public release.
|
21
|
+
|
22
|
+
[Unreleased]: https://github.com/nebulab/renderful/compare/v0.1.0...HEAD
|
23
|
+
[0.1.0]: https://github.com/nebulab/renderful/tree/v0.1.0
|
data/README.md
CHANGED
@@ -172,6 +172,8 @@ This is how you could use it in a Rails controller:
|
|
172
172
|
|
173
173
|
```ruby
|
174
174
|
class ContentfulWebhooksController < ApplicationController
|
175
|
+
skip_before_action :verify_authenticity_token
|
176
|
+
|
175
177
|
def create
|
176
178
|
Renderful::CacheInvalidator.new(RenderfulClient).process_webhook(request.raw_post)
|
177
179
|
head :no_content
|
@@ -179,6 +181,11 @@ class ContentfulWebhooksController < ApplicationController
|
|
179
181
|
end
|
180
182
|
```
|
181
183
|
|
184
|
+
The cache invalidator will not only invalidate the cache for the entry that has been updated, but
|
185
|
+
also for any entries linking to it, so that they are re-rendered. This is very useful, for instance,
|
186
|
+
if you have a `Page` entry type that contains references to many UI components - when one of the
|
187
|
+
components is updated, you want the page to be re-rendered.
|
188
|
+
|
182
189
|
### Rails integration
|
183
190
|
|
184
191
|
If you are using Ruby on Rails and you want to use ERB instead of including HTML in your renderers,
|
data/config.ru
ADDED
@@ -14,9 +14,13 @@ module Renderful
|
|
14
14
|
params = body.is_a?(String) ? JSON.parse(body) : body
|
15
15
|
|
16
16
|
client.cache.delete(client.cache_key_for(
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
content_type_id: params['sys']['contentType']['sys']['id'],
|
18
|
+
entry_id: params['sys']['id'],
|
19
|
+
))
|
20
|
+
|
21
|
+
client.contentful.entries(links_to_entry: params['sys']['id']).each do |linking_entry|
|
22
|
+
client.cache.delete(client.cache_key_for(linking_entry))
|
23
|
+
end
|
20
24
|
end
|
21
25
|
end
|
22
26
|
end
|
data/lib/renderful/version.rb
CHANGED
data/renderful.gemspec
CHANGED
@@ -28,14 +28,15 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.require_paths = ['lib']
|
29
29
|
|
30
30
|
spec.add_dependency 'contentful', '~> 2.11'
|
31
|
-
spec.add_dependency 'rails', '
|
31
|
+
spec.add_dependency 'rails', ['>= 5.0.0', '< 7']
|
32
32
|
|
33
|
-
spec.add_development_dependency '
|
33
|
+
spec.add_development_dependency 'appraisal', '~> 2.2'
|
34
|
+
spec.add_development_dependency 'bundler', '~> 2.1'
|
35
|
+
spec.add_development_dependency 'combustion', '~> 1.1'
|
34
36
|
spec.add_development_dependency 'rake', '~> 10.0'
|
35
37
|
spec.add_development_dependency 'redis', '~> 4.1'
|
36
|
-
spec.add_development_dependency 'rspec', '~>
|
38
|
+
spec.add_development_dependency 'rspec-rails', '~> 4.0.0.beta4'
|
37
39
|
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.4.1'
|
38
|
-
|
39
|
-
spec.add_development_dependency 'rubocop', '
|
40
|
-
spec.add_development_dependency 'rubocop-rspec', '1.32.0'
|
40
|
+
spec.add_development_dependency 'rubocop', '~> 0.79.0'
|
41
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 1.37'
|
41
42
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: renderful
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alessandro Desantis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: contentful
|
@@ -28,30 +28,64 @@ dependencies:
|
|
28
28
|
name: rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 5.0.0
|
34
|
+
- - "<"
|
32
35
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
36
|
+
version: '7'
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 5.0.0
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '7'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: appraisal
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '2.2'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
36
56
|
version_requirements: !ruby/object:Gem::Requirement
|
37
57
|
requirements:
|
38
58
|
- - "~>"
|
39
59
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
60
|
+
version: '2.2'
|
41
61
|
- !ruby/object:Gem::Dependency
|
42
62
|
name: bundler
|
43
63
|
requirement: !ruby/object:Gem::Requirement
|
44
64
|
requirements:
|
45
65
|
- - "~>"
|
46
66
|
- !ruby/object:Gem::Version
|
47
|
-
version: '1
|
67
|
+
version: '2.1'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '2.1'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: combustion
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '1.1'
|
48
82
|
type: :development
|
49
83
|
prerelease: false
|
50
84
|
version_requirements: !ruby/object:Gem::Requirement
|
51
85
|
requirements:
|
52
86
|
- - "~>"
|
53
87
|
- !ruby/object:Gem::Version
|
54
|
-
version: '1.
|
88
|
+
version: '1.1'
|
55
89
|
- !ruby/object:Gem::Dependency
|
56
90
|
name: rake
|
57
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,19 +115,19 @@ dependencies:
|
|
81
115
|
- !ruby/object:Gem::Version
|
82
116
|
version: '4.1'
|
83
117
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: rspec
|
118
|
+
name: rspec-rails
|
85
119
|
requirement: !ruby/object:Gem::Requirement
|
86
120
|
requirements:
|
87
121
|
- - "~>"
|
88
122
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
123
|
+
version: 4.0.0.beta4
|
90
124
|
type: :development
|
91
125
|
prerelease: false
|
92
126
|
version_requirements: !ruby/object:Gem::Requirement
|
93
127
|
requirements:
|
94
128
|
- - "~>"
|
95
129
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
130
|
+
version: 4.0.0.beta4
|
97
131
|
- !ruby/object:Gem::Dependency
|
98
132
|
name: rspec_junit_formatter
|
99
133
|
requirement: !ruby/object:Gem::Requirement
|
@@ -112,30 +146,30 @@ dependencies:
|
|
112
146
|
name: rubocop
|
113
147
|
requirement: !ruby/object:Gem::Requirement
|
114
148
|
requirements:
|
115
|
-
- -
|
149
|
+
- - "~>"
|
116
150
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.
|
151
|
+
version: 0.79.0
|
118
152
|
type: :development
|
119
153
|
prerelease: false
|
120
154
|
version_requirements: !ruby/object:Gem::Requirement
|
121
155
|
requirements:
|
122
|
-
- -
|
156
|
+
- - "~>"
|
123
157
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.
|
158
|
+
version: 0.79.0
|
125
159
|
- !ruby/object:Gem::Dependency
|
126
160
|
name: rubocop-rspec
|
127
161
|
requirement: !ruby/object:Gem::Requirement
|
128
162
|
requirements:
|
129
|
-
- -
|
163
|
+
- - "~>"
|
130
164
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.
|
165
|
+
version: '1.37'
|
132
166
|
type: :development
|
133
167
|
prerelease: false
|
134
168
|
version_requirements: !ruby/object:Gem::Requirement
|
135
169
|
requirements:
|
136
|
-
- -
|
170
|
+
- - "~>"
|
137
171
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1.
|
172
|
+
version: '1.37'
|
139
173
|
description:
|
140
174
|
email:
|
141
175
|
- desa.alessandro@gmail.com
|
@@ -145,17 +179,19 @@ extra_rdoc_files: []
|
|
145
179
|
files:
|
146
180
|
- ".circleci/config.yml"
|
147
181
|
- ".gitignore"
|
148
|
-
- ".hound.yml"
|
149
182
|
- ".rubocop-https---relaxed-ruby-style-rubocop-yml"
|
150
183
|
- ".rubocop.yml"
|
184
|
+
- Appraisals
|
151
185
|
- CHANGELOG.md
|
152
186
|
- Gemfile
|
153
|
-
- Gemfile.lock
|
154
187
|
- MIT-LICENSE
|
155
188
|
- README.md
|
156
189
|
- Rakefile
|
157
190
|
- bin/console
|
158
191
|
- bin/setup
|
192
|
+
- config.ru
|
193
|
+
- gemfiles/rails_5_2.gemfile
|
194
|
+
- gemfiles/rails_6_0.gemfile
|
159
195
|
- lib/renderful.rb
|
160
196
|
- lib/renderful/cache.rb
|
161
197
|
- lib/renderful/cache/redis.rb
|
@@ -188,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
224
|
- !ruby/object:Gem::Version
|
189
225
|
version: '0'
|
190
226
|
requirements: []
|
191
|
-
rubygems_version: 3.0.
|
227
|
+
rubygems_version: 3.0.6
|
192
228
|
signing_key:
|
193
229
|
specification_version: 4
|
194
230
|
summary: Render your Contentful space!
|
data/.hound.yml
DELETED
data/Gemfile.lock
DELETED
@@ -1,190 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
renderful (0.1.0)
|
5
|
-
contentful (~> 2.11)
|
6
|
-
rails (~> 5.0)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actioncable (5.2.3)
|
12
|
-
actionpack (= 5.2.3)
|
13
|
-
nio4r (~> 2.0)
|
14
|
-
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailer (5.2.3)
|
16
|
-
actionpack (= 5.2.3)
|
17
|
-
actionview (= 5.2.3)
|
18
|
-
activejob (= 5.2.3)
|
19
|
-
mail (~> 2.5, >= 2.5.4)
|
20
|
-
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (5.2.3)
|
22
|
-
actionview (= 5.2.3)
|
23
|
-
activesupport (= 5.2.3)
|
24
|
-
rack (~> 2.0)
|
25
|
-
rack-test (>= 0.6.3)
|
26
|
-
rails-dom-testing (~> 2.0)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
actionview (5.2.3)
|
29
|
-
activesupport (= 5.2.3)
|
30
|
-
builder (~> 3.1)
|
31
|
-
erubi (~> 1.4)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
-
activejob (5.2.3)
|
35
|
-
activesupport (= 5.2.3)
|
36
|
-
globalid (>= 0.3.6)
|
37
|
-
activemodel (5.2.3)
|
38
|
-
activesupport (= 5.2.3)
|
39
|
-
activerecord (5.2.3)
|
40
|
-
activemodel (= 5.2.3)
|
41
|
-
activesupport (= 5.2.3)
|
42
|
-
arel (>= 9.0)
|
43
|
-
activestorage (5.2.3)
|
44
|
-
actionpack (= 5.2.3)
|
45
|
-
activerecord (= 5.2.3)
|
46
|
-
marcel (~> 0.3.1)
|
47
|
-
activesupport (5.2.3)
|
48
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
-
i18n (>= 0.7, < 2)
|
50
|
-
minitest (~> 5.1)
|
51
|
-
tzinfo (~> 1.1)
|
52
|
-
addressable (2.6.0)
|
53
|
-
public_suffix (>= 2.0.2, < 4.0)
|
54
|
-
arel (9.0.0)
|
55
|
-
ast (2.4.0)
|
56
|
-
builder (3.2.3)
|
57
|
-
concurrent-ruby (1.1.5)
|
58
|
-
contentful (2.12.0)
|
59
|
-
http (> 0.8, < 4.0)
|
60
|
-
multi_json (~> 1)
|
61
|
-
crass (1.0.4)
|
62
|
-
diff-lcs (1.3)
|
63
|
-
domain_name (0.5.20180417)
|
64
|
-
unf (>= 0.0.5, < 1.0.0)
|
65
|
-
erubi (1.8.0)
|
66
|
-
globalid (0.4.2)
|
67
|
-
activesupport (>= 4.2.0)
|
68
|
-
http (3.3.0)
|
69
|
-
addressable (~> 2.3)
|
70
|
-
http-cookie (~> 1.0)
|
71
|
-
http-form_data (~> 2.0)
|
72
|
-
http_parser.rb (~> 0.6.0)
|
73
|
-
http-cookie (1.0.3)
|
74
|
-
domain_name (~> 0.5)
|
75
|
-
http-form_data (2.1.1)
|
76
|
-
http_parser.rb (0.6.0)
|
77
|
-
i18n (1.6.0)
|
78
|
-
concurrent-ruby (~> 1.0)
|
79
|
-
jaro_winkler (1.5.2)
|
80
|
-
loofah (2.2.3)
|
81
|
-
crass (~> 1.0.2)
|
82
|
-
nokogiri (>= 1.5.9)
|
83
|
-
mail (2.7.1)
|
84
|
-
mini_mime (>= 0.1.1)
|
85
|
-
marcel (0.3.3)
|
86
|
-
mimemagic (~> 0.3.2)
|
87
|
-
method_source (0.9.2)
|
88
|
-
mimemagic (0.3.3)
|
89
|
-
mini_mime (1.0.1)
|
90
|
-
mini_portile2 (2.4.0)
|
91
|
-
minitest (5.11.3)
|
92
|
-
multi_json (1.13.1)
|
93
|
-
nio4r (2.3.1)
|
94
|
-
nokogiri (1.10.2)
|
95
|
-
mini_portile2 (~> 2.4.0)
|
96
|
-
parallel (1.17.0)
|
97
|
-
parser (2.6.2.1)
|
98
|
-
ast (~> 2.4.0)
|
99
|
-
powerpack (0.1.2)
|
100
|
-
public_suffix (3.0.3)
|
101
|
-
rack (2.0.7)
|
102
|
-
rack-test (1.1.0)
|
103
|
-
rack (>= 1.0, < 3)
|
104
|
-
rails (5.2.3)
|
105
|
-
actioncable (= 5.2.3)
|
106
|
-
actionmailer (= 5.2.3)
|
107
|
-
actionpack (= 5.2.3)
|
108
|
-
actionview (= 5.2.3)
|
109
|
-
activejob (= 5.2.3)
|
110
|
-
activemodel (= 5.2.3)
|
111
|
-
activerecord (= 5.2.3)
|
112
|
-
activestorage (= 5.2.3)
|
113
|
-
activesupport (= 5.2.3)
|
114
|
-
bundler (>= 1.3.0)
|
115
|
-
railties (= 5.2.3)
|
116
|
-
sprockets-rails (>= 2.0.0)
|
117
|
-
rails-dom-testing (2.0.3)
|
118
|
-
activesupport (>= 4.2.0)
|
119
|
-
nokogiri (>= 1.6)
|
120
|
-
rails-html-sanitizer (1.0.4)
|
121
|
-
loofah (~> 2.2, >= 2.2.2)
|
122
|
-
railties (5.2.3)
|
123
|
-
actionpack (= 5.2.3)
|
124
|
-
activesupport (= 5.2.3)
|
125
|
-
method_source
|
126
|
-
rake (>= 0.8.7)
|
127
|
-
thor (>= 0.19.0, < 2.0)
|
128
|
-
rainbow (3.0.0)
|
129
|
-
rake (10.5.0)
|
130
|
-
redis (4.1.0)
|
131
|
-
rspec (3.8.0)
|
132
|
-
rspec-core (~> 3.8.0)
|
133
|
-
rspec-expectations (~> 3.8.0)
|
134
|
-
rspec-mocks (~> 3.8.0)
|
135
|
-
rspec-core (3.8.0)
|
136
|
-
rspec-support (~> 3.8.0)
|
137
|
-
rspec-expectations (3.8.2)
|
138
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
139
|
-
rspec-support (~> 3.8.0)
|
140
|
-
rspec-mocks (3.8.0)
|
141
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
142
|
-
rspec-support (~> 3.8.0)
|
143
|
-
rspec-support (3.8.0)
|
144
|
-
rspec_junit_formatter (0.4.1)
|
145
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
146
|
-
rubocop (0.64.0)
|
147
|
-
jaro_winkler (~> 1.5.1)
|
148
|
-
parallel (~> 1.10)
|
149
|
-
parser (>= 2.5, != 2.5.1.1)
|
150
|
-
powerpack (~> 0.1)
|
151
|
-
rainbow (>= 2.2.2, < 4.0)
|
152
|
-
ruby-progressbar (~> 1.7)
|
153
|
-
unicode-display_width (~> 1.4.0)
|
154
|
-
rubocop-rspec (1.32.0)
|
155
|
-
rubocop (>= 0.60.0)
|
156
|
-
ruby-progressbar (1.10.0)
|
157
|
-
sprockets (3.7.2)
|
158
|
-
concurrent-ruby (~> 1.0)
|
159
|
-
rack (> 1, < 3)
|
160
|
-
sprockets-rails (3.2.1)
|
161
|
-
actionpack (>= 4.0)
|
162
|
-
activesupport (>= 4.0)
|
163
|
-
sprockets (>= 3.0.0)
|
164
|
-
thor (0.20.3)
|
165
|
-
thread_safe (0.3.6)
|
166
|
-
tzinfo (1.2.5)
|
167
|
-
thread_safe (~> 0.1)
|
168
|
-
unf (0.1.4)
|
169
|
-
unf_ext
|
170
|
-
unf_ext (0.0.7.5)
|
171
|
-
unicode-display_width (1.4.1)
|
172
|
-
websocket-driver (0.7.0)
|
173
|
-
websocket-extensions (>= 0.1.0)
|
174
|
-
websocket-extensions (0.1.3)
|
175
|
-
|
176
|
-
PLATFORMS
|
177
|
-
ruby
|
178
|
-
|
179
|
-
DEPENDENCIES
|
180
|
-
bundler (~> 1.17)
|
181
|
-
rake (~> 10.0)
|
182
|
-
redis (~> 4.1)
|
183
|
-
renderful!
|
184
|
-
rspec (~> 3.0)
|
185
|
-
rspec_junit_formatter (~> 0.4.1)
|
186
|
-
rubocop (= 0.64.0)
|
187
|
-
rubocop-rspec (= 1.32.0)
|
188
|
-
|
189
|
-
BUNDLED WITH
|
190
|
-
1.17.2
|