cells-rails 0.0.8 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +7 -2
- data/.travis.yml +10 -10
- data/Appraisals +23 -0
- data/CHANGES.md +20 -0
- data/Gemfile +1 -2
- data/README.md +2 -1
- data/Rakefile +4 -1
- data/cells-rails.gemspec +6 -3
- data/gemfiles/5.0.gemfile +17 -0
- data/gemfiles/5.0.gemfile.lock +205 -0
- data/gemfiles/5.1.gemfile +17 -0
- data/gemfiles/5.1.gemfile.lock +205 -0
- data/gemfiles/5.2.gemfile +17 -0
- data/gemfiles/5.2.gemfile.lock +213 -0
- data/gemfiles/6.0.gemfile +17 -0
- data/gemfiles/6.0.gemfile.lock +229 -0
- data/lib/cell/helper/asset_helper.rb +1 -0
- data/lib/cell/rails.rb +17 -2
- data/lib/cell/rails/testing.rb +11 -7
- data/lib/cell/railtie.rb +10 -0
- data/lib/cells-rails.rb +1 -0
- data/lib/cells/rails.rb +1 -4
- data/lib/cells/rails/version.rb +1 -1
- metadata +64 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2e0e43d6c39590fba89d13e52fa100e648a4304323aba03aca32f333c65436db
|
4
|
+
data.tar.gz: f863c84cda0f067c1608e5529f06e122e046b219ea4ba2874a9fbf938d6b519a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b60144b24186f123a929b3bef7f57f0b322f1156c504224f01bc068f80460b6ead2e26792fae38275731d51fc90843ade834d22e72f9bb3a6be38b2df09f901
|
7
|
+
data.tar.gz: dd05962c92f422a760d08fe535220d692379a7f1217d98f6353de1899b965b7364bf40865b0c200a399735e8aee94ce763e4d4d500108a099e9be75ec9c681dc
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
language: ruby
|
2
|
+
before_install: gem install bundler
|
2
3
|
rvm:
|
3
|
-
- 2.
|
4
|
-
- 2.
|
5
|
-
- 2.
|
6
|
-
- 2.0.0
|
7
|
-
- 1.9.3
|
8
|
-
- jruby-19mode
|
4
|
+
- 2.7
|
5
|
+
- 2.6
|
6
|
+
- 2.5
|
9
7
|
gemfile:
|
10
|
-
- gemfiles/
|
11
|
-
- gemfiles/
|
12
|
-
- gemfiles/
|
13
|
-
- gemfiles/
|
8
|
+
- gemfiles/6.0.gemfile
|
9
|
+
- gemfiles/5.2.gemfile
|
10
|
+
- gemfiles/5.1.gemfile
|
11
|
+
- gemfiles/5.0.gemfile
|
12
|
+
|
13
|
+
cache: bundler
|
data/Appraisals
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
appraise "6.0" do
|
2
|
+
gem "railties", "~> 6.0"
|
3
|
+
gem "activerecord", "~> 6.0"
|
4
|
+
gem "my_engine", path: "test/rails6.0/engines/my_engine"
|
5
|
+
end
|
6
|
+
|
7
|
+
appraise "5.2" do
|
8
|
+
gem "railties", "~> 5.2"
|
9
|
+
gem "activerecord", "~> 5.2"
|
10
|
+
gem "my_engine", path: "test/rails5.2/engines/my_engine"
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise "5.1" do
|
14
|
+
gem "railties", "~> 5.1.0"
|
15
|
+
gem "activerecord", "~> 5.1.0"
|
16
|
+
gem "my_engine", path: "test/rails5.1/engines/my_engine"
|
17
|
+
end
|
18
|
+
|
19
|
+
appraise "5.0" do
|
20
|
+
gem "railties", "~> 5.0.0"
|
21
|
+
gem "activerecord", "~> 5.0.0"
|
22
|
+
gem "my_engine", path: "test/rails5.0/engines/my_engine"
|
23
|
+
end
|
data/CHANGES.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
## 0.1.3
|
2
|
+
|
3
|
+
* Fix previous fixes.
|
4
|
+
|
5
|
+
## 0.1.2
|
6
|
+
|
7
|
+
* Fix `LocalJumpError` from our Railtie.
|
8
|
+
|
9
|
+
## 0.1.1
|
10
|
+
|
11
|
+
* The `Cell.view_paths` are now set automatically for `Trailblazer::Cell`s, too, if the gem is present. This allows starting Rails in daemon mode `rails s -d` and cells finding its views.
|
12
|
+
|
13
|
+
## 0.1.0
|
14
|
+
|
15
|
+
* Support for Rails 6.0 Thank to @Szeliga
|
16
|
+
|
17
|
+
## 0.0.9
|
18
|
+
|
19
|
+
* Prevent Forwardable from printing warnings in Ruby 2.4+
|
20
|
+
|
1
21
|
## 0.0.8
|
2
22
|
|
3
23
|
* Fix testing for `rspec-cells` in combination with Rails 5.1. Thanks @tiagoamaro.
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Cells::Rails
|
2
|
+
[![Build Status](https://travis-ci.org/trailblazer/cells-rails.svg?branch=master)](https://travis-ci.org/trailblazer/cells-rails)
|
2
3
|
|
3
4
|
[Cells](https://github.com/apotonick/cells) is a generic view model implementation for Ruby. Cells-rails brings Rails-specific bindings.
|
4
5
|
|
@@ -21,4 +22,4 @@ gem 'cells-rails'
|
|
21
22
|
|
22
23
|
## License
|
23
24
|
|
24
|
-
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
25
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
2
|
require "rake/testtask"
|
3
|
+
require 'rails'
|
4
|
+
|
5
|
+
test_folder = Rails.version[0..2]
|
3
6
|
|
4
7
|
Rake::TestTask.new(:test) do |t|
|
5
8
|
t.libs << "test"
|
6
9
|
t.libs << "lib"
|
7
|
-
t.test_files = FileList[
|
10
|
+
t.test_files = FileList["test/rails#{test_folder}/**/*_test.rb"]
|
8
11
|
end
|
9
12
|
|
10
13
|
task :default => :test
|
data/cells-rails.gemspec
CHANGED
@@ -18,12 +18,15 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.require_paths = ["lib"]
|
19
19
|
|
20
20
|
spec.add_dependency "cells", ">= 4.1.6", "< 5.0.0"
|
21
|
-
spec.add_dependency "actionpack", ">=
|
21
|
+
spec.add_dependency "actionpack", ">= 5.0"
|
22
22
|
|
23
23
|
|
24
|
-
spec.add_development_dependency "bundler"
|
25
|
-
spec.add_development_dependency "rake"
|
24
|
+
spec.add_development_dependency "bundler"
|
25
|
+
spec.add_development_dependency "rake"
|
26
26
|
spec.add_development_dependency "minitest"
|
27
27
|
spec.add_development_dependency "rails"
|
28
28
|
spec.add_development_dependency "cells-erb"
|
29
|
+
spec.add_development_dependency "sass-rails"
|
30
|
+
spec.add_development_dependency "appraisal"
|
31
|
+
spec.add_development_dependency "pry-byebug"
|
29
32
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "sass-rails", "~> 6.0.0"
|
6
|
+
gem "simple_form"
|
7
|
+
gem "formtastic"
|
8
|
+
gem "railties", "~> 5.0.0"
|
9
|
+
gem "activerecord", "~> 5.0.0"
|
10
|
+
gem "my_engine", path: "../test/rails5.0/engines/my_engine"
|
11
|
+
|
12
|
+
group :development, :test do
|
13
|
+
gem "minitest-spec-rails"
|
14
|
+
gem "capybara_minitest_spec"
|
15
|
+
end
|
16
|
+
|
17
|
+
gemspec path: "../"
|
@@ -0,0 +1,205 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../test/rails5.0/engines/my_engine
|
3
|
+
specs:
|
4
|
+
my_engine (0.0.1)
|
5
|
+
cells (>= 4.0.0.beta5)
|
6
|
+
cells-erb
|
7
|
+
rails (>= 4.2.1)
|
8
|
+
|
9
|
+
PATH
|
10
|
+
remote: ..
|
11
|
+
specs:
|
12
|
+
cells-rails (0.1.3)
|
13
|
+
actionpack (>= 5.0)
|
14
|
+
cells (>= 4.1.6, < 5.0.0)
|
15
|
+
|
16
|
+
GEM
|
17
|
+
remote: https://rubygems.org/
|
18
|
+
specs:
|
19
|
+
actioncable (5.0.7.2)
|
20
|
+
actionpack (= 5.0.7.2)
|
21
|
+
nio4r (>= 1.2, < 3.0)
|
22
|
+
websocket-driver (~> 0.6.1)
|
23
|
+
actionmailer (5.0.7.2)
|
24
|
+
actionpack (= 5.0.7.2)
|
25
|
+
actionview (= 5.0.7.2)
|
26
|
+
activejob (= 5.0.7.2)
|
27
|
+
mail (~> 2.5, >= 2.5.4)
|
28
|
+
rails-dom-testing (~> 2.0)
|
29
|
+
actionpack (5.0.7.2)
|
30
|
+
actionview (= 5.0.7.2)
|
31
|
+
activesupport (= 5.0.7.2)
|
32
|
+
rack (~> 2.0)
|
33
|
+
rack-test (~> 0.6.3)
|
34
|
+
rails-dom-testing (~> 2.0)
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
+
actionview (5.0.7.2)
|
37
|
+
activesupport (= 5.0.7.2)
|
38
|
+
builder (~> 3.1)
|
39
|
+
erubis (~> 2.7.0)
|
40
|
+
rails-dom-testing (~> 2.0)
|
41
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
+
activejob (5.0.7.2)
|
43
|
+
activesupport (= 5.0.7.2)
|
44
|
+
globalid (>= 0.3.6)
|
45
|
+
activemodel (5.0.7.2)
|
46
|
+
activesupport (= 5.0.7.2)
|
47
|
+
activerecord (5.0.7.2)
|
48
|
+
activemodel (= 5.0.7.2)
|
49
|
+
activesupport (= 5.0.7.2)
|
50
|
+
arel (~> 7.0)
|
51
|
+
activesupport (5.0.7.2)
|
52
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
53
|
+
i18n (>= 0.7, < 2)
|
54
|
+
minitest (~> 5.1)
|
55
|
+
tzinfo (~> 1.1)
|
56
|
+
addressable (2.7.0)
|
57
|
+
public_suffix (>= 2.0.2, < 5.0)
|
58
|
+
appraisal (2.3.0)
|
59
|
+
bundler
|
60
|
+
rake
|
61
|
+
thor (>= 0.14.0)
|
62
|
+
arel (7.1.4)
|
63
|
+
builder (3.2.4)
|
64
|
+
byebug (11.1.3)
|
65
|
+
capybara (3.33.0)
|
66
|
+
addressable
|
67
|
+
mini_mime (>= 0.1.3)
|
68
|
+
nokogiri (~> 1.8)
|
69
|
+
rack (>= 1.6.0)
|
70
|
+
rack-test (>= 0.6.3)
|
71
|
+
regexp_parser (~> 1.5)
|
72
|
+
xpath (~> 3.2)
|
73
|
+
capybara_minitest_spec (1.0.7)
|
74
|
+
capybara (>= 2)
|
75
|
+
minitest (>= 4)
|
76
|
+
cells (4.1.7)
|
77
|
+
declarative-builder (< 0.2.0)
|
78
|
+
declarative-option (< 0.2.0)
|
79
|
+
tilt (>= 1.4, < 3)
|
80
|
+
uber (< 0.2.0)
|
81
|
+
cells-erb (0.1.0)
|
82
|
+
cells (~> 4.0)
|
83
|
+
erbse (>= 0.1.1)
|
84
|
+
coderay (1.1.3)
|
85
|
+
concurrent-ruby (1.1.6)
|
86
|
+
crass (1.0.6)
|
87
|
+
declarative-builder (0.1.0)
|
88
|
+
declarative-option (< 0.2.0)
|
89
|
+
declarative-option (0.1.0)
|
90
|
+
erbse (0.1.4)
|
91
|
+
temple
|
92
|
+
erubis (2.7.0)
|
93
|
+
ffi (1.13.1)
|
94
|
+
formtastic (3.1.5)
|
95
|
+
actionpack (>= 3.2.13)
|
96
|
+
globalid (0.4.2)
|
97
|
+
activesupport (>= 4.2.0)
|
98
|
+
i18n (1.8.3)
|
99
|
+
concurrent-ruby (~> 1.0)
|
100
|
+
loofah (2.6.0)
|
101
|
+
crass (~> 1.0.2)
|
102
|
+
nokogiri (>= 1.5.9)
|
103
|
+
mail (2.7.1)
|
104
|
+
mini_mime (>= 0.1.1)
|
105
|
+
method_source (1.0.0)
|
106
|
+
mini_mime (1.0.2)
|
107
|
+
mini_portile2 (2.4.0)
|
108
|
+
minitest (5.14.1)
|
109
|
+
minitest-spec-rails (6.0.2)
|
110
|
+
minitest (>= 5.0)
|
111
|
+
railties (>= 4.1)
|
112
|
+
nio4r (2.5.2)
|
113
|
+
nokogiri (1.10.10)
|
114
|
+
mini_portile2 (~> 2.4.0)
|
115
|
+
pry (0.13.1)
|
116
|
+
coderay (~> 1.1)
|
117
|
+
method_source (~> 1.0)
|
118
|
+
pry-byebug (3.9.0)
|
119
|
+
byebug (~> 11.0)
|
120
|
+
pry (~> 0.13.0)
|
121
|
+
public_suffix (4.0.5)
|
122
|
+
rack (2.2.3)
|
123
|
+
rack-test (0.6.3)
|
124
|
+
rack (>= 1.0)
|
125
|
+
rails (5.0.7.2)
|
126
|
+
actioncable (= 5.0.7.2)
|
127
|
+
actionmailer (= 5.0.7.2)
|
128
|
+
actionpack (= 5.0.7.2)
|
129
|
+
actionview (= 5.0.7.2)
|
130
|
+
activejob (= 5.0.7.2)
|
131
|
+
activemodel (= 5.0.7.2)
|
132
|
+
activerecord (= 5.0.7.2)
|
133
|
+
activesupport (= 5.0.7.2)
|
134
|
+
bundler (>= 1.3.0)
|
135
|
+
railties (= 5.0.7.2)
|
136
|
+
sprockets-rails (>= 2.0.0)
|
137
|
+
rails-dom-testing (2.0.3)
|
138
|
+
activesupport (>= 4.2.0)
|
139
|
+
nokogiri (>= 1.6)
|
140
|
+
rails-html-sanitizer (1.3.0)
|
141
|
+
loofah (~> 2.3)
|
142
|
+
railties (5.0.7.2)
|
143
|
+
actionpack (= 5.0.7.2)
|
144
|
+
activesupport (= 5.0.7.2)
|
145
|
+
method_source
|
146
|
+
rake (>= 0.8.7)
|
147
|
+
thor (>= 0.18.1, < 2.0)
|
148
|
+
rake (13.0.1)
|
149
|
+
regexp_parser (1.7.1)
|
150
|
+
sass-rails (6.0.0)
|
151
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
152
|
+
sassc (2.4.0)
|
153
|
+
ffi (~> 1.9)
|
154
|
+
sassc-rails (2.1.2)
|
155
|
+
railties (>= 4.0.0)
|
156
|
+
sassc (>= 2.0)
|
157
|
+
sprockets (> 3.0)
|
158
|
+
sprockets-rails
|
159
|
+
tilt
|
160
|
+
simple_form (5.0.2)
|
161
|
+
actionpack (>= 5.0)
|
162
|
+
activemodel (>= 5.0)
|
163
|
+
sprockets (4.0.2)
|
164
|
+
concurrent-ruby (~> 1.0)
|
165
|
+
rack (> 1, < 3)
|
166
|
+
sprockets-rails (3.2.1)
|
167
|
+
actionpack (>= 4.0)
|
168
|
+
activesupport (>= 4.0)
|
169
|
+
sprockets (>= 3.0.0)
|
170
|
+
temple (0.8.2)
|
171
|
+
thor (1.0.1)
|
172
|
+
thread_safe (0.3.6)
|
173
|
+
tilt (2.0.10)
|
174
|
+
tzinfo (1.2.7)
|
175
|
+
thread_safe (~> 0.1)
|
176
|
+
uber (0.1.0)
|
177
|
+
websocket-driver (0.6.5)
|
178
|
+
websocket-extensions (>= 0.1.0)
|
179
|
+
websocket-extensions (0.1.5)
|
180
|
+
xpath (3.2.0)
|
181
|
+
nokogiri (~> 1.8)
|
182
|
+
|
183
|
+
PLATFORMS
|
184
|
+
ruby
|
185
|
+
|
186
|
+
DEPENDENCIES
|
187
|
+
activerecord (~> 5.0.0)
|
188
|
+
appraisal
|
189
|
+
bundler
|
190
|
+
capybara_minitest_spec
|
191
|
+
cells-erb
|
192
|
+
cells-rails!
|
193
|
+
formtastic
|
194
|
+
minitest
|
195
|
+
minitest-spec-rails
|
196
|
+
my_engine!
|
197
|
+
pry-byebug
|
198
|
+
rails
|
199
|
+
railties (~> 5.0.0)
|
200
|
+
rake
|
201
|
+
sass-rails (~> 6.0.0)
|
202
|
+
simple_form
|
203
|
+
|
204
|
+
BUNDLED WITH
|
205
|
+
2.1.4
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "sass-rails", "~> 6.0.0"
|
6
|
+
gem "simple_form"
|
7
|
+
gem "formtastic"
|
8
|
+
gem "railties", "~> 5.1.0"
|
9
|
+
gem "activerecord", "~> 5.1.0"
|
10
|
+
gem "my_engine", path: "../test/rails5.1/engines/my_engine"
|
11
|
+
|
12
|
+
group :development, :test do
|
13
|
+
gem "minitest-spec-rails"
|
14
|
+
gem "capybara_minitest_spec"
|
15
|
+
end
|
16
|
+
|
17
|
+
gemspec path: "../"
|
@@ -0,0 +1,205 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../test/rails5.1/engines/my_engine
|
3
|
+
specs:
|
4
|
+
my_engine (0.0.1)
|
5
|
+
cells (>= 4.0.0.beta5)
|
6
|
+
cells-erb
|
7
|
+
rails (>= 4.2.1)
|
8
|
+
|
9
|
+
PATH
|
10
|
+
remote: ..
|
11
|
+
specs:
|
12
|
+
cells-rails (0.1.3)
|
13
|
+
actionpack (>= 5.0)
|
14
|
+
cells (>= 4.1.6, < 5.0.0)
|
15
|
+
|
16
|
+
GEM
|
17
|
+
remote: https://rubygems.org/
|
18
|
+
specs:
|
19
|
+
actioncable (5.1.7)
|
20
|
+
actionpack (= 5.1.7)
|
21
|
+
nio4r (~> 2.0)
|
22
|
+
websocket-driver (~> 0.6.1)
|
23
|
+
actionmailer (5.1.7)
|
24
|
+
actionpack (= 5.1.7)
|
25
|
+
actionview (= 5.1.7)
|
26
|
+
activejob (= 5.1.7)
|
27
|
+
mail (~> 2.5, >= 2.5.4)
|
28
|
+
rails-dom-testing (~> 2.0)
|
29
|
+
actionpack (5.1.7)
|
30
|
+
actionview (= 5.1.7)
|
31
|
+
activesupport (= 5.1.7)
|
32
|
+
rack (~> 2.0)
|
33
|
+
rack-test (>= 0.6.3)
|
34
|
+
rails-dom-testing (~> 2.0)
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
+
actionview (5.1.7)
|
37
|
+
activesupport (= 5.1.7)
|
38
|
+
builder (~> 3.1)
|
39
|
+
erubi (~> 1.4)
|
40
|
+
rails-dom-testing (~> 2.0)
|
41
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
+
activejob (5.1.7)
|
43
|
+
activesupport (= 5.1.7)
|
44
|
+
globalid (>= 0.3.6)
|
45
|
+
activemodel (5.1.7)
|
46
|
+
activesupport (= 5.1.7)
|
47
|
+
activerecord (5.1.7)
|
48
|
+
activemodel (= 5.1.7)
|
49
|
+
activesupport (= 5.1.7)
|
50
|
+
arel (~> 8.0)
|
51
|
+
activesupport (5.1.7)
|
52
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
53
|
+
i18n (>= 0.7, < 2)
|
54
|
+
minitest (~> 5.1)
|
55
|
+
tzinfo (~> 1.1)
|
56
|
+
addressable (2.7.0)
|
57
|
+
public_suffix (>= 2.0.2, < 5.0)
|
58
|
+
appraisal (2.3.0)
|
59
|
+
bundler
|
60
|
+
rake
|
61
|
+
thor (>= 0.14.0)
|
62
|
+
arel (8.0.0)
|
63
|
+
builder (3.2.4)
|
64
|
+
byebug (11.1.3)
|
65
|
+
capybara (3.33.0)
|
66
|
+
addressable
|
67
|
+
mini_mime (>= 0.1.3)
|
68
|
+
nokogiri (~> 1.8)
|
69
|
+
rack (>= 1.6.0)
|
70
|
+
rack-test (>= 0.6.3)
|
71
|
+
regexp_parser (~> 1.5)
|
72
|
+
xpath (~> 3.2)
|
73
|
+
capybara_minitest_spec (1.0.7)
|
74
|
+
capybara (>= 2)
|
75
|
+
minitest (>= 4)
|
76
|
+
cells (4.1.7)
|
77
|
+
declarative-builder (< 0.2.0)
|
78
|
+
declarative-option (< 0.2.0)
|
79
|
+
tilt (>= 1.4, < 3)
|
80
|
+
uber (< 0.2.0)
|
81
|
+
cells-erb (0.1.0)
|
82
|
+
cells (~> 4.0)
|
83
|
+
erbse (>= 0.1.1)
|
84
|
+
coderay (1.1.3)
|
85
|
+
concurrent-ruby (1.1.6)
|
86
|
+
crass (1.0.6)
|
87
|
+
declarative-builder (0.1.0)
|
88
|
+
declarative-option (< 0.2.0)
|
89
|
+
declarative-option (0.1.0)
|
90
|
+
erbse (0.1.4)
|
91
|
+
temple
|
92
|
+
erubi (1.9.0)
|
93
|
+
ffi (1.13.1)
|
94
|
+
formtastic (3.1.5)
|
95
|
+
actionpack (>= 3.2.13)
|
96
|
+
globalid (0.4.2)
|
97
|
+
activesupport (>= 4.2.0)
|
98
|
+
i18n (1.8.3)
|
99
|
+
concurrent-ruby (~> 1.0)
|
100
|
+
loofah (2.6.0)
|
101
|
+
crass (~> 1.0.2)
|
102
|
+
nokogiri (>= 1.5.9)
|
103
|
+
mail (2.7.1)
|
104
|
+
mini_mime (>= 0.1.1)
|
105
|
+
method_source (1.0.0)
|
106
|
+
mini_mime (1.0.2)
|
107
|
+
mini_portile2 (2.4.0)
|
108
|
+
minitest (5.14.1)
|
109
|
+
minitest-spec-rails (6.0.2)
|
110
|
+
minitest (>= 5.0)
|
111
|
+
railties (>= 4.1)
|
112
|
+
nio4r (2.5.2)
|
113
|
+
nokogiri (1.10.10)
|
114
|
+
mini_portile2 (~> 2.4.0)
|
115
|
+
pry (0.13.1)
|
116
|
+
coderay (~> 1.1)
|
117
|
+
method_source (~> 1.0)
|
118
|
+
pry-byebug (3.9.0)
|
119
|
+
byebug (~> 11.0)
|
120
|
+
pry (~> 0.13.0)
|
121
|
+
public_suffix (4.0.5)
|
122
|
+
rack (2.2.3)
|
123
|
+
rack-test (1.1.0)
|
124
|
+
rack (>= 1.0, < 3)
|
125
|
+
rails (5.1.7)
|
126
|
+
actioncable (= 5.1.7)
|
127
|
+
actionmailer (= 5.1.7)
|
128
|
+
actionpack (= 5.1.7)
|
129
|
+
actionview (= 5.1.7)
|
130
|
+
activejob (= 5.1.7)
|
131
|
+
activemodel (= 5.1.7)
|
132
|
+
activerecord (= 5.1.7)
|
133
|
+
activesupport (= 5.1.7)
|
134
|
+
bundler (>= 1.3.0)
|
135
|
+
railties (= 5.1.7)
|
136
|
+
sprockets-rails (>= 2.0.0)
|
137
|
+
rails-dom-testing (2.0.3)
|
138
|
+
activesupport (>= 4.2.0)
|
139
|
+
nokogiri (>= 1.6)
|
140
|
+
rails-html-sanitizer (1.3.0)
|
141
|
+
loofah (~> 2.3)
|
142
|
+
railties (5.1.7)
|
143
|
+
actionpack (= 5.1.7)
|
144
|
+
activesupport (= 5.1.7)
|
145
|
+
method_source
|
146
|
+
rake (>= 0.8.7)
|
147
|
+
thor (>= 0.18.1, < 2.0)
|
148
|
+
rake (13.0.1)
|
149
|
+
regexp_parser (1.7.1)
|
150
|
+
sass-rails (6.0.0)
|
151
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
152
|
+
sassc (2.4.0)
|
153
|
+
ffi (~> 1.9)
|
154
|
+
sassc-rails (2.1.2)
|
155
|
+
railties (>= 4.0.0)
|
156
|
+
sassc (>= 2.0)
|
157
|
+
sprockets (> 3.0)
|
158
|
+
sprockets-rails
|
159
|
+
tilt
|
160
|
+
simple_form (5.0.2)
|
161
|
+
actionpack (>= 5.0)
|
162
|
+
activemodel (>= 5.0)
|
163
|
+
sprockets (4.0.2)
|
164
|
+
concurrent-ruby (~> 1.0)
|
165
|
+
rack (> 1, < 3)
|
166
|
+
sprockets-rails (3.2.1)
|
167
|
+
actionpack (>= 4.0)
|
168
|
+
activesupport (>= 4.0)
|
169
|
+
sprockets (>= 3.0.0)
|
170
|
+
temple (0.8.2)
|
171
|
+
thor (1.0.1)
|
172
|
+
thread_safe (0.3.6)
|
173
|
+
tilt (2.0.10)
|
174
|
+
tzinfo (1.2.7)
|
175
|
+
thread_safe (~> 0.1)
|
176
|
+
uber (0.1.0)
|
177
|
+
websocket-driver (0.6.5)
|
178
|
+
websocket-extensions (>= 0.1.0)
|
179
|
+
websocket-extensions (0.1.5)
|
180
|
+
xpath (3.2.0)
|
181
|
+
nokogiri (~> 1.8)
|
182
|
+
|
183
|
+
PLATFORMS
|
184
|
+
ruby
|
185
|
+
|
186
|
+
DEPENDENCIES
|
187
|
+
activerecord (~> 5.1.0)
|
188
|
+
appraisal
|
189
|
+
bundler
|
190
|
+
capybara_minitest_spec
|
191
|
+
cells-erb
|
192
|
+
cells-rails!
|
193
|
+
formtastic
|
194
|
+
minitest
|
195
|
+
minitest-spec-rails
|
196
|
+
my_engine!
|
197
|
+
pry-byebug
|
198
|
+
rails
|
199
|
+
railties (~> 5.1.0)
|
200
|
+
rake
|
201
|
+
sass-rails (~> 6.0.0)
|
202
|
+
simple_form
|
203
|
+
|
204
|
+
BUNDLED WITH
|
205
|
+
2.1.4
|