trailblazer-rails 2.1.7 → 2.2.0

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
- SHA1:
3
- metadata.gz: 18afeb5b07e00792db1d1486feda5119161b8539
4
- data.tar.gz: 9e143a9876e82b0d00d3bcd0755ac352f2348a95
2
+ SHA256:
3
+ metadata.gz: 23162999add75f4ab1c7aa0c35c9a724ab782f43aa691f42c39a957efd432ec3
4
+ data.tar.gz: 83016e2f641215fef72122d2af2310745528ac9f81f82b5f0773318cee2749b7
5
5
  SHA512:
6
- metadata.gz: 14970570ae213e72a73545ad334ac86b523e0ebeae96801956adf2b01b22127d792c4c752b85fdd8c1fc26fdd0fe7dca629d1207b318a66569c1f94d17edbad6
7
- data.tar.gz: 1f0f691322bfd2920435181514fd2c664eeb5f84ba1acc2958ffb84ce7f8517a669661f681f0e7785838ae467b901c0d5c7e7f566fa246c99c9fc16490998936
6
+ metadata.gz: 5f32d5bf8b70bd0bfde72874d0c5825fe724b1557e4b4adff08db90d5bba11c02b3c5a6697ae5e07ee3d9b95db53f4f922d06fc4f8e7056ff65348e3319c1b09
7
+ data.tar.gz: 304419bf4c80e9ddd30636c67a2346b6e8a9121b9d1614b6610853bc2f9433a28d7468a5b3ffed78d922e0e97f4be926d5ccabe97663c7771ad7b983c9178360
@@ -0,0 +1,32 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+ branches:
8
+ - master
9
+ jobs:
10
+ test:
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby: [2.7, '3.0']
15
+ gemfile:
16
+ - rails_7.0
17
+ - rails_6.1
18
+ - rails_6.0
19
+ - rails_5.2
20
+ exclude:
21
+ - ruby: '3.0'
22
+ gemfile: rails_5.2
23
+ runs-on: ubuntu-latest
24
+ env:
25
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
26
+ steps:
27
+ - uses: actions/checkout@v2
28
+ - uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{ matrix.ruby }}
31
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32
+ - run: bundle exec rake db:create db:schema:load test
data/.gitignore CHANGED
@@ -13,3 +13,4 @@ test/**/*.log
13
13
  test/**/Gemfile.lock
14
14
  *.iml
15
15
  *.sqlite3
16
+ .tool-versions
data/Appraisals ADDED
@@ -0,0 +1,18 @@
1
+ appraise "rails-6.0" do
2
+ gem "actionpack", "~> 6.0.0"
3
+ gem "activerecord", "~> 6.0.0"
4
+ end
5
+ appraise "rails-6.1" do
6
+ gem "actionpack", "~> 6.1.0"
7
+ gem "activerecord", "~> 6.1.0"
8
+ end
9
+ appraise "rails-7.0" do
10
+ gem "actionpack", "~> 7.0.0.rc1"
11
+ gem "activerecord", "~> 7.0.0.rc1"
12
+ end
13
+
14
+ appraise "rails-5.2" do
15
+ gem "actionpack", "~> 5.2.0"
16
+ gem "activerecord", "~> 5.2.0"
17
+ gem "sqlite3", "~> 1.3.8"
18
+ end
data/CHANGES.md CHANGED
@@ -1,3 +1,13 @@
1
+ # 2.2.0
2
+
3
+ * Allow passing ctx variables to `Controller#run`.
4
+ * Introduce `Controller#options_for_cell` to customize cell options such as `:layout` on the controller level.
5
+
6
+ # 2.1.9
7
+
8
+ * Drop support for Rails < 5.2
9
+ * Add Test for Rails 6.1
10
+
1
11
  # 2.1.7
2
12
 
3
13
  * Bug: Deprecation warning for use_loader always called (fixed)
data/Gemfile CHANGED
@@ -3,28 +3,13 @@ source "https://rubygems.org"
3
3
  # Specify your gem's dependencies in trailblazer-rails.gemspec
4
4
  gemspec
5
5
 
6
- case ENV["GEMS_SOURCE"]
7
- when "local"
8
- gem "cells-erb", path: "../cells-erb"
9
- gem "cells-rails", path: "../cells-rails"
10
- gem "reform-rails", path: "../reform-rails"
11
- gem "trailblazer", path: "../trailblazer"
12
- gem "trailblazer-cells", path: "../trailblazer-cells"
13
- gem "trailblazer-loader", path: "../trailblazer-loader"
14
- when "github"
15
- gem "cells-erb", github: "trailblazer/cells-erb"
16
- gem "cells-rails", github: "trailblazer/cells-rails"
17
- gem "reform-rails", github: "trailblazer/reform-rails"
18
- gem "trailblazer", github: "trailblazer/trailblazer"
19
- gem "trailblazer-cells", github: "trailblazer/trailblazer-cells"
20
- gem "trailblazer-loader", github: "trailblazer/trailblazer-loader"
21
- when "custom"
22
- eval_gemfile("GemfileCustom")
23
- else # use rubygems releases
24
- gem "cells-erb"
25
- gem "cells-rails"
26
- gem "reform-rails"
27
- gem "trailblazer"
28
- gem "trailblazer-cells"
29
- gem "trailblazer-loader"
30
- end
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"
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2018 Nick Sutterer
3
+ Copyright (c) 2015-2021 Nick Sutterer
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -8,6 +8,10 @@
8
8
  Status](https://travis-ci.org/trailblazer/trailblazer-rails.svg)](https://travis-ci.org/trailblazer/trailblazer-rails)
9
9
  [![Gem Version](https://badge.fury.io/rb/trailblazer-rails.svg)](http://badge.fury.io/rb/trailblazer-rails)
10
10
 
11
+ ## Endpoint
12
+
13
+ This gem is slowly being superseded by TRB's [`endpoint` gem](https://trailblazer.to/2.1/docs/endpoint.html). Endpoints are "controller operations" that invoke your business logic operation. They are much easier to use and customize and are explained in part II of the [BUILDALIB book](https://leanpub.com/buildalib).
14
+
11
15
  ## Overview
12
16
 
13
17
  `trailblazer-rails` helps you with the following.
@@ -16,7 +20,7 @@ Status](https://travis-ci.org/trailblazer/trailblazer-rails.svg)](https://travis
16
20
  * Minimalistic integration tests ("smoke tests") to test controller/operation wiring.
17
21
  * Rendering cells instead of an ActionView in a controller action.
18
22
 
19
- Please refer to the [full documentation for more](http://trailblazer.to/gems/trailblazer/2.0/rails.html).
23
+ Please refer to the [full documentation for more](https://trailblazer.to/2.1/docs/trailblazer.html#trailblazer-rails).
20
24
 
21
25
  ## Installation
22
26
 
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  require "bundler/gem_tasks"
2
2
  require "rake/testtask"
3
- require "rubocop/rake_task"
3
+ ENV["RAILS_ENV"] = "test"
4
4
 
5
5
  Rake::TestTask.new(:test) do |t|
6
6
  t.libs << "test"
@@ -8,18 +8,10 @@ Rake::TestTask.new(:test) do |t|
8
8
  t.test_files = FileList["test/**/*_test.rb"]
9
9
  end
10
10
 
11
- RuboCop::RakeTask.new(:rubocop)
12
11
 
13
- desc "Remove temporary files"
14
- task :clean do
15
- `rm -rf *.gem doc pkg coverage test-reports`
16
- %x(rm -f `find . -name '*.rbc'`)
17
- end
12
+ require File.expand_path("test/dummy/config/application", __dir__)
18
13
 
19
- desc "Build the gem"
20
- task :gem do
21
- `gem build trailblazer-rails.gemspec`
22
- end
14
+ Rails.application.load_tasks
23
15
 
24
16
  desc "Running Tests"
25
- task default: %i[clean test]
17
+ task default: :test
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "cells-erb"
6
+ gem "cells-rails"
7
+ gem "reform-rails"
8
+ gem "trailblazer"
9
+ gem "trailblazer-cells"
10
+ gem "trailblazer-loader"
11
+ gem "sqlite3", "~> 1.3.8"
12
+ gem "minitest-capybara"
13
+ gem "appraisal"
14
+ gem "actionpack", "~> 5.2.0"
15
+ gem "activerecord", "~> 5.2.0"
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,183 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ trailblazer-rails (2.2.0)
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-linux)
91
+ racc (~> 1.4)
92
+ public_suffix (4.0.6)
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 (5.2.6)
103
+ actionpack (= 5.2.6)
104
+ activesupport (= 5.2.6)
105
+ method_source
106
+ rake (>= 0.8.7)
107
+ thor (>= 0.19.0, < 2.0)
108
+ rake (13.0.6)
109
+ reform (2.6.1)
110
+ disposable (>= 0.5.0, < 1.0.0)
111
+ representable (>= 3.1.1, < 3.2.0)
112
+ uber (< 0.2.0)
113
+ reform-rails (0.2.3)
114
+ activemodel (>= 5.0)
115
+ reform (>= 2.3.1, < 3.0.0)
116
+ regexp_parser (2.2.0)
117
+ representable (3.1.1)
118
+ declarative (< 0.1.0)
119
+ trailblazer-option (>= 0.1.1, < 0.2.0)
120
+ uber (< 0.2.0)
121
+ sqlite3 (1.3.13)
122
+ temple (0.8.2)
123
+ thor (1.1.0)
124
+ thread_safe (0.3.6)
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 (1.2.9)
157
+ thread_safe (~> 0.1)
158
+ uber (0.1.0)
159
+ xpath (3.2.0)
160
+ nokogiri (~> 1.8)
161
+
162
+ PLATFORMS
163
+ x86_64-linux
164
+
165
+ DEPENDENCIES
166
+ actionpack (~> 5.2.0)
167
+ activerecord (~> 5.2.0)
168
+ appraisal
169
+ bundler
170
+ cells-erb
171
+ cells-rails
172
+ minitest
173
+ minitest-capybara
174
+ rake
175
+ reform-rails
176
+ sqlite3 (~> 1.3.8)
177
+ trailblazer
178
+ trailblazer-cells
179
+ trailblazer-loader
180
+ trailblazer-rails!
181
+
182
+ BUNDLED WITH
183
+ 2.2.22
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "cells-erb"
6
+ gem "cells-rails"
7
+ gem "reform-rails"
8
+ gem "trailblazer"
9
+ gem "trailblazer-cells"
10
+ gem "trailblazer-loader"
11
+ gem "sqlite3"
12
+ gem "minitest-capybara"
13
+ gem "appraisal"
14
+ gem "actionpack", "~> 6.0.0"
15
+ gem "activerecord", "~> 6.0.0"
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,183 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ trailblazer-rails (2.2.0)
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-linux)
90
+ racc (~> 1.4)
91
+ public_suffix (4.0.6)
92
+ racc (1.6.0)
93
+ rack (2.2.3)
94
+ rack-test (1.1.0)
95
+ rack (>= 1.0, < 3)
96
+ rails-dom-testing (2.0.3)
97
+ activesupport (>= 4.2.0)
98
+ nokogiri (>= 1.6)
99
+ rails-html-sanitizer (1.4.2)
100
+ loofah (~> 2.3)
101
+ railties (6.0.4.1)
102
+ actionpack (= 6.0.4.1)
103
+ activesupport (= 6.0.4.1)
104
+ method_source
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.20.3, < 2.0)
107
+ rake (13.0.6)
108
+ reform (2.6.1)
109
+ disposable (>= 0.5.0, < 1.0.0)
110
+ representable (>= 3.1.1, < 3.2.0)
111
+ uber (< 0.2.0)
112
+ reform-rails (0.2.3)
113
+ activemodel (>= 5.0)
114
+ reform (>= 2.3.1, < 3.0.0)
115
+ regexp_parser (2.2.0)
116
+ representable (3.1.1)
117
+ declarative (< 0.1.0)
118
+ trailblazer-option (>= 0.1.1, < 0.2.0)
119
+ uber (< 0.2.0)
120
+ sqlite3 (1.4.2)
121
+ temple (0.8.2)
122
+ thor (1.1.0)
123
+ thread_safe (0.3.6)
124
+ tilt (2.0.10)
125
+ trailblazer (2.1.0)
126
+ trailblazer-macro (>= 2.1.0, < 2.2.0)
127
+ trailblazer-macro-contract (>= 2.1.0, < 2.2.0)
128
+ trailblazer-operation
129
+ trailblazer-activity (0.12.2)
130
+ trailblazer-context (~> 0.5.0)
131
+ trailblazer-option (~> 0.1.0)
132
+ trailblazer-activity-dsl-linear (0.4.3)
133
+ trailblazer-activity (>= 0.12.2, < 0.13.0)
134
+ trailblazer-cells (0.0.3)
135
+ cells (>= 4.1.0.rc1, < 5.0.0)
136
+ trailblazer-context (0.5.0)
137
+ hashie (>= 3.0.0)
138
+ trailblazer-developer (0.0.22)
139
+ hirb
140
+ representable (>= 3.1.1, < 4.0.0)
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.7)
145
+ trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.0)
146
+ trailblazer-operation (>= 0.7.0)
147
+ trailblazer-macro-contract (2.1.1)
148
+ reform (>= 2.2.0, < 3.0.0)
149
+ trailblazer-activity-dsl-linear (>= 0.4.0, < 0.5.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 (1.2.9)
156
+ thread_safe (~> 0.1)
157
+ uber (0.1.0)
158
+ xpath (3.2.0)
159
+ nokogiri (~> 1.8)
160
+ zeitwerk (2.5.1)
161
+
162
+ PLATFORMS
163
+ x86_64-linux
164
+
165
+ DEPENDENCIES
166
+ actionpack (~> 6.0.0)
167
+ activerecord (~> 6.0.0)
168
+ appraisal
169
+ bundler
170
+ cells-erb
171
+ cells-rails
172
+ minitest
173
+ minitest-capybara
174
+ rake
175
+ reform-rails
176
+ sqlite3
177
+ trailblazer
178
+ trailblazer-cells
179
+ trailblazer-loader
180
+ trailblazer-rails!
181
+
182
+ BUNDLED WITH
183
+ 2.2.22
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "cells-erb"
6
+ gem "cells-rails"
7
+ gem "reform-rails"
8
+ gem "trailblazer"
9
+ gem "trailblazer-cells"
10
+ gem "trailblazer-loader"
11
+ gem "sqlite3"
12
+ gem "minitest-capybara"
13
+ gem "appraisal"
14
+ gem "actionpack", "~> 6.1.0"
15
+ gem "activerecord", "~> 6.1.0"
16
+
17
+ gemspec path: "../"