trailblazer-rails 2.4.2 → 2.4.3

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
  SHA256:
3
- metadata.gz: 9faf7799e32876341a5879295f057abdfd07e604d6514dffea13ae45e32a927e
4
- data.tar.gz: c2798545a46b91da97399c51d1958f425c3d14aaf5c76f996fba153be18cd486
3
+ metadata.gz: 3db59a3bfd15c7a3a69ddc04d1d1ad7bd4428f2a45e734186d7f2e558db1275e
4
+ data.tar.gz: 335308e490227a5b9a7d3c338cc87d9dca99a6958fdcfb5efb0416e7d9e2cdf5
5
5
  SHA512:
6
- metadata.gz: 3b2b1685d78a0b221fb6631187bbf07723d03716202dffebf0d4affeb9b753bdb133f506280c9294143eec94d028045985a7ed395d5b1c2d530ea64a0648abed
7
- data.tar.gz: 20ac39cc9d69742d70590b201ce2d66a11d40fcbe2ad68f11aa9b297fa9fc5b5ed995761b00d6f5c0b1d2ca0618089c7721ade8de6cab4c8a9942d602be8cbfb
6
+ metadata.gz: 0d8aa421a47e58851a57683e0da466ada50923d62f36c8536525ee7b3e80f9207834bee22c45f97bcede71ba2897c65d45f6e265c6fe09a155f14f0b57b5d61a
7
+ data.tar.gz: 6b5be13bdc46a3251db06ddd994578cc27a160b02009f201fcac95d5830953d211c5715d4bd2bc7f70e5f0eca6bbe69e23ce5e9af6ad62fa8daf66106697baa2
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.4.3
2
+
3
+ * Allow calling `#cell` without providing `model`, complying to cells-rails' `#cell` interface.
4
+
1
5
  # 2.4.2
2
6
 
3
7
  * Fix a bug where `Controller#run` wouldn't return the ctx.
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  *Trailblazer in your Rails controllers.*
4
4
 
5
- [![TRB Newsletter](https://img.shields.io/badge/TRB-newsletter-lightgrey.svg)](http://trailblazer.to/newsletter/)
6
5
  ![Build
7
6
  Status](https://github.com/trailblazer/trailblazer-rails/actions/workflows/ci.yml/badge.svg?branch=master)
8
7
  [![Gem Version](https://badge.fury.io/rb/trailblazer-rails.svg)](http://badge.fury.io/rb/trailblazer-rails)
@@ -19,7 +18,7 @@ This gem is slowly being superseded by TRB's [`endpoint` gem](https://trailblaze
19
18
  * Minimalistic integration tests ("smoke tests") to test controller/operation wiring.
20
19
  * Rendering cells instead of an ActionView in a controller action.
21
20
 
22
- Please refer to the [full documentation for more](https://trailblazer.to/2.1/docs/trailblazer.html#trailblazer-rails).
21
+ Please refer to the [full documentation for more](https://trailblazer.to/2.1/docs/rails.html).
23
22
 
24
23
  ## Installation
25
24
 
@@ -33,6 +32,8 @@ Note that the 2.x version only runs with TRB >= 2.1.0.
33
32
 
34
33
  ## Setting flags
35
34
 
35
+ Before `trailblazer-rails` 2.3.0 you could activate or disable the `trailblazer-loader` gem. In versions >= 2.3.0 this component has been removed in favor of Rails autoloading.
36
+
36
37
  * `config.trailblazer.enable_loader = false` to disable Trailblazer loader (default TRUE)
37
38
  * `config.trailblazer.enable_tracing = true` to enable tracing when using `run` (default FALSE)
38
39
 
@@ -15,10 +15,10 @@ module Trailblazer::Rails::Controller::Cell
15
15
  render({html: content}.merge(options))
16
16
  end
17
17
 
18
- def cell(constant, model, options={})
18
+ def cell(constant, model=nil, options={})
19
19
  cell_options = options.reverse_merge(options_for_cell(model, options))
20
20
 
21
- super(constant, model, cell_options)
21
+ super(constant, model, cell_options) # From cells-rails gem.
22
22
  end
23
23
 
24
24
  # Override this to customize what options are passed into the cell constructor.
@@ -1,5 +1,5 @@
1
1
  module Trailblazer
2
2
  module Rails
3
- VERSION = "2.4.2".freeze
3
+ VERSION = "2.4.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trailblazer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.2
4
+ version: 2.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sutterer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-15 00:00:00.000000000 Z
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -97,19 +97,14 @@ files:
97
97
  - ".gitignore"
98
98
  - Appraisals
99
99
  - CHANGES.md
100
- - Gemfile
101
100
  - LICENSE.txt
102
101
  - README.md
103
102
  - Rakefile
104
103
  - TESTING.md
105
104
  - gemfiles/rails_5.2.gemfile
106
- - gemfiles/rails_5.2.gemfile.lock
107
105
  - gemfiles/rails_6.0.gemfile
108
- - gemfiles/rails_6.0.gemfile.lock
109
106
  - gemfiles/rails_6.1.gemfile
110
- - gemfiles/rails_6.1.gemfile.lock
111
107
  - gemfiles/rails_7.0.gemfile
112
- - gemfiles/rails_7.0.gemfile.lock
113
108
  - lib/trailblazer-rails.rb
114
109
  - lib/trailblazer/rails.rb
115
110
  - lib/trailblazer/rails/cell.rb
data/Gemfile DELETED
@@ -1,15 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in trailblazer-rails.gemspec
4
- gemspec
5
-
6
- gem "cells-erb"
7
- gem "cells-rails"
8
- gem "reform-rails"
9
- gem "trailblazer"
10
- gem "trailblazer-cells"
11
- gem "trailblazer-loader"
12
- gem "sqlite3"
13
- gem "minitest-capybara"
14
-
15
- gem "appraisal"
@@ -1,187 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- trailblazer-rails (2.4.1)
5
- railties (>= 5.2.0)
6
- trailblazer (>= 2.1.0, < 2.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (5.2.6)
12
- actionview (= 5.2.6)
13
- activesupport (= 5.2.6)
14
- rack (~> 2.0, >= 2.0.8)
15
- rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (5.2.6)
19
- activesupport (= 5.2.6)
20
- builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
- activemodel (5.2.6)
25
- activesupport (= 5.2.6)
26
- activerecord (5.2.6)
27
- activemodel (= 5.2.6)
28
- activesupport (= 5.2.6)
29
- arel (>= 9.0)
30
- activesupport (5.2.6)
31
- concurrent-ruby (~> 1.0, >= 1.0.2)
32
- i18n (>= 0.7, < 2)
33
- minitest (~> 5.1)
34
- tzinfo (~> 1.1)
35
- addressable (2.8.0)
36
- public_suffix (>= 2.0.2, < 5.0)
37
- appraisal (2.4.1)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- arel (9.0.0)
42
- builder (3.2.4)
43
- capybara (3.36.0)
44
- addressable
45
- matrix
46
- mini_mime (>= 0.1.3)
47
- nokogiri (~> 1.8)
48
- rack (>= 1.6.0)
49
- rack-test (>= 0.6.3)
50
- regexp_parser (>= 1.5, < 3.0)
51
- xpath (~> 3.2)
52
- cells (4.1.7)
53
- declarative-builder (< 0.2.0)
54
- declarative-option (< 0.2.0)
55
- tilt (>= 1.4, < 3)
56
- uber (< 0.2.0)
57
- cells-erb (0.1.0)
58
- cells (~> 4.0)
59
- erbse (>= 0.1.1)
60
- cells-rails (0.1.4)
61
- actionpack (>= 5.0)
62
- cells (>= 4.1.6, < 5.0.0)
63
- concurrent-ruby (1.1.9)
64
- crass (1.0.6)
65
- declarative (0.0.20)
66
- declarative-builder (0.1.0)
67
- declarative-option (< 0.2.0)
68
- declarative-option (0.1.0)
69
- disposable (0.6.2)
70
- declarative (>= 0.0.9, < 1.0.0)
71
- representable (>= 3.1.1, < 3.2.0)
72
- erbse (0.1.4)
73
- temple
74
- erubi (1.10.0)
75
- hashie (5.0.0)
76
- hirb (0.7.3)
77
- i18n (1.8.11)
78
- concurrent-ruby (~> 1.0)
79
- loofah (2.12.0)
80
- crass (~> 1.0.2)
81
- nokogiri (>= 1.5.9)
82
- matrix (0.4.2)
83
- method_source (1.0.0)
84
- mini_mime (1.1.2)
85
- minitest (5.14.4)
86
- minitest-capybara (0.9.0)
87
- capybara
88
- minitest (~> 5.0)
89
- rake
90
- nokogiri (1.12.5-x86_64-darwin)
91
- racc (~> 1.4)
92
- nokogiri (1.12.5-x86_64-linux)
93
- racc (~> 1.4)
94
- public_suffix (4.0.6)
95
- racc (1.6.0)
96
- rack (2.2.3)
97
- rack-test (1.1.0)
98
- rack (>= 1.0, < 3)
99
- rails-dom-testing (2.0.3)
100
- activesupport (>= 4.2.0)
101
- nokogiri (>= 1.6)
102
- rails-html-sanitizer (1.4.2)
103
- loofah (~> 2.3)
104
- railties (5.2.6)
105
- actionpack (= 5.2.6)
106
- activesupport (= 5.2.6)
107
- method_source
108
- rake (>= 0.8.7)
109
- thor (>= 0.19.0, < 2.0)
110
- rake (13.0.6)
111
- reform (2.6.1)
112
- disposable (>= 0.5.0, < 1.0.0)
113
- representable (>= 3.1.1, < 3.2.0)
114
- uber (< 0.2.0)
115
- reform-rails (0.2.3)
116
- activemodel (>= 5.0)
117
- reform (>= 2.3.1, < 3.0.0)
118
- regexp_parser (2.2.0)
119
- representable (3.1.1)
120
- declarative (< 0.1.0)
121
- trailblazer-option (>= 0.1.1, < 0.2.0)
122
- uber (< 0.2.0)
123
- sqlite3 (1.3.13)
124
- temple (0.8.2)
125
- thor (1.1.0)
126
- thread_safe (0.3.6)
127
- tilt (2.0.10)
128
- trailblazer (2.1.0)
129
- trailblazer-macro (>= 2.1.0, < 2.2.0)
130
- trailblazer-macro-contract (>= 2.1.0, < 2.2.0)
131
- trailblazer-operation
132
- trailblazer-activity (0.12.2)
133
- trailblazer-context (~> 0.5.0)
134
- trailblazer-option (~> 0.1.0)
135
- trailblazer-activity-dsl-linear (0.4.3)
136
- trailblazer-activity (>= 0.12.2, < 0.13.0)
137
- trailblazer-cells (0.0.3)
138
- cells (>= 4.1.0.rc1, < 5.0.0)
139
- trailblazer-context (0.5.0)
140
- hashie (>= 3.0.0)
141
- trailblazer-developer (0.0.22)
142
- hirb
143
- representable (>= 3.1.1, < 4.0.0)
144
- trailblazer-activity (>= 0.12.2, < 1.0.0)
145
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
146
- trailblazer-loader (0.1.2)
147
- trailblazer-macro (2.1.7)
148
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
149
- trailblazer-operation (>= 0.7.0)
150
- trailblazer-macro-contract (2.1.1)
151
- reform (>= 2.2.0, < 3.0.0)
152
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
153
- trailblazer-operation (0.7.5)
154
- trailblazer-activity (>= 0.12.2, < 1.0.0)
155
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
156
- trailblazer-developer (>= 0.0.21, < 1.0.0)
157
- trailblazer-option (0.1.2)
158
- tzinfo (1.2.9)
159
- thread_safe (~> 0.1)
160
- uber (0.1.0)
161
- xpath (3.2.0)
162
- nokogiri (~> 1.8)
163
-
164
- PLATFORMS
165
- x86_64-darwin-19
166
- x86_64-darwin-21
167
- x86_64-linux
168
-
169
- DEPENDENCIES
170
- actionpack (~> 5.2.0)
171
- activerecord (~> 5.2.0)
172
- appraisal
173
- bundler
174
- cells-erb
175
- cells-rails
176
- minitest
177
- minitest-capybara
178
- rake
179
- reform-rails
180
- sqlite3 (~> 1.3.8)
181
- trailblazer
182
- trailblazer-cells
183
- trailblazer-loader
184
- trailblazer-rails!
185
-
186
- BUNDLED WITH
187
- 2.3.11
@@ -1,187 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- trailblazer-rails (2.4.1)
5
- railties (>= 5.2.0)
6
- trailblazer (>= 2.1.0, < 2.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (6.0.4.1)
12
- actionview (= 6.0.4.1)
13
- activesupport (= 6.0.4.1)
14
- rack (~> 2.0, >= 2.0.8)
15
- rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.0.4.1)
19
- activesupport (= 6.0.4.1)
20
- builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activemodel (6.0.4.1)
25
- activesupport (= 6.0.4.1)
26
- activerecord (6.0.4.1)
27
- activemodel (= 6.0.4.1)
28
- activesupport (= 6.0.4.1)
29
- activesupport (6.0.4.1)
30
- concurrent-ruby (~> 1.0, >= 1.0.2)
31
- i18n (>= 0.7, < 2)
32
- minitest (~> 5.1)
33
- tzinfo (~> 1.1)
34
- zeitwerk (~> 2.2, >= 2.2.2)
35
- addressable (2.8.0)
36
- public_suffix (>= 2.0.2, < 5.0)
37
- appraisal (2.4.1)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- builder (3.2.4)
42
- capybara (3.36.0)
43
- addressable
44
- matrix
45
- mini_mime (>= 0.1.3)
46
- nokogiri (~> 1.8)
47
- rack (>= 1.6.0)
48
- rack-test (>= 0.6.3)
49
- regexp_parser (>= 1.5, < 3.0)
50
- xpath (~> 3.2)
51
- cells (4.1.7)
52
- declarative-builder (< 0.2.0)
53
- declarative-option (< 0.2.0)
54
- tilt (>= 1.4, < 3)
55
- uber (< 0.2.0)
56
- cells-erb (0.1.0)
57
- cells (~> 4.0)
58
- erbse (>= 0.1.1)
59
- cells-rails (0.1.4)
60
- actionpack (>= 5.0)
61
- cells (>= 4.1.6, < 5.0.0)
62
- concurrent-ruby (1.1.9)
63
- crass (1.0.6)
64
- declarative (0.0.20)
65
- declarative-builder (0.1.0)
66
- declarative-option (< 0.2.0)
67
- declarative-option (0.1.0)
68
- disposable (0.6.2)
69
- declarative (>= 0.0.9, < 1.0.0)
70
- representable (>= 3.1.1, < 3.2.0)
71
- erbse (0.1.4)
72
- temple
73
- erubi (1.10.0)
74
- hashie (5.0.0)
75
- hirb (0.7.3)
76
- i18n (1.8.11)
77
- concurrent-ruby (~> 1.0)
78
- loofah (2.12.0)
79
- crass (~> 1.0.2)
80
- nokogiri (>= 1.5.9)
81
- matrix (0.4.2)
82
- method_source (1.0.0)
83
- mini_mime (1.1.2)
84
- minitest (5.14.4)
85
- minitest-capybara (0.9.0)
86
- capybara
87
- minitest (~> 5.0)
88
- rake
89
- nokogiri (1.12.5-x86_64-darwin)
90
- racc (~> 1.4)
91
- nokogiri (1.12.5-x86_64-linux)
92
- racc (~> 1.4)
93
- public_suffix (4.0.6)
94
- racc (1.6.0)
95
- rack (2.2.3)
96
- rack-test (1.1.0)
97
- rack (>= 1.0, < 3)
98
- rails-dom-testing (2.0.3)
99
- activesupport (>= 4.2.0)
100
- nokogiri (>= 1.6)
101
- rails-html-sanitizer (1.4.2)
102
- loofah (~> 2.3)
103
- railties (6.0.4.1)
104
- actionpack (= 6.0.4.1)
105
- activesupport (= 6.0.4.1)
106
- method_source
107
- rake (>= 0.8.7)
108
- thor (>= 0.20.3, < 2.0)
109
- rake (13.0.6)
110
- reform (2.6.1)
111
- disposable (>= 0.5.0, < 1.0.0)
112
- representable (>= 3.1.1, < 3.2.0)
113
- uber (< 0.2.0)
114
- reform-rails (0.2.3)
115
- activemodel (>= 5.0)
116
- reform (>= 2.3.1, < 3.0.0)
117
- regexp_parser (2.2.0)
118
- representable (3.1.1)
119
- declarative (< 0.1.0)
120
- trailblazer-option (>= 0.1.1, < 0.2.0)
121
- uber (< 0.2.0)
122
- sqlite3 (1.4.2)
123
- temple (0.8.2)
124
- thor (1.1.0)
125
- thread_safe (0.3.6)
126
- tilt (2.0.10)
127
- trailblazer (2.1.0)
128
- trailblazer-macro (>= 2.1.0, < 2.2.0)
129
- trailblazer-macro-contract (>= 2.1.0, < 2.2.0)
130
- trailblazer-operation
131
- trailblazer-activity (0.12.2)
132
- trailblazer-context (~> 0.5.0)
133
- trailblazer-option (~> 0.1.0)
134
- trailblazer-activity-dsl-linear (0.4.3)
135
- trailblazer-activity (>= 0.12.2, < 0.13.0)
136
- trailblazer-cells (0.0.3)
137
- cells (>= 4.1.0.rc1, < 5.0.0)
138
- trailblazer-context (0.5.0)
139
- hashie (>= 3.0.0)
140
- trailblazer-developer (0.0.22)
141
- hirb
142
- representable (>= 3.1.1, < 4.0.0)
143
- trailblazer-activity (>= 0.12.2, < 1.0.0)
144
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
145
- trailblazer-loader (0.1.2)
146
- trailblazer-macro (2.1.7)
147
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
148
- trailblazer-operation (>= 0.7.0)
149
- trailblazer-macro-contract (2.1.1)
150
- reform (>= 2.2.0, < 3.0.0)
151
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
152
- trailblazer-operation (0.7.5)
153
- trailblazer-activity (>= 0.12.2, < 1.0.0)
154
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
155
- trailblazer-developer (>= 0.0.21, < 1.0.0)
156
- trailblazer-option (0.1.2)
157
- tzinfo (1.2.9)
158
- thread_safe (~> 0.1)
159
- uber (0.1.0)
160
- xpath (3.2.0)
161
- nokogiri (~> 1.8)
162
- zeitwerk (2.5.1)
163
-
164
- PLATFORMS
165
- x86_64-darwin-19
166
- x86_64-darwin-21
167
- x86_64-linux
168
-
169
- DEPENDENCIES
170
- actionpack (~> 6.0.0)
171
- activerecord (~> 6.0.0)
172
- appraisal
173
- bundler
174
- cells-erb
175
- cells-rails
176
- minitest
177
- minitest-capybara
178
- rake
179
- reform-rails
180
- sqlite3
181
- trailblazer
182
- trailblazer-cells
183
- trailblazer-loader
184
- trailblazer-rails!
185
-
186
- BUNDLED WITH
187
- 2.3.11
@@ -1,186 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- trailblazer-rails (2.4.1)
5
- railties (>= 5.2.0)
6
- trailblazer (>= 2.1.0, < 2.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (6.1.4.1)
12
- actionview (= 6.1.4.1)
13
- activesupport (= 6.1.4.1)
14
- rack (~> 2.0, >= 2.0.9)
15
- rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.1.4.1)
19
- activesupport (= 6.1.4.1)
20
- builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activemodel (6.1.4.1)
25
- activesupport (= 6.1.4.1)
26
- activerecord (6.1.4.1)
27
- activemodel (= 6.1.4.1)
28
- activesupport (= 6.1.4.1)
29
- activesupport (6.1.4.1)
30
- concurrent-ruby (~> 1.0, >= 1.0.2)
31
- i18n (>= 1.6, < 2)
32
- minitest (>= 5.1)
33
- tzinfo (~> 2.0)
34
- zeitwerk (~> 2.3)
35
- addressable (2.8.0)
36
- public_suffix (>= 2.0.2, < 5.0)
37
- appraisal (2.4.1)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- builder (3.2.4)
42
- capybara (3.36.0)
43
- addressable
44
- matrix
45
- mini_mime (>= 0.1.3)
46
- nokogiri (~> 1.8)
47
- rack (>= 1.6.0)
48
- rack-test (>= 0.6.3)
49
- regexp_parser (>= 1.5, < 3.0)
50
- xpath (~> 3.2)
51
- cells (4.1.7)
52
- declarative-builder (< 0.2.0)
53
- declarative-option (< 0.2.0)
54
- tilt (>= 1.4, < 3)
55
- uber (< 0.2.0)
56
- cells-erb (0.1.0)
57
- cells (~> 4.0)
58
- erbse (>= 0.1.1)
59
- cells-rails (0.1.4)
60
- actionpack (>= 5.0)
61
- cells (>= 4.1.6, < 5.0.0)
62
- concurrent-ruby (1.1.9)
63
- crass (1.0.6)
64
- declarative (0.0.20)
65
- declarative-builder (0.1.0)
66
- declarative-option (< 0.2.0)
67
- declarative-option (0.1.0)
68
- disposable (0.6.2)
69
- declarative (>= 0.0.9, < 1.0.0)
70
- representable (>= 3.1.1, < 3.2.0)
71
- erbse (0.1.4)
72
- temple
73
- erubi (1.10.0)
74
- hashie (5.0.0)
75
- hirb (0.7.3)
76
- i18n (1.8.11)
77
- concurrent-ruby (~> 1.0)
78
- loofah (2.12.0)
79
- crass (~> 1.0.2)
80
- nokogiri (>= 1.5.9)
81
- matrix (0.4.2)
82
- method_source (1.0.0)
83
- mini_mime (1.1.2)
84
- minitest (5.14.4)
85
- minitest-capybara (0.9.0)
86
- capybara
87
- minitest (~> 5.0)
88
- rake
89
- nokogiri (1.12.5-x86_64-darwin)
90
- racc (~> 1.4)
91
- nokogiri (1.12.5-x86_64-linux)
92
- racc (~> 1.4)
93
- public_suffix (4.0.6)
94
- racc (1.6.0)
95
- rack (2.2.3)
96
- rack-test (1.1.0)
97
- rack (>= 1.0, < 3)
98
- rails-dom-testing (2.0.3)
99
- activesupport (>= 4.2.0)
100
- nokogiri (>= 1.6)
101
- rails-html-sanitizer (1.4.2)
102
- loofah (~> 2.3)
103
- railties (6.1.4.1)
104
- actionpack (= 6.1.4.1)
105
- activesupport (= 6.1.4.1)
106
- method_source
107
- rake (>= 0.13)
108
- thor (~> 1.0)
109
- rake (13.0.6)
110
- reform (2.6.1)
111
- disposable (>= 0.5.0, < 1.0.0)
112
- representable (>= 3.1.1, < 3.2.0)
113
- uber (< 0.2.0)
114
- reform-rails (0.2.3)
115
- activemodel (>= 5.0)
116
- reform (>= 2.3.1, < 3.0.0)
117
- regexp_parser (2.2.0)
118
- representable (3.1.1)
119
- declarative (< 0.1.0)
120
- trailblazer-option (>= 0.1.1, < 0.2.0)
121
- uber (< 0.2.0)
122
- sqlite3 (1.4.2)
123
- temple (0.8.2)
124
- thor (1.1.0)
125
- tilt (2.0.10)
126
- trailblazer (2.1.0)
127
- trailblazer-macro (>= 2.1.0, < 2.2.0)
128
- trailblazer-macro-contract (>= 2.1.0, < 2.2.0)
129
- trailblazer-operation
130
- trailblazer-activity (0.12.2)
131
- trailblazer-context (~> 0.5.0)
132
- trailblazer-option (~> 0.1.0)
133
- trailblazer-activity-dsl-linear (0.4.3)
134
- trailblazer-activity (>= 0.12.2, < 0.13.0)
135
- trailblazer-cells (0.0.3)
136
- cells (>= 4.1.0.rc1, < 5.0.0)
137
- trailblazer-context (0.5.0)
138
- hashie (>= 3.0.0)
139
- trailblazer-developer (0.0.22)
140
- hirb
141
- representable (>= 3.1.1, < 4.0.0)
142
- trailblazer-activity (>= 0.12.2, < 1.0.0)
143
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
144
- trailblazer-loader (0.1.2)
145
- trailblazer-macro (2.1.7)
146
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
147
- trailblazer-operation (>= 0.7.0)
148
- trailblazer-macro-contract (2.1.1)
149
- reform (>= 2.2.0, < 3.0.0)
150
- trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
151
- trailblazer-operation (0.7.5)
152
- trailblazer-activity (>= 0.12.2, < 1.0.0)
153
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
154
- trailblazer-developer (>= 0.0.21, < 1.0.0)
155
- trailblazer-option (0.1.2)
156
- tzinfo (2.0.4)
157
- concurrent-ruby (~> 1.0)
158
- uber (0.1.0)
159
- xpath (3.2.0)
160
- nokogiri (~> 1.8)
161
- zeitwerk (2.5.1)
162
-
163
- PLATFORMS
164
- x86_64-darwin-19
165
- x86_64-darwin-21
166
- x86_64-linux
167
-
168
- DEPENDENCIES
169
- actionpack (~> 6.1.0)
170
- activerecord (~> 6.1.0)
171
- appraisal
172
- bundler
173
- cells-erb
174
- cells-rails
175
- minitest
176
- minitest-capybara
177
- rake
178
- reform-rails
179
- sqlite3
180
- trailblazer
181
- trailblazer-cells
182
- trailblazer-loader
183
- trailblazer-rails!
184
-
185
- BUNDLED WITH
186
- 2.3.11
@@ -1,185 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- trailblazer-rails (2.4.1)
5
- railties (>= 5.2.0)
6
- trailblazer (>= 2.1.0, < 2.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (7.0.3)
12
- actionview (= 7.0.3)
13
- activesupport (= 7.0.3)
14
- rack (~> 2.0, >= 2.2.0)
15
- rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (7.0.3)
19
- activesupport (= 7.0.3)
20
- builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activemodel (7.0.3)
25
- activesupport (= 7.0.3)
26
- activerecord (7.0.3)
27
- activemodel (= 7.0.3)
28
- activesupport (= 7.0.3)
29
- activesupport (7.0.3)
30
- concurrent-ruby (~> 1.0, >= 1.0.2)
31
- i18n (>= 1.6, < 2)
32
- minitest (>= 5.1)
33
- tzinfo (~> 2.0)
34
- addressable (2.8.0)
35
- public_suffix (>= 2.0.2, < 5.0)
36
- appraisal (2.4.1)
37
- bundler
38
- rake
39
- thor (>= 0.14.0)
40
- builder (3.2.4)
41
- capybara (3.37.1)
42
- addressable
43
- matrix
44
- mini_mime (>= 0.1.3)
45
- nokogiri (~> 1.8)
46
- rack (>= 1.6.0)
47
- rack-test (>= 0.6.3)
48
- regexp_parser (>= 1.5, < 3.0)
49
- xpath (~> 3.2)
50
- cells (4.1.7)
51
- declarative-builder (< 0.2.0)
52
- declarative-option (< 0.2.0)
53
- tilt (>= 1.4, < 3)
54
- uber (< 0.2.0)
55
- cells-erb (0.1.0)
56
- cells (~> 4.0)
57
- erbse (>= 0.1.1)
58
- cells-rails (0.1.5)
59
- actionpack (>= 5.0)
60
- cells (>= 4.1.6, < 5.0.0)
61
- concurrent-ruby (1.1.10)
62
- crass (1.0.6)
63
- declarative (0.0.20)
64
- declarative-builder (0.1.0)
65
- declarative-option (< 0.2.0)
66
- declarative-option (0.1.0)
67
- disposable (0.6.2)
68
- declarative (>= 0.0.9, < 1.0.0)
69
- representable (>= 3.1.1, < 3.2.0)
70
- erbse (0.1.4)
71
- temple
72
- erubi (1.10.0)
73
- hashie (5.0.0)
74
- hirb (0.7.3)
75
- i18n (1.10.0)
76
- concurrent-ruby (~> 1.0)
77
- loofah (2.18.0)
78
- crass (~> 1.0.2)
79
- nokogiri (>= 1.5.9)
80
- matrix (0.4.2)
81
- method_source (1.0.0)
82
- mini_mime (1.1.2)
83
- minitest (5.15.0)
84
- minitest-capybara (0.9.0)
85
- capybara
86
- minitest (~> 5.0)
87
- rake
88
- nokogiri (1.13.6-x86_64-darwin)
89
- racc (~> 1.4)
90
- nokogiri (1.13.6-x86_64-linux)
91
- racc (~> 1.4)
92
- public_suffix (4.0.7)
93
- racc (1.6.0)
94
- rack (2.2.3)
95
- rack-test (1.1.0)
96
- rack (>= 1.0, < 3)
97
- rails-dom-testing (2.0.3)
98
- activesupport (>= 4.2.0)
99
- nokogiri (>= 1.6)
100
- rails-html-sanitizer (1.4.2)
101
- loofah (~> 2.3)
102
- railties (7.0.3)
103
- actionpack (= 7.0.3)
104
- activesupport (= 7.0.3)
105
- method_source
106
- rake (>= 12.2)
107
- thor (~> 1.0)
108
- zeitwerk (~> 2.5)
109
- rake (13.0.6)
110
- reform (2.6.1)
111
- disposable (>= 0.5.0, < 1.0.0)
112
- representable (>= 3.1.1, < 3.2.0)
113
- uber (< 0.2.0)
114
- reform-rails (0.2.3)
115
- activemodel (>= 5.0)
116
- reform (>= 2.3.1, < 3.0.0)
117
- regexp_parser (2.4.0)
118
- representable (3.1.1)
119
- declarative (< 0.1.0)
120
- trailblazer-option (>= 0.1.1, < 0.2.0)
121
- uber (< 0.2.0)
122
- sqlite3 (1.4.2)
123
- temple (0.8.2)
124
- thor (1.2.1)
125
- tilt (2.0.10)
126
- trailblazer (2.1.0)
127
- trailblazer-macro (>= 2.1.0, < 2.2.0)
128
- trailblazer-macro-contract (>= 2.1.0, < 2.2.0)
129
- trailblazer-operation
130
- trailblazer-activity (0.13.0)
131
- trailblazer-context (~> 0.5.0)
132
- trailblazer-option (~> 0.1.0)
133
- trailblazer-activity-dsl-linear (0.5.0)
134
- trailblazer-activity (>= 0.13.0, < 1.0.0)
135
- trailblazer-cells (0.0.3)
136
- cells (>= 4.1.0.rc1, < 5.0.0)
137
- trailblazer-context (0.5.0)
138
- hashie (>= 3.0.0)
139
- trailblazer-developer (0.0.23)
140
- hirb
141
- trailblazer-activity (>= 0.12.2, < 1.0.0)
142
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
143
- trailblazer-loader (0.1.2)
144
- trailblazer-macro (2.1.9)
145
- trailblazer-activity-dsl-linear (>= 0.5.0, < 0.6.0)
146
- trailblazer-operation (>= 0.7.0)
147
- trailblazer-macro-contract (2.1.2)
148
- reform (>= 2.2.0, < 3.0.0)
149
- trailblazer-activity-dsl-linear (>= 0.5.0, < 0.6.0)
150
- trailblazer-operation (0.7.5)
151
- trailblazer-activity (>= 0.12.2, < 1.0.0)
152
- trailblazer-activity-dsl-linear (>= 0.4.1, < 1.0.0)
153
- trailblazer-developer (>= 0.0.21, < 1.0.0)
154
- trailblazer-option (0.1.2)
155
- tzinfo (2.0.4)
156
- concurrent-ruby (~> 1.0)
157
- uber (0.1.0)
158
- xpath (3.2.0)
159
- nokogiri (~> 1.8)
160
- zeitwerk (2.6.0)
161
-
162
- PLATFORMS
163
- x86_64-darwin-19
164
- x86_64-darwin-21
165
- x86_64-linux
166
-
167
- DEPENDENCIES
168
- actionpack (~> 7.0.0)
169
- activerecord (~> 7.0.0)
170
- appraisal
171
- bundler
172
- cells-erb
173
- cells-rails
174
- minitest
175
- minitest-capybara
176
- rake
177
- reform-rails
178
- sqlite3 (~> 1.4.0)
179
- trailblazer
180
- trailblazer-cells
181
- trailblazer-loader
182
- trailblazer-rails!
183
-
184
- BUNDLED WITH
185
- 2.3.11