nacelle 0.2.2 → 0.2.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: 6fe5bddc720db28466a2786fa5cdf040dc0253dc8c5ce58e3666de6a3debe22f
4
- data.tar.gz: 9e22c41cebd7bec168decb0fe5af58547cdddd44b9940fa80e17d077e56c86f6
3
+ metadata.gz: e1f1085de0621c2e719504861113bc39da5d848ff607ab198d2964715df09e6b
4
+ data.tar.gz: aac00e17a51ba515161aabea95ea870526e7b655f71ea595f457a11547f218b5
5
5
  SHA512:
6
- metadata.gz: 8591bb9fdbda653de0ed4ff40026efaca9dbdf104f858b3dbebf5a3e224e67c0bffd169f8924e39b60791e205b43bbfadace51667ef2a17e67c0f163cff7ae6c
7
- data.tar.gz: 7dcc211662fd33778c9eeecde5b599032ee90d06f7641786e538bf952b1a4ce8af80809c538d02a3d911999b106e08a37ce49f9e39f62b147001eaa1f6147f13
6
+ metadata.gz: 8f4eaffbb71f804e2920910f2af323586d8fb401c973559c41f951da05ebf6705ac7779fad183e95ccf034543bcc55128612c7c9016f3849ce263f7e85f1637b
7
+ data.tar.gz: 37139948b268cd49d8484d72bad33cc9dfe870cd2eb9a6b259cfdc9b44ef1fd343c1a3d313dea94dcd13f88113c06b84e56ab36b7b025c8619622502281d8eb6
@@ -0,0 +1,36 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ gemfile: [ rails_5.1, rails_5.2, rails_6.0, rails_6.1, rails_7.0 ]
9
+ ruby: [ 2.4, 2.5, 2.6, 2.7, '3.0' ]
10
+ exclude:
11
+ - gemfile: rails_5.1
12
+ ruby: 3.0
13
+ - gemfile: rails_5.2
14
+ ruby: 3.0
15
+ - gemfile: rails_6.0
16
+ ruby: 2.4
17
+ - gemfile: rails_6.1
18
+ ruby: 2.4
19
+ - gemfile: rails_7.0
20
+ ruby: 2.4
21
+ - gemfile: rails_7.0
22
+ ruby: 2.5
23
+ - gemfile: rails_7.0
24
+ ruby: 2.6
25
+
26
+ runs-on: ubuntu-latest
27
+ env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
28
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
29
+ steps:
30
+ - uses: actions/checkout@v2
31
+ - uses: ruby/setup-ruby@v1
32
+ with:
33
+ ruby-version: ${{ matrix.ruby }}
34
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
35
+ - run: bundle exec rake
36
+
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  /.ruby-version
11
+ /.byebug_history
data/Appraisals ADDED
@@ -0,0 +1,27 @@
1
+ appraise "rails-5.1" do
2
+ gem "rails", "~>5.1.0"
3
+ gem "sprockets", "~>3.0"
4
+ end
5
+
6
+ appraise "rails-5.2" do
7
+ gem "rails", "~>5.2.0"
8
+ gem "sprockets", "~>3.0"
9
+ end
10
+
11
+ appraise "rails-6.0" do
12
+ gem "rails", "~>6.0.0"
13
+ gem "sprockets", "~>3.0"
14
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
15
+ end
16
+
17
+ appraise "rails-6.1" do
18
+ gem "rails", "~>6.1.0"
19
+ gem "sprockets", "~>3.0"
20
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
21
+ end
22
+
23
+ appraise "rails-7.0" do
24
+ gem "rails", "~>7.0.0"
25
+ gem "sprockets", "~>3.0"
26
+ end
27
+
data/Gemfile CHANGED
@@ -2,3 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in nacelle.gemspec
4
4
  gemspec
5
+
6
+ gem "rails", "~>6.1.0"
7
+ gem "sprockets", "~>3.0"
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Nacelle
2
2
 
3
+ [![CI Status](https://github.com/botandrose/nacelle/workflows/CI/badge.svg?branch=master)](https://github.com/botandrose/nacelle/actions?query=workflow%3ACI+branch%3Amaster)
4
+
3
5
  Rails engine for inserting magic blocks into CMS content via cells.
4
6
 
5
7
  In your CMS content:
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~>5.1.0"
6
+ gem "sprockets", "~>3.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,165 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nacelle (0.2.3)
5
+ cells (~> 3.0)
6
+ rails
7
+ sprockets-rails
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.1.7)
13
+ actionpack (= 5.1.7)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (~> 0.6.1)
16
+ actionmailer (5.1.7)
17
+ actionpack (= 5.1.7)
18
+ actionview (= 5.1.7)
19
+ activejob (= 5.1.7)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.1.7)
23
+ actionview (= 5.1.7)
24
+ activesupport (= 5.1.7)
25
+ rack (~> 2.0)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.1.7)
30
+ activesupport (= 5.1.7)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.1.7)
36
+ activesupport (= 5.1.7)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.1.7)
39
+ activesupport (= 5.1.7)
40
+ activerecord (5.1.7)
41
+ activemodel (= 5.1.7)
42
+ activesupport (= 5.1.7)
43
+ arel (~> 8.0)
44
+ activesupport (5.1.7)
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ i18n (>= 0.7, < 2)
47
+ minitest (~> 5.1)
48
+ tzinfo (~> 1.1)
49
+ addressable (2.8.0)
50
+ public_suffix (>= 2.0.2, < 5.0)
51
+ appraisal (2.4.1)
52
+ bundler
53
+ rake
54
+ thor (>= 0.14.0)
55
+ arel (8.0.0)
56
+ builder (3.2.4)
57
+ byebug (11.1.3)
58
+ capybara (3.32.2)
59
+ addressable
60
+ mini_mime (>= 0.1.3)
61
+ nokogiri (~> 1.8)
62
+ rack (>= 1.6.0)
63
+ rack-test (>= 0.6.3)
64
+ regexp_parser (~> 1.5)
65
+ xpath (~> 3.2)
66
+ cells (3.11.3)
67
+ actionpack (>= 3.0)
68
+ railties (>= 3.0)
69
+ uber (~> 0.0.8)
70
+ concurrent-ruby (1.1.9)
71
+ crass (1.0.6)
72
+ diff-lcs (1.5.0)
73
+ erubi (1.10.0)
74
+ globalid (0.4.2)
75
+ activesupport (>= 4.2.0)
76
+ i18n (1.8.11)
77
+ concurrent-ruby (~> 1.0)
78
+ loofah (2.13.0)
79
+ crass (~> 1.0.2)
80
+ nokogiri (>= 1.5.9)
81
+ mail (2.7.1)
82
+ mini_mime (>= 0.1.1)
83
+ method_source (1.0.0)
84
+ mini_mime (1.1.2)
85
+ mini_portile2 (2.4.0)
86
+ minitest (5.15.0)
87
+ nio4r (2.5.8)
88
+ nokogiri (1.10.10)
89
+ mini_portile2 (~> 2.4.0)
90
+ public_suffix (4.0.6)
91
+ rack (2.2.3)
92
+ rack-test (1.1.0)
93
+ rack (>= 1.0, < 3)
94
+ rails (5.1.7)
95
+ actioncable (= 5.1.7)
96
+ actionmailer (= 5.1.7)
97
+ actionpack (= 5.1.7)
98
+ actionview (= 5.1.7)
99
+ activejob (= 5.1.7)
100
+ activemodel (= 5.1.7)
101
+ activerecord (= 5.1.7)
102
+ activesupport (= 5.1.7)
103
+ bundler (>= 1.3.0)
104
+ railties (= 5.1.7)
105
+ sprockets-rails (>= 2.0.0)
106
+ rails-dom-testing (2.0.3)
107
+ activesupport (>= 4.2.0)
108
+ nokogiri (>= 1.6)
109
+ rails-html-sanitizer (1.4.2)
110
+ loofah (~> 2.3)
111
+ railties (5.1.7)
112
+ actionpack (= 5.1.7)
113
+ activesupport (= 5.1.7)
114
+ method_source
115
+ rake (>= 0.8.7)
116
+ thor (>= 0.18.1, < 2.0)
117
+ rake (13.0.6)
118
+ regexp_parser (1.8.2)
119
+ rspec (3.10.0)
120
+ rspec-core (~> 3.10.0)
121
+ rspec-expectations (~> 3.10.0)
122
+ rspec-mocks (~> 3.10.0)
123
+ rspec-core (3.10.1)
124
+ rspec-support (~> 3.10.0)
125
+ rspec-expectations (3.10.1)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.10.0)
128
+ rspec-mocks (3.10.2)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.10.0)
131
+ rspec-support (3.10.3)
132
+ sprockets (3.7.2)
133
+ concurrent-ruby (~> 1.0)
134
+ rack (> 1, < 3)
135
+ sprockets-rails (3.2.2)
136
+ actionpack (>= 4.0)
137
+ activesupport (>= 4.0)
138
+ sprockets (>= 3.0.0)
139
+ thor (1.1.0)
140
+ thread_safe (0.3.6)
141
+ tzinfo (1.2.9)
142
+ thread_safe (~> 0.1)
143
+ uber (0.0.15)
144
+ websocket-driver (0.6.5)
145
+ websocket-extensions (>= 0.1.0)
146
+ websocket-extensions (0.1.5)
147
+ xpath (3.2.0)
148
+ nokogiri (~> 1.8)
149
+
150
+ PLATFORMS
151
+ ruby
152
+
153
+ DEPENDENCIES
154
+ appraisal
155
+ bundler
156
+ byebug
157
+ capybara
158
+ nacelle!
159
+ rails (~> 5.1.0)
160
+ rake
161
+ rspec
162
+ sprockets (~> 3.0)
163
+
164
+ BUNDLED WITH
165
+ 2.2.32
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~>5.2.0"
6
+ gem "sprockets", "~>3.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,171 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nacelle (0.2.3)
5
+ cells (~> 3.0)
6
+ rails
7
+ sprockets-rails
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.2.6)
13
+ actionpack (= 5.2.6)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailer (5.2.6)
17
+ actionpack (= 5.2.6)
18
+ actionview (= 5.2.6)
19
+ activejob (= 5.2.6)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.2.6)
23
+ actionview (= 5.2.6)
24
+ activesupport (= 5.2.6)
25
+ rack (~> 2.0, >= 2.0.8)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.2.6)
30
+ activesupport (= 5.2.6)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.2.6)
36
+ activesupport (= 5.2.6)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.2.6)
39
+ activesupport (= 5.2.6)
40
+ activerecord (5.2.6)
41
+ activemodel (= 5.2.6)
42
+ activesupport (= 5.2.6)
43
+ arel (>= 9.0)
44
+ activestorage (5.2.6)
45
+ actionpack (= 5.2.6)
46
+ activerecord (= 5.2.6)
47
+ marcel (~> 1.0.0)
48
+ activesupport (5.2.6)
49
+ concurrent-ruby (~> 1.0, >= 1.0.2)
50
+ i18n (>= 0.7, < 2)
51
+ minitest (~> 5.1)
52
+ tzinfo (~> 1.1)
53
+ addressable (2.8.0)
54
+ public_suffix (>= 2.0.2, < 5.0)
55
+ appraisal (2.4.1)
56
+ bundler
57
+ rake
58
+ thor (>= 0.14.0)
59
+ arel (9.0.0)
60
+ builder (3.2.4)
61
+ byebug (11.1.3)
62
+ capybara (3.32.2)
63
+ addressable
64
+ mini_mime (>= 0.1.3)
65
+ nokogiri (~> 1.8)
66
+ rack (>= 1.6.0)
67
+ rack-test (>= 0.6.3)
68
+ regexp_parser (~> 1.5)
69
+ xpath (~> 3.2)
70
+ cells (3.11.3)
71
+ actionpack (>= 3.0)
72
+ railties (>= 3.0)
73
+ uber (~> 0.0.8)
74
+ concurrent-ruby (1.1.9)
75
+ crass (1.0.6)
76
+ diff-lcs (1.5.0)
77
+ erubi (1.10.0)
78
+ globalid (0.4.2)
79
+ activesupport (>= 4.2.0)
80
+ i18n (1.8.11)
81
+ concurrent-ruby (~> 1.0)
82
+ loofah (2.13.0)
83
+ crass (~> 1.0.2)
84
+ nokogiri (>= 1.5.9)
85
+ mail (2.7.1)
86
+ mini_mime (>= 0.1.1)
87
+ marcel (1.0.2)
88
+ method_source (1.0.0)
89
+ mini_mime (1.1.2)
90
+ mini_portile2 (2.4.0)
91
+ minitest (5.15.0)
92
+ nio4r (2.5.8)
93
+ nokogiri (1.10.10)
94
+ mini_portile2 (~> 2.4.0)
95
+ public_suffix (4.0.6)
96
+ rack (2.2.3)
97
+ rack-test (1.1.0)
98
+ rack (>= 1.0, < 3)
99
+ rails (5.2.6)
100
+ actioncable (= 5.2.6)
101
+ actionmailer (= 5.2.6)
102
+ actionpack (= 5.2.6)
103
+ actionview (= 5.2.6)
104
+ activejob (= 5.2.6)
105
+ activemodel (= 5.2.6)
106
+ activerecord (= 5.2.6)
107
+ activestorage (= 5.2.6)
108
+ activesupport (= 5.2.6)
109
+ bundler (>= 1.3.0)
110
+ railties (= 5.2.6)
111
+ sprockets-rails (>= 2.0.0)
112
+ rails-dom-testing (2.0.3)
113
+ activesupport (>= 4.2.0)
114
+ nokogiri (>= 1.6)
115
+ rails-html-sanitizer (1.4.2)
116
+ loofah (~> 2.3)
117
+ railties (5.2.6)
118
+ actionpack (= 5.2.6)
119
+ activesupport (= 5.2.6)
120
+ method_source
121
+ rake (>= 0.8.7)
122
+ thor (>= 0.19.0, < 2.0)
123
+ rake (13.0.6)
124
+ regexp_parser (1.8.2)
125
+ rspec (3.10.0)
126
+ rspec-core (~> 3.10.0)
127
+ rspec-expectations (~> 3.10.0)
128
+ rspec-mocks (~> 3.10.0)
129
+ rspec-core (3.10.1)
130
+ rspec-support (~> 3.10.0)
131
+ rspec-expectations (3.10.1)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.10.0)
134
+ rspec-mocks (3.10.2)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.10.0)
137
+ rspec-support (3.10.3)
138
+ sprockets (3.7.2)
139
+ concurrent-ruby (~> 1.0)
140
+ rack (> 1, < 3)
141
+ sprockets-rails (3.2.2)
142
+ actionpack (>= 4.0)
143
+ activesupport (>= 4.0)
144
+ sprockets (>= 3.0.0)
145
+ thor (1.1.0)
146
+ thread_safe (0.3.6)
147
+ tzinfo (1.2.9)
148
+ thread_safe (~> 0.1)
149
+ uber (0.0.15)
150
+ websocket-driver (0.7.5)
151
+ websocket-extensions (>= 0.1.0)
152
+ websocket-extensions (0.1.5)
153
+ xpath (3.2.0)
154
+ nokogiri (~> 1.8)
155
+
156
+ PLATFORMS
157
+ ruby
158
+
159
+ DEPENDENCIES
160
+ appraisal
161
+ bundler
162
+ byebug
163
+ capybara
164
+ nacelle!
165
+ rails (~> 5.2.0)
166
+ rake
167
+ rspec
168
+ sprockets (~> 3.0)
169
+
170
+ BUNDLED WITH
171
+ 2.2.32
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~>6.0.0"
6
+ gem "sprockets", "~>3.0"
7
+ gem "capybara", "~>3.35.0"
8
+
9
+ gemspec path: "../"
@@ -0,0 +1,189 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nacelle (0.2.3)
5
+ cells (~> 3.0)
6
+ rails
7
+ sprockets-rails
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (6.0.4.4)
13
+ actionpack (= 6.0.4.4)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.0.4.4)
17
+ actionpack (= 6.0.4.4)
18
+ activejob (= 6.0.4.4)
19
+ activerecord (= 6.0.4.4)
20
+ activestorage (= 6.0.4.4)
21
+ activesupport (= 6.0.4.4)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.0.4.4)
24
+ actionpack (= 6.0.4.4)
25
+ actionview (= 6.0.4.4)
26
+ activejob (= 6.0.4.4)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.0.4.4)
30
+ actionview (= 6.0.4.4)
31
+ activesupport (= 6.0.4.4)
32
+ rack (~> 2.0, >= 2.0.8)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.0.4.4)
37
+ actionpack (= 6.0.4.4)
38
+ activerecord (= 6.0.4.4)
39
+ activestorage (= 6.0.4.4)
40
+ activesupport (= 6.0.4.4)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.0.4.4)
43
+ activesupport (= 6.0.4.4)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.0.4.4)
49
+ activesupport (= 6.0.4.4)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.0.4.4)
52
+ activesupport (= 6.0.4.4)
53
+ activerecord (6.0.4.4)
54
+ activemodel (= 6.0.4.4)
55
+ activesupport (= 6.0.4.4)
56
+ activestorage (6.0.4.4)
57
+ actionpack (= 6.0.4.4)
58
+ activejob (= 6.0.4.4)
59
+ activerecord (= 6.0.4.4)
60
+ marcel (~> 1.0.0)
61
+ activesupport (6.0.4.4)
62
+ concurrent-ruby (~> 1.0, >= 1.0.2)
63
+ i18n (>= 0.7, < 2)
64
+ minitest (~> 5.1)
65
+ tzinfo (~> 1.1)
66
+ zeitwerk (~> 2.2, >= 2.2.2)
67
+ addressable (2.8.0)
68
+ public_suffix (>= 2.0.2, < 5.0)
69
+ appraisal (2.4.1)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ builder (3.2.4)
74
+ byebug (11.1.3)
75
+ capybara (3.35.3)
76
+ addressable
77
+ mini_mime (>= 0.1.3)
78
+ nokogiri (~> 1.8)
79
+ rack (>= 1.6.0)
80
+ rack-test (>= 0.6.3)
81
+ regexp_parser (>= 1.5, < 3.0)
82
+ xpath (~> 3.2)
83
+ cells (3.11.3)
84
+ actionpack (>= 3.0)
85
+ railties (>= 3.0)
86
+ uber (~> 0.0.8)
87
+ concurrent-ruby (1.1.9)
88
+ crass (1.0.6)
89
+ diff-lcs (1.5.0)
90
+ erubi (1.10.0)
91
+ globalid (1.0.0)
92
+ activesupport (>= 5.0)
93
+ i18n (1.8.11)
94
+ concurrent-ruby (~> 1.0)
95
+ loofah (2.13.0)
96
+ crass (~> 1.0.2)
97
+ nokogiri (>= 1.5.9)
98
+ mail (2.7.1)
99
+ mini_mime (>= 0.1.1)
100
+ marcel (1.0.2)
101
+ method_source (1.0.0)
102
+ mini_mime (1.1.2)
103
+ mini_portile2 (2.6.1)
104
+ minitest (5.15.0)
105
+ nio4r (2.5.8)
106
+ nokogiri (1.12.5)
107
+ mini_portile2 (~> 2.6.1)
108
+ racc (~> 1.4)
109
+ public_suffix (4.0.6)
110
+ racc (1.6.0)
111
+ rack (2.2.3)
112
+ rack-test (1.1.0)
113
+ rack (>= 1.0, < 3)
114
+ rails (6.0.4.4)
115
+ actioncable (= 6.0.4.4)
116
+ actionmailbox (= 6.0.4.4)
117
+ actionmailer (= 6.0.4.4)
118
+ actionpack (= 6.0.4.4)
119
+ actiontext (= 6.0.4.4)
120
+ actionview (= 6.0.4.4)
121
+ activejob (= 6.0.4.4)
122
+ activemodel (= 6.0.4.4)
123
+ activerecord (= 6.0.4.4)
124
+ activestorage (= 6.0.4.4)
125
+ activesupport (= 6.0.4.4)
126
+ bundler (>= 1.3.0)
127
+ railties (= 6.0.4.4)
128
+ sprockets-rails (>= 2.0.0)
129
+ rails-dom-testing (2.0.3)
130
+ activesupport (>= 4.2.0)
131
+ nokogiri (>= 1.6)
132
+ rails-html-sanitizer (1.4.2)
133
+ loofah (~> 2.3)
134
+ railties (6.0.4.4)
135
+ actionpack (= 6.0.4.4)
136
+ activesupport (= 6.0.4.4)
137
+ method_source
138
+ rake (>= 0.8.7)
139
+ thor (>= 0.20.3, < 2.0)
140
+ rake (13.0.6)
141
+ regexp_parser (2.2.0)
142
+ rspec (3.10.0)
143
+ rspec-core (~> 3.10.0)
144
+ rspec-expectations (~> 3.10.0)
145
+ rspec-mocks (~> 3.10.0)
146
+ rspec-core (3.10.1)
147
+ rspec-support (~> 3.10.0)
148
+ rspec-expectations (3.10.1)
149
+ diff-lcs (>= 1.2.0, < 2.0)
150
+ rspec-support (~> 3.10.0)
151
+ rspec-mocks (3.10.2)
152
+ diff-lcs (>= 1.2.0, < 2.0)
153
+ rspec-support (~> 3.10.0)
154
+ rspec-support (3.10.3)
155
+ sprockets (3.7.2)
156
+ concurrent-ruby (~> 1.0)
157
+ rack (> 1, < 3)
158
+ sprockets-rails (3.4.2)
159
+ actionpack (>= 5.2)
160
+ activesupport (>= 5.2)
161
+ sprockets (>= 3.0.0)
162
+ thor (1.1.0)
163
+ thread_safe (0.3.6)
164
+ tzinfo (1.2.9)
165
+ thread_safe (~> 0.1)
166
+ uber (0.0.15)
167
+ websocket-driver (0.7.5)
168
+ websocket-extensions (>= 0.1.0)
169
+ websocket-extensions (0.1.5)
170
+ xpath (3.2.0)
171
+ nokogiri (~> 1.8)
172
+ zeitwerk (2.5.2)
173
+
174
+ PLATFORMS
175
+ ruby
176
+
177
+ DEPENDENCIES
178
+ appraisal
179
+ bundler
180
+ byebug
181
+ capybara (~> 3.35.0)
182
+ nacelle!
183
+ rails (~> 6.0.0)
184
+ rake
185
+ rspec
186
+ sprockets (~> 3.0)
187
+
188
+ BUNDLED WITH
189
+ 2.2.32
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~>6.1.0"
6
+ gem "sprockets", "~>3.0"
7
+ gem "capybara", "~>3.35.0"
8
+
9
+ gemspec path: "../"
@@ -0,0 +1,190 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nacelle (0.2.3)
5
+ cells (~> 3.0)
6
+ rails
7
+ sprockets-rails
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (6.1.4.4)
13
+ actionpack (= 6.1.4.4)
14
+ activesupport (= 6.1.4.4)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (6.1.4.4)
18
+ actionpack (= 6.1.4.4)
19
+ activejob (= 6.1.4.4)
20
+ activerecord (= 6.1.4.4)
21
+ activestorage (= 6.1.4.4)
22
+ activesupport (= 6.1.4.4)
23
+ mail (>= 2.7.1)
24
+ actionmailer (6.1.4.4)
25
+ actionpack (= 6.1.4.4)
26
+ actionview (= 6.1.4.4)
27
+ activejob (= 6.1.4.4)
28
+ activesupport (= 6.1.4.4)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (6.1.4.4)
32
+ actionview (= 6.1.4.4)
33
+ activesupport (= 6.1.4.4)
34
+ rack (~> 2.0, >= 2.0.9)
35
+ rack-test (>= 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
+ actiontext (6.1.4.4)
39
+ actionpack (= 6.1.4.4)
40
+ activerecord (= 6.1.4.4)
41
+ activestorage (= 6.1.4.4)
42
+ activesupport (= 6.1.4.4)
43
+ nokogiri (>= 1.8.5)
44
+ actionview (6.1.4.4)
45
+ activesupport (= 6.1.4.4)
46
+ builder (~> 3.1)
47
+ erubi (~> 1.4)
48
+ rails-dom-testing (~> 2.0)
49
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
+ activejob (6.1.4.4)
51
+ activesupport (= 6.1.4.4)
52
+ globalid (>= 0.3.6)
53
+ activemodel (6.1.4.4)
54
+ activesupport (= 6.1.4.4)
55
+ activerecord (6.1.4.4)
56
+ activemodel (= 6.1.4.4)
57
+ activesupport (= 6.1.4.4)
58
+ activestorage (6.1.4.4)
59
+ actionpack (= 6.1.4.4)
60
+ activejob (= 6.1.4.4)
61
+ activerecord (= 6.1.4.4)
62
+ activesupport (= 6.1.4.4)
63
+ marcel (~> 1.0.0)
64
+ mini_mime (>= 1.1.0)
65
+ activesupport (6.1.4.4)
66
+ concurrent-ruby (~> 1.0, >= 1.0.2)
67
+ i18n (>= 1.6, < 2)
68
+ minitest (>= 5.1)
69
+ tzinfo (~> 2.0)
70
+ zeitwerk (~> 2.3)
71
+ addressable (2.8.0)
72
+ public_suffix (>= 2.0.2, < 5.0)
73
+ appraisal (2.4.1)
74
+ bundler
75
+ rake
76
+ thor (>= 0.14.0)
77
+ builder (3.2.4)
78
+ byebug (11.1.3)
79
+ capybara (3.35.3)
80
+ addressable
81
+ mini_mime (>= 0.1.3)
82
+ nokogiri (~> 1.8)
83
+ rack (>= 1.6.0)
84
+ rack-test (>= 0.6.3)
85
+ regexp_parser (>= 1.5, < 3.0)
86
+ xpath (~> 3.2)
87
+ cells (3.11.3)
88
+ actionpack (>= 3.0)
89
+ railties (>= 3.0)
90
+ uber (~> 0.0.8)
91
+ concurrent-ruby (1.1.9)
92
+ crass (1.0.6)
93
+ diff-lcs (1.5.0)
94
+ erubi (1.10.0)
95
+ globalid (1.0.0)
96
+ activesupport (>= 5.0)
97
+ i18n (1.8.11)
98
+ concurrent-ruby (~> 1.0)
99
+ loofah (2.13.0)
100
+ crass (~> 1.0.2)
101
+ nokogiri (>= 1.5.9)
102
+ mail (2.7.1)
103
+ mini_mime (>= 0.1.1)
104
+ marcel (1.0.2)
105
+ method_source (1.0.0)
106
+ mini_mime (1.1.2)
107
+ minitest (5.15.0)
108
+ nio4r (2.5.8)
109
+ nokogiri (1.12.5-x86_64-linux)
110
+ racc (~> 1.4)
111
+ public_suffix (4.0.6)
112
+ racc (1.6.0)
113
+ rack (2.2.3)
114
+ rack-test (1.1.0)
115
+ rack (>= 1.0, < 3)
116
+ rails (6.1.4.4)
117
+ actioncable (= 6.1.4.4)
118
+ actionmailbox (= 6.1.4.4)
119
+ actionmailer (= 6.1.4.4)
120
+ actionpack (= 6.1.4.4)
121
+ actiontext (= 6.1.4.4)
122
+ actionview (= 6.1.4.4)
123
+ activejob (= 6.1.4.4)
124
+ activemodel (= 6.1.4.4)
125
+ activerecord (= 6.1.4.4)
126
+ activestorage (= 6.1.4.4)
127
+ activesupport (= 6.1.4.4)
128
+ bundler (>= 1.15.0)
129
+ railties (= 6.1.4.4)
130
+ sprockets-rails (>= 2.0.0)
131
+ rails-dom-testing (2.0.3)
132
+ activesupport (>= 4.2.0)
133
+ nokogiri (>= 1.6)
134
+ rails-html-sanitizer (1.4.2)
135
+ loofah (~> 2.3)
136
+ railties (6.1.4.4)
137
+ actionpack (= 6.1.4.4)
138
+ activesupport (= 6.1.4.4)
139
+ method_source
140
+ rake (>= 0.13)
141
+ thor (~> 1.0)
142
+ rake (13.0.6)
143
+ regexp_parser (2.2.0)
144
+ rspec (3.10.0)
145
+ rspec-core (~> 3.10.0)
146
+ rspec-expectations (~> 3.10.0)
147
+ rspec-mocks (~> 3.10.0)
148
+ rspec-core (3.10.1)
149
+ rspec-support (~> 3.10.0)
150
+ rspec-expectations (3.10.1)
151
+ diff-lcs (>= 1.2.0, < 2.0)
152
+ rspec-support (~> 3.10.0)
153
+ rspec-mocks (3.10.2)
154
+ diff-lcs (>= 1.2.0, < 2.0)
155
+ rspec-support (~> 3.10.0)
156
+ rspec-support (3.10.3)
157
+ sprockets (3.7.2)
158
+ concurrent-ruby (~> 1.0)
159
+ rack (> 1, < 3)
160
+ sprockets-rails (3.4.2)
161
+ actionpack (>= 5.2)
162
+ activesupport (>= 5.2)
163
+ sprockets (>= 3.0.0)
164
+ thor (1.1.0)
165
+ tzinfo (2.0.4)
166
+ concurrent-ruby (~> 1.0)
167
+ uber (0.0.15)
168
+ websocket-driver (0.7.5)
169
+ websocket-extensions (>= 0.1.0)
170
+ websocket-extensions (0.1.5)
171
+ xpath (3.2.0)
172
+ nokogiri (~> 1.8)
173
+ zeitwerk (2.5.2)
174
+
175
+ PLATFORMS
176
+ ruby
177
+
178
+ DEPENDENCIES
179
+ appraisal
180
+ bundler
181
+ byebug
182
+ capybara (~> 3.35.0)
183
+ nacelle!
184
+ rails (~> 6.1.0)
185
+ rake
186
+ rspec
187
+ sprockets (~> 3.0)
188
+
189
+ BUNDLED WITH
190
+ 2.2.32
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~>7.0.0"
6
+ gem "sprockets", "~>3.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,192 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ nacelle (0.2.3)
5
+ cells (~> 3.0)
6
+ rails
7
+ sprockets-rails
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (7.0.0)
13
+ actionpack (= 7.0.0)
14
+ activesupport (= 7.0.0)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (7.0.0)
18
+ actionpack (= 7.0.0)
19
+ activejob (= 7.0.0)
20
+ activerecord (= 7.0.0)
21
+ activestorage (= 7.0.0)
22
+ activesupport (= 7.0.0)
23
+ mail (>= 2.7.1)
24
+ actionmailer (7.0.0)
25
+ actionpack (= 7.0.0)
26
+ actionview (= 7.0.0)
27
+ activejob (= 7.0.0)
28
+ activesupport (= 7.0.0)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (7.0.0)
32
+ actionview (= 7.0.0)
33
+ activesupport (= 7.0.0)
34
+ rack (~> 2.0, >= 2.2.0)
35
+ rack-test (>= 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
+ actiontext (7.0.0)
39
+ actionpack (= 7.0.0)
40
+ activerecord (= 7.0.0)
41
+ activestorage (= 7.0.0)
42
+ activesupport (= 7.0.0)
43
+ globalid (>= 0.6.0)
44
+ nokogiri (>= 1.8.5)
45
+ actionview (7.0.0)
46
+ activesupport (= 7.0.0)
47
+ builder (~> 3.1)
48
+ erubi (~> 1.4)
49
+ rails-dom-testing (~> 2.0)
50
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
51
+ activejob (7.0.0)
52
+ activesupport (= 7.0.0)
53
+ globalid (>= 0.3.6)
54
+ activemodel (7.0.0)
55
+ activesupport (= 7.0.0)
56
+ activerecord (7.0.0)
57
+ activemodel (= 7.0.0)
58
+ activesupport (= 7.0.0)
59
+ activestorage (7.0.0)
60
+ actionpack (= 7.0.0)
61
+ activejob (= 7.0.0)
62
+ activerecord (= 7.0.0)
63
+ activesupport (= 7.0.0)
64
+ marcel (~> 1.0)
65
+ mini_mime (>= 1.1.0)
66
+ activesupport (7.0.0)
67
+ concurrent-ruby (~> 1.0, >= 1.0.2)
68
+ i18n (>= 1.6, < 2)
69
+ minitest (>= 5.1)
70
+ tzinfo (~> 2.0)
71
+ addressable (2.8.0)
72
+ public_suffix (>= 2.0.2, < 5.0)
73
+ appraisal (2.4.1)
74
+ bundler
75
+ rake
76
+ thor (>= 0.14.0)
77
+ builder (3.2.4)
78
+ byebug (11.1.3)
79
+ capybara (3.36.0)
80
+ addressable
81
+ matrix
82
+ mini_mime (>= 0.1.3)
83
+ nokogiri (~> 1.8)
84
+ rack (>= 1.6.0)
85
+ rack-test (>= 0.6.3)
86
+ regexp_parser (>= 1.5, < 3.0)
87
+ xpath (~> 3.2)
88
+ cells (3.11.3)
89
+ actionpack (>= 3.0)
90
+ railties (>= 3.0)
91
+ uber (~> 0.0.8)
92
+ concurrent-ruby (1.1.9)
93
+ crass (1.0.6)
94
+ diff-lcs (1.5.0)
95
+ erubi (1.10.0)
96
+ globalid (1.0.0)
97
+ activesupport (>= 5.0)
98
+ i18n (1.8.11)
99
+ concurrent-ruby (~> 1.0)
100
+ loofah (2.13.0)
101
+ crass (~> 1.0.2)
102
+ nokogiri (>= 1.5.9)
103
+ mail (2.7.1)
104
+ mini_mime (>= 0.1.1)
105
+ marcel (1.0.2)
106
+ matrix (0.4.2)
107
+ method_source (1.0.0)
108
+ mini_mime (1.1.2)
109
+ minitest (5.15.0)
110
+ nio4r (2.5.8)
111
+ nokogiri (1.12.5-x86_64-linux)
112
+ racc (~> 1.4)
113
+ public_suffix (4.0.6)
114
+ racc (1.6.0)
115
+ rack (2.2.3)
116
+ rack-test (1.1.0)
117
+ rack (>= 1.0, < 3)
118
+ rails (7.0.0)
119
+ actioncable (= 7.0.0)
120
+ actionmailbox (= 7.0.0)
121
+ actionmailer (= 7.0.0)
122
+ actionpack (= 7.0.0)
123
+ actiontext (= 7.0.0)
124
+ actionview (= 7.0.0)
125
+ activejob (= 7.0.0)
126
+ activemodel (= 7.0.0)
127
+ activerecord (= 7.0.0)
128
+ activestorage (= 7.0.0)
129
+ activesupport (= 7.0.0)
130
+ bundler (>= 1.15.0)
131
+ railties (= 7.0.0)
132
+ rails-dom-testing (2.0.3)
133
+ activesupport (>= 4.2.0)
134
+ nokogiri (>= 1.6)
135
+ rails-html-sanitizer (1.4.2)
136
+ loofah (~> 2.3)
137
+ railties (7.0.0)
138
+ actionpack (= 7.0.0)
139
+ activesupport (= 7.0.0)
140
+ method_source
141
+ rake (>= 12.2)
142
+ thor (~> 1.0)
143
+ zeitwerk (~> 2.5)
144
+ rake (13.0.6)
145
+ regexp_parser (2.2.0)
146
+ rspec (3.10.0)
147
+ rspec-core (~> 3.10.0)
148
+ rspec-expectations (~> 3.10.0)
149
+ rspec-mocks (~> 3.10.0)
150
+ rspec-core (3.10.1)
151
+ rspec-support (~> 3.10.0)
152
+ rspec-expectations (3.10.1)
153
+ diff-lcs (>= 1.2.0, < 2.0)
154
+ rspec-support (~> 3.10.0)
155
+ rspec-mocks (3.10.2)
156
+ diff-lcs (>= 1.2.0, < 2.0)
157
+ rspec-support (~> 3.10.0)
158
+ rspec-support (3.10.3)
159
+ sprockets (3.7.2)
160
+ concurrent-ruby (~> 1.0)
161
+ rack (> 1, < 3)
162
+ sprockets-rails (3.4.2)
163
+ actionpack (>= 5.2)
164
+ activesupport (>= 5.2)
165
+ sprockets (>= 3.0.0)
166
+ thor (1.1.0)
167
+ tzinfo (2.0.4)
168
+ concurrent-ruby (~> 1.0)
169
+ uber (0.0.15)
170
+ websocket-driver (0.7.5)
171
+ websocket-extensions (>= 0.1.0)
172
+ websocket-extensions (0.1.5)
173
+ xpath (3.2.0)
174
+ nokogiri (~> 1.8)
175
+ zeitwerk (2.5.2)
176
+
177
+ PLATFORMS
178
+ x86_64-linux
179
+
180
+ DEPENDENCIES
181
+ appraisal
182
+ bundler
183
+ byebug
184
+ capybara
185
+ nacelle!
186
+ rails (~> 7.0.0)
187
+ rake
188
+ rspec
189
+ sprockets (~> 3.0)
190
+
191
+ BUNDLED WITH
192
+ 2.2.32
data/lib/nacelle/cell.rb CHANGED
@@ -4,3 +4,11 @@ module Nacelle
4
4
  class Cell < Cell::Base
5
5
  end
6
6
  end
7
+
8
+ if Rails.version >= "6.1.0"
9
+ Cell::Base::View.class_eval do
10
+ def compiled_method_container
11
+ ActionView::Base
12
+ end
13
+ end
14
+ end
@@ -1,3 +1,8 @@
1
+ require "active_support/xml_mini/nokogiri"
2
+ ActiveSupport::XmlMini.backend = "Nokogiri"
3
+
4
+ require "active_support/core_ext/hash"
5
+
1
6
  module Nacelle
2
7
  class Middleware
3
8
  def initialize app
@@ -1,3 +1,3 @@
1
1
  module Nacelle
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
data/lib/nacelle.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require "nacelle/version"
2
2
  require "action_controller/railtie"
3
+ require "sprockets/railtie"
3
4
  require "nacelle/cell"
4
5
  require "nacelle/middleware"
5
6
 
data/nacelle.gemspec CHANGED
@@ -19,12 +19,14 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_development_dependency "bundler", "~> 1.9"
23
- spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency "bundler"
23
+ spec.add_development_dependency "appraisal"
24
+ spec.add_development_dependency "rake"
24
25
  spec.add_development_dependency "rspec"
25
26
  spec.add_development_dependency "capybara"
26
27
  spec.add_development_dependency "byebug"
27
28
 
28
29
  spec.add_dependency "rails"
30
+ spec.add_dependency "sprockets-rails"
29
31
  spec.add_dependency "cells", "~>3.0"
30
32
  end
metadata CHANGED
@@ -1,43 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nacelle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-13 00:00:00.000000000 Z
11
+ date: 2021-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.9'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.9'
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: appraisal
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rake
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
- - - "~>"
45
+ - - ">="
32
46
  - !ruby/object:Gem::Version
33
- version: '10.0'
47
+ version: '0'
34
48
  type: :development
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
- - - "~>"
52
+ - - ">="
39
53
  - !ruby/object:Gem::Version
40
- version: '10.0'
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rspec
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -94,6 +108,20 @@ dependencies:
94
108
  - - ">="
95
109
  - !ruby/object:Gem::Version
96
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sprockets-rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
97
125
  - !ruby/object:Gem::Dependency
98
126
  name: cells
99
127
  requirement: !ruby/object:Gem::Requirement
@@ -115,10 +143,10 @@ executables: []
115
143
  extensions: []
116
144
  extra_rdoc_files: []
117
145
  files:
118
- - ".byebug_history"
146
+ - ".github/workflows/ci.yml"
119
147
  - ".gitignore"
120
148
  - ".rspec"
121
- - ".travis.yml"
149
+ - Appraisals
122
150
  - Gemfile
123
151
  - LICENSE.txt
124
152
  - README.md
@@ -132,6 +160,17 @@ files:
132
160
  - bin/console
133
161
  - bin/setup
134
162
  - config/routes.rb
163
+ - gemfiles/.bundle/config
164
+ - gemfiles/rails_5.1.gemfile
165
+ - gemfiles/rails_5.1.gemfile.lock
166
+ - gemfiles/rails_5.2.gemfile
167
+ - gemfiles/rails_5.2.gemfile.lock
168
+ - gemfiles/rails_6.0.gemfile
169
+ - gemfiles/rails_6.0.gemfile.lock
170
+ - gemfiles/rails_6.1.gemfile
171
+ - gemfiles/rails_6.1.gemfile.lock
172
+ - gemfiles/rails_7.0.gemfile
173
+ - gemfiles/rails_7.0.gemfile.lock
135
174
  - lib/nacelle.rb
136
175
  - lib/nacelle/cell.rb
137
176
  - lib/nacelle/cells_serializer.rb
@@ -157,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
196
  - !ruby/object:Gem::Version
158
197
  version: '0'
159
198
  requirements: []
160
- rubygems_version: 3.0.3
199
+ rubygems_version: 3.0.8
161
200
  signing_key:
162
201
  specification_version: 4
163
202
  summary: Embed cells in the markup of your CMS.
data/.byebug_history DELETED
@@ -1,22 +0,0 @@
1
- c
2
- kkc
3
- q
4
- puts TestApp.middleware.middlewares.map(&:name)
5
- puts TestApp.middleware.middlewares
6
- q
7
- puts TestApp.middleware.middlewares.last.name
8
- puts TestApp.middleware.middlewares.last
9
- q
10
- puts TestApp.middleware.middlewares.map(&:name)
11
- q
12
- n
13
- q
14
- puts TestApp.middleware.middlewares.map(&:name)
15
- q
16
- puts TestApp.middleware.middlewares.map(&:name)
17
- q
18
- puts TestApp.middleware.middlewares.map(&:name)
19
- TestApp.middleware.middlewares.map(&:name)
20
- TestApp.middleware.middlewares
21
- TestApp.middleware
22
- TestApp.middlewares
data/.travis.yml DELETED
@@ -1,3 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.0