introspective_admin 0.0.8 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +5 -5
  2. data/.DS_Store +0 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +9 -11
  5. data/CHANGELOG.md +22 -0
  6. data/Gemfile +10 -1
  7. data/Gemfile.lock +308 -208
  8. data/README.md +34 -8
  9. data/introspective_admin.gemspec +4 -11
  10. data/lib/introspective_admin/base.rb +17 -17
  11. data/lib/introspective_admin/version.rb +1 -1
  12. data/spec/admin/company_admin_spec.rb +6 -6
  13. data/spec/admin/job_admin_spec.rb +4 -4
  14. data/spec/admin/location_admin_spec.rb +4 -4
  15. data/spec/admin/location_beacon_admin_spec.rb +5 -5
  16. data/spec/admin/project__admin_spec.rb +5 -5
  17. data/spec/admin/user_admin_spec.rb +4 -4
  18. data/spec/dummy/Gemfile +15 -0
  19. data/spec/dummy/app/admin/admin_users.rb +28 -0
  20. data/spec/dummy/app/admin/dashboard.rb +32 -0
  21. data/spec/dummy/app/assets/config/manifest.js +3 -0
  22. data/spec/dummy/app/assets/javascripts/active_admin.js +1 -0
  23. data/spec/dummy/app/assets/stylesheets/active_admin.scss +17 -0
  24. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  25. data/spec/dummy/app/helpers/application_helper.rb +1 -0
  26. data/spec/dummy/app/models/abstract_adapter.rb +8 -2
  27. data/spec/dummy/app/models/admin_user.rb +4 -0
  28. data/spec/dummy/app/models/role.rb +1 -1
  29. data/spec/dummy/app/models/user.rb +2 -2
  30. data/spec/dummy/app/views/layouts/application.html.erb +1 -1
  31. data/spec/dummy/config/application.rb +4 -2
  32. data/spec/dummy/config/environment.rb +1 -1
  33. data/spec/dummy/config/environments/development.rb +5 -1
  34. data/spec/dummy/config/environments/production.rb +6 -3
  35. data/spec/dummy/config/environments/test.rb +9 -2
  36. data/spec/dummy/config/initializers/assets.rb +3 -1
  37. data/spec/dummy/config/initializers/zeitwerk.rb +8 -0
  38. data/spec/dummy/config/routes.rb +1 -0
  39. data/spec/dummy/db/development.sqlite3 +0 -0
  40. data/spec/dummy/db/development.sqlite3-shm +0 -0
  41. data/spec/dummy/db/development.sqlite3-wal +0 -0
  42. data/spec/dummy/db/migrate/20220806003731_add_devise_to_admin_users.rb +51 -0
  43. data/spec/dummy/introspective_admin.gemspec +34 -0
  44. data/spec/rails_helper.rb +5 -2
  45. metadata +39 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b9a18513acd371f5dc9deeebf46976c7d1c81ceb
4
- data.tar.gz: 57621ecaac26a7df9b9b7e14d36b1d95a0dfea66
2
+ SHA256:
3
+ metadata.gz: f2ef081e300f45c9ad80bc402f7b86c473389f3544731184b242c9e0c79af50f
4
+ data.tar.gz: 607567fade9477151ce25365cb42fb58da604a0c75e58b9d03d414a98c4416c6
5
5
  SHA512:
6
- metadata.gz: 1ea656420a6f9e6574a5979d92c89540b43ddccc2e02fd6fe55b844cc36bf75f6f5db76c635803f829993c58dc871c4ddf610eea1f25361f0b96b4ae8ed19bb5
7
- data.tar.gz: c757ca3da6dddddbae8ab663a025b376d165aa6d96135ac19180bce29c312b04890d52d23d2539b0e91ec8ce158a3c349e35c9581797bf02552662261c95cde8
6
+ metadata.gz: 42775a1e8e7e0d0ac0324b9142964191edfd460ef20693693c5e6841ace1396ef52df81ca73591d01b8214f969516a5156ac0163ded75827a62c03f15ff8fb71
7
+ data.tar.gz: 21d5882ca7c9ee303602ad428c76de97d478ca0a72f557623804d363ffcd7618c57c12e184ce6cbb1bbdb6473b16998e532a05bdc6993b11d2e592d38e9311ca
data/.DS_Store ADDED
Binary file
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.3
data/.travis.yml CHANGED
@@ -1,17 +1,15 @@
1
1
  language: ruby
2
+ before_install:
3
+ - gem install bundler -v 1.17.3
2
4
  install: bundle install --jobs=1 --retry=1
3
5
  script:
4
6
  - bundle install
5
7
  - bundle exec rspec
6
8
 
7
9
  rvm:
8
- - 1.9
9
- - 2.0.0
10
- - 2.1
11
- - 2.2
12
- - rbx-2.5.8
13
- - jruby-19mode
14
- - jruby-9.0.4.0
10
+ - 2.7.1
11
+ - 3.0.1
12
+ - 3.3.0
15
13
  - ruby-head
16
14
  - jruby-head
17
15
 
@@ -22,15 +20,15 @@ matrix:
22
20
 
23
21
  env:
24
22
  matrix:
25
- - RAILS=3.2.22
26
- - RAILS=4.1.13
27
- - RAILS=4.2.4
23
+ - RAILS=4.2.11
24
+ - RAILS=5.2.0
25
+ - RAILS=7.0.8.1
28
26
  - RAILS=master
29
27
  global:
30
28
  - JRUBY_OPTS="-J-Xmx1024m --debug"
31
29
 
32
30
  notifications:
33
- email:
31
+ email:
34
32
  recipients:
35
33
  - buermann@gmail.com
36
34
  on_success: change
data/CHANGELOG.md CHANGED
@@ -1,4 +1,26 @@
1
1
 
2
+ 0.9.0 3/19/2024
3
+ ===============
4
+
5
+ ActiveAdmin 3+, Ruby 3+, and Rails 7+.
6
+
7
+ BREAKING CHANGES:
8
+ - ActiveAdmin now requires Ransack declarations on registered models and their associations, c.f. the README.
9
+
10
+ 0.1.0 8/04/2020
11
+ ===============
12
+
13
+ Rails 6+ support.
14
+
15
+ 0.0.9 3/28/2019
16
+ ==============
17
+
18
+ Add support for ActiveAdmin 1+; Rails 5; and, correspondingly, require ruby >= 2.3
19
+
20
+ 0.0.8 7/12/2016
21
+ ==============
22
+
23
+ Link to belongs_to relationships in index and show pages.
2
24
 
3
25
  0.0.7 6/14/2016
4
26
  ==============
data/Gemfile CHANGED
@@ -2,5 +2,14 @@
2
2
  source "https://rubygems.org"
3
3
 
4
4
  gemspec
5
- gem 'activeadmin', github: 'activeadmin'
6
5
  gem 'coveralls', require: false
6
+ gem 'devise'
7
+ gem 'devise-async'
8
+ gem 'machinist_redux'
9
+ gem 'rails-controller-testing'
10
+ gem "rspec-rails"
11
+ gem 'rufus-mnemo'
12
+ gem 'simplecov'
13
+ gem 'sprockets-rails'
14
+
15
+
data/Gemfile.lock CHANGED
@@ -1,247 +1,347 @@
1
- GIT
2
- remote: git://github.com/activeadmin/activeadmin.git
3
- revision: 9021962577c144b34aa74cb70676d04948d0722f
4
- specs:
5
- activeadmin (1.0.0.pre2)
6
- arbre (~> 1.0, >= 1.0.2)
7
- bourbon
8
- coffee-rails
9
- formtastic (~> 3.1)
10
- formtastic_i18n
11
- inherited_resources (~> 1.6)
12
- jquery-rails
13
- jquery-ui-rails
14
- kaminari (~> 0.15)
15
- rails (>= 3.2, < 5.0)
16
- ransack (~> 1.3)
17
- sass-rails
18
-
19
1
  PATH
20
2
  remote: .
21
3
  specs:
22
- introspective_admin (0.0.8)
4
+ introspective_admin (0.9.0)
5
+ activeadmin
6
+ rails
7
+ sass
23
8
  sass-rails
24
9
 
25
10
  GEM
26
11
  remote: https://rubygems.org/
27
12
  specs:
28
- actionmailer (4.2.4)
29
- actionpack (= 4.2.4)
30
- actionview (= 4.2.4)
31
- activejob (= 4.2.4)
13
+ actioncable (7.1.3.2)
14
+ actionpack (= 7.1.3.2)
15
+ activesupport (= 7.1.3.2)
16
+ nio4r (~> 2.0)
17
+ websocket-driver (>= 0.6.1)
18
+ zeitwerk (~> 2.6)
19
+ actionmailbox (7.1.3.2)
20
+ actionpack (= 7.1.3.2)
21
+ activejob (= 7.1.3.2)
22
+ activerecord (= 7.1.3.2)
23
+ activestorage (= 7.1.3.2)
24
+ activesupport (= 7.1.3.2)
25
+ mail (>= 2.7.1)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ actionmailer (7.1.3.2)
30
+ actionpack (= 7.1.3.2)
31
+ actionview (= 7.1.3.2)
32
+ activejob (= 7.1.3.2)
33
+ activesupport (= 7.1.3.2)
32
34
  mail (~> 2.5, >= 2.5.4)
33
- rails-dom-testing (~> 1.0, >= 1.0.5)
34
- actionpack (4.2.4)
35
- actionview (= 4.2.4)
36
- activesupport (= 4.2.4)
37
- rack (~> 1.6)
38
- rack-test (~> 0.6.2)
39
- rails-dom-testing (~> 1.0, >= 1.0.5)
40
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
41
- actionview (4.2.4)
42
- activesupport (= 4.2.4)
35
+ net-imap
36
+ net-pop
37
+ net-smtp
38
+ rails-dom-testing (~> 2.2)
39
+ actionpack (7.1.3.2)
40
+ actionview (= 7.1.3.2)
41
+ activesupport (= 7.1.3.2)
42
+ nokogiri (>= 1.8.5)
43
+ racc
44
+ rack (>= 2.2.4)
45
+ rack-session (>= 1.0.1)
46
+ rack-test (>= 0.6.3)
47
+ rails-dom-testing (~> 2.2)
48
+ rails-html-sanitizer (~> 1.6)
49
+ actiontext (7.1.3.2)
50
+ actionpack (= 7.1.3.2)
51
+ activerecord (= 7.1.3.2)
52
+ activestorage (= 7.1.3.2)
53
+ activesupport (= 7.1.3.2)
54
+ globalid (>= 0.6.0)
55
+ nokogiri (>= 1.8.5)
56
+ actionview (7.1.3.2)
57
+ activesupport (= 7.1.3.2)
43
58
  builder (~> 3.1)
44
- erubis (~> 2.7.0)
45
- rails-dom-testing (~> 1.0, >= 1.0.5)
46
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
47
- activejob (4.2.4)
48
- activesupport (= 4.2.4)
49
- globalid (>= 0.3.0)
50
- activemodel (4.2.4)
51
- activesupport (= 4.2.4)
52
- builder (~> 3.1)
53
- activerecord (4.2.4)
54
- activemodel (= 4.2.4)
55
- activesupport (= 4.2.4)
56
- arel (~> 6.0)
57
- activesupport (4.2.4)
58
- i18n (~> 0.7)
59
- json (~> 1.7, >= 1.7.7)
60
- minitest (~> 5.1)
61
- thread_safe (~> 0.3, >= 0.3.4)
62
- tzinfo (~> 1.1)
63
- arbre (1.0.3)
59
+ erubi (~> 1.11)
60
+ rails-dom-testing (~> 2.2)
61
+ rails-html-sanitizer (~> 1.6)
62
+ activeadmin (3.2.0)
63
+ arbre (~> 1.2, >= 1.2.1)
64
+ formtastic (>= 3.1)
65
+ formtastic_i18n (>= 0.4)
66
+ inherited_resources (~> 1.7)
67
+ jquery-rails (>= 4.2)
68
+ kaminari (>= 1.2.1)
69
+ railties (>= 6.1)
70
+ ransack (>= 4.0)
71
+ activejob (7.1.3.2)
72
+ activesupport (= 7.1.3.2)
73
+ globalid (>= 0.3.6)
74
+ activemodel (7.1.3.2)
75
+ activesupport (= 7.1.3.2)
76
+ activerecord (7.1.3.2)
77
+ activemodel (= 7.1.3.2)
78
+ activesupport (= 7.1.3.2)
79
+ timeout (>= 0.4.0)
80
+ activestorage (7.1.3.2)
81
+ actionpack (= 7.1.3.2)
82
+ activejob (= 7.1.3.2)
83
+ activerecord (= 7.1.3.2)
84
+ activesupport (= 7.1.3.2)
85
+ marcel (~> 1.0)
86
+ activesupport (7.1.3.2)
87
+ base64
88
+ bigdecimal
89
+ concurrent-ruby (~> 1.0, >= 1.0.2)
90
+ connection_pool (>= 2.2.5)
91
+ drb
92
+ i18n (>= 1.6, < 2)
93
+ minitest (>= 5.1)
94
+ mutex_m
95
+ tzinfo (~> 2.0)
96
+ arbre (1.7.0)
64
97
  activesupport (>= 3.0.0)
65
- arel (6.0.3)
66
- bcrypt (3.1.10)
67
- bourbon (4.2.6)
68
- sass (~> 3.4)
69
- thor (~> 0.19)
70
- builder (3.2.2)
71
- coffee-rails (4.1.0)
72
- coffee-script (>= 2.2.0)
73
- railties (>= 4.0.0, < 5.0)
74
- coffee-script (2.4.1)
75
- coffee-script-source
76
- execjs
77
- coffee-script-source (1.9.1.1)
78
- coveralls (0.8.9)
79
- json (~> 1.8)
80
- rest-client (>= 1.6.8, < 2)
81
- simplecov (~> 0.10.0)
82
- term-ansicolor (~> 1.3)
83
- thor (~> 0.19.1)
84
- tins (~> 1.6.0)
85
- devise (3.5.2)
98
+ ruby2_keywords (>= 0.0.2)
99
+ base64 (0.2.0)
100
+ bcrypt (3.1.20)
101
+ bigdecimal (3.1.7)
102
+ builder (3.2.4)
103
+ concurrent-ruby (1.2.3)
104
+ connection_pool (2.4.1)
105
+ coveralls (0.7.1)
106
+ multi_json (~> 1.3)
107
+ rest-client
108
+ simplecov (>= 0.7)
109
+ term-ansicolor
110
+ thor
111
+ crass (1.0.6)
112
+ date (3.3.4)
113
+ devise (4.9.3)
86
114
  bcrypt (~> 3.0)
87
115
  orm_adapter (~> 0.1)
88
- railties (>= 3.2.6, < 5)
116
+ railties (>= 4.1.0)
89
117
  responders
90
- thread_safe (~> 0.1)
91
118
  warden (~> 1.2.3)
92
- devise-async (0.10.1)
93
- devise (~> 3.2)
94
- diff-lcs (1.2.5)
95
- docile (1.1.5)
96
- domain_name (0.5.20160310)
97
- unf (>= 0.0.5, < 1.0.0)
98
- erubis (2.7.0)
99
- execjs (2.6.0)
100
- formtastic (3.1.3)
101
- actionpack (>= 3.2.13)
102
- formtastic_i18n (0.4.1)
103
- globalid (0.3.6)
104
- activesupport (>= 4.1.0)
105
- has_scope (0.6.0)
106
- actionpack (>= 3.2, < 5)
107
- activesupport (>= 3.2, < 5)
108
- http-cookie (1.0.2)
119
+ devise-async (1.0.0)
120
+ activejob (>= 5.0)
121
+ devise (>= 4.0)
122
+ diff-lcs (1.5.1)
123
+ docile (1.4.0)
124
+ domain_name (0.6.20240107)
125
+ drb (2.2.1)
126
+ erubi (1.12.0)
127
+ ffi (1.16.3)
128
+ formtastic (5.0.0)
129
+ actionpack (>= 6.0.0)
130
+ formtastic_i18n (0.7.0)
131
+ globalid (1.2.1)
132
+ activesupport (>= 6.1)
133
+ has_scope (0.8.2)
134
+ actionpack (>= 5.2)
135
+ activesupport (>= 5.2)
136
+ http-accept (1.7.0)
137
+ http-cookie (1.0.5)
109
138
  domain_name (~> 0.5)
110
- i18n (0.7.0)
111
- inherited_resources (1.6.0)
112
- actionpack (>= 3.2, < 5)
113
- has_scope (~> 0.6.0.rc)
114
- railties (>= 3.2, < 5)
115
- responders
116
- jquery-rails (4.0.5)
117
- rails-dom-testing (~> 1.0)
139
+ i18n (1.14.4)
140
+ concurrent-ruby (~> 1.0)
141
+ inherited_resources (1.14.0)
142
+ actionpack (>= 6.0)
143
+ has_scope (>= 0.6)
144
+ railties (>= 6.0)
145
+ responders (>= 2)
146
+ io-console (0.7.2)
147
+ irb (1.12.0)
148
+ rdoc
149
+ reline (>= 0.4.2)
150
+ jquery-rails (4.6.0)
151
+ rails-dom-testing (>= 1, < 3)
118
152
  railties (>= 4.2.0)
119
153
  thor (>= 0.14, < 2.0)
120
- jquery-ui-rails (5.0.5)
121
- railties (>= 3.2.16)
122
- json (1.8.3)
123
- kaminari (0.16.3)
124
- actionpack (>= 3.0.0)
125
- activesupport (>= 3.0.0)
126
- loofah (2.0.3)
127
- nokogiri (>= 1.5.9)
128
- machinist (2.0)
129
- mail (2.6.3)
130
- mime-types (>= 1.16, < 3)
131
- mime-types (2.6.2)
132
- mini_portile (0.6.2)
133
- minitest (5.8.2)
154
+ kaminari (1.2.2)
155
+ activesupport (>= 4.1.0)
156
+ kaminari-actionview (= 1.2.2)
157
+ kaminari-activerecord (= 1.2.2)
158
+ kaminari-core (= 1.2.2)
159
+ kaminari-actionview (1.2.2)
160
+ actionview
161
+ kaminari-core (= 1.2.2)
162
+ kaminari-activerecord (1.2.2)
163
+ activerecord
164
+ kaminari-core (= 1.2.2)
165
+ kaminari-core (1.2.2)
166
+ loofah (2.22.0)
167
+ crass (~> 1.0.2)
168
+ nokogiri (>= 1.12.0)
169
+ machinist_redux (3.0.4)
170
+ mail (2.8.1)
171
+ mini_mime (>= 0.1.1)
172
+ net-imap
173
+ net-pop
174
+ net-smtp
175
+ marcel (1.0.4)
176
+ mime-types (3.5.2)
177
+ mime-types-data (~> 3.2015)
178
+ mime-types-data (3.2024.0305)
179
+ mini_mime (1.1.5)
180
+ mini_portile2 (2.8.5)
181
+ minitest (5.22.3)
182
+ multi_json (1.15.0)
183
+ mutex_m (0.2.0)
184
+ net-imap (0.4.10)
185
+ date
186
+ net-protocol
187
+ net-pop (0.1.2)
188
+ net-protocol
189
+ net-protocol (0.2.2)
190
+ timeout
191
+ net-smtp (0.4.0.1)
192
+ net-protocol
134
193
  netrc (0.11.0)
135
- nokogiri (1.6.6.2)
136
- mini_portile (~> 0.6.0)
194
+ nio4r (2.7.1)
195
+ nokogiri (1.15.6-arm64-darwin)
196
+ racc (~> 1.4)
137
197
  orm_adapter (0.5.0)
138
- polyamorous (1.2.0)
139
- activerecord (>= 3.0)
140
- rack (1.6.4)
141
- rack-test (0.6.3)
142
- rack (>= 1.0)
143
- rails (4.2.4)
144
- actionmailer (= 4.2.4)
145
- actionpack (= 4.2.4)
146
- actionview (= 4.2.4)
147
- activejob (= 4.2.4)
148
- activemodel (= 4.2.4)
149
- activerecord (= 4.2.4)
150
- activesupport (= 4.2.4)
151
- bundler (>= 1.3.0, < 2.0)
152
- railties (= 4.2.4)
153
- sprockets-rails
154
- rails-deprecated_sanitizer (1.0.3)
155
- activesupport (>= 4.2.0.alpha)
156
- rails-dom-testing (1.0.7)
157
- activesupport (>= 4.2.0.beta, < 5.0)
158
- nokogiri (~> 1.6.0)
159
- rails-deprecated_sanitizer (>= 1.0.1)
160
- rails-html-sanitizer (1.0.2)
161
- loofah (~> 2.0)
162
- railties (4.2.4)
163
- actionpack (= 4.2.4)
164
- activesupport (= 4.2.4)
165
- rake (>= 0.8.7)
166
- thor (>= 0.18.1, < 2.0)
167
- rake (10.4.2)
168
- ransack (1.7.0)
169
- actionpack (>= 3.0)
170
- activerecord (>= 3.0)
171
- activesupport (>= 3.0)
198
+ psych (5.1.2)
199
+ stringio
200
+ racc (1.7.3)
201
+ rack (3.0.10)
202
+ rack-session (2.0.0)
203
+ rack (>= 3.0.0)
204
+ rack-test (2.1.0)
205
+ rack (>= 1.3)
206
+ rackup (2.1.0)
207
+ rack (>= 3)
208
+ webrick (~> 1.8)
209
+ rails (7.1.3.2)
210
+ actioncable (= 7.1.3.2)
211
+ actionmailbox (= 7.1.3.2)
212
+ actionmailer (= 7.1.3.2)
213
+ actionpack (= 7.1.3.2)
214
+ actiontext (= 7.1.3.2)
215
+ actionview (= 7.1.3.2)
216
+ activejob (= 7.1.3.2)
217
+ activemodel (= 7.1.3.2)
218
+ activerecord (= 7.1.3.2)
219
+ activestorage (= 7.1.3.2)
220
+ activesupport (= 7.1.3.2)
221
+ bundler (>= 1.15.0)
222
+ railties (= 7.1.3.2)
223
+ rails-controller-testing (1.0.5)
224
+ actionpack (>= 5.0.1.rc1)
225
+ actionview (>= 5.0.1.rc1)
226
+ activesupport (>= 5.0.1.rc1)
227
+ rails-dom-testing (2.2.0)
228
+ activesupport (>= 5.0.0)
229
+ minitest
230
+ nokogiri (>= 1.6)
231
+ rails-html-sanitizer (1.6.0)
232
+ loofah (~> 2.21)
233
+ nokogiri (~> 1.14)
234
+ railties (7.1.3.2)
235
+ actionpack (= 7.1.3.2)
236
+ activesupport (= 7.1.3.2)
237
+ irb
238
+ rackup (>= 1.0.0)
239
+ rake (>= 12.2)
240
+ thor (~> 1.0, >= 1.2.2)
241
+ zeitwerk (~> 2.6)
242
+ rake (13.1.0)
243
+ ransack (4.0.0)
244
+ activerecord (>= 6.1.5)
245
+ activesupport (>= 6.1.5)
172
246
  i18n
173
- polyamorous (~> 1.2)
174
- responders (2.1.0)
175
- railties (>= 4.2.0, < 5)
176
- rest-client (1.8.0)
247
+ rb-fsevent (0.11.2)
248
+ rb-inotify (0.10.1)
249
+ ffi (~> 1.0)
250
+ rdoc (6.6.3.1)
251
+ psych (>= 4.0.0)
252
+ reline (0.4.3)
253
+ io-console (~> 0.5)
254
+ responders (3.1.1)
255
+ actionpack (>= 5.2)
256
+ railties (>= 5.2)
257
+ rest-client (2.1.0)
258
+ http-accept (>= 1.7.0, < 2.0)
177
259
  http-cookie (>= 1.0.2, < 2.0)
178
- mime-types (>= 1.16, < 3.0)
179
- netrc (~> 0.7)
180
- rspec-core (3.3.2)
181
- rspec-support (~> 3.3.0)
182
- rspec-expectations (3.3.1)
260
+ mime-types (>= 1.16, < 4.0)
261
+ netrc (~> 0.8)
262
+ rspec-core (3.13.0)
263
+ rspec-support (~> 3.13.0)
264
+ rspec-expectations (3.13.0)
183
265
  diff-lcs (>= 1.2.0, < 2.0)
184
- rspec-support (~> 3.3.0)
185
- rspec-mocks (3.3.2)
266
+ rspec-support (~> 3.13.0)
267
+ rspec-mocks (3.13.0)
186
268
  diff-lcs (>= 1.2.0, < 2.0)
187
- rspec-support (~> 3.3.0)
188
- rspec-rails (3.3.3)
189
- actionpack (>= 3.0, < 4.3)
190
- activesupport (>= 3.0, < 4.3)
191
- railties (>= 3.0, < 4.3)
192
- rspec-core (~> 3.3.0)
193
- rspec-expectations (~> 3.3.0)
194
- rspec-mocks (~> 3.3.0)
195
- rspec-support (~> 3.3.0)
196
- rspec-support (3.3.0)
269
+ rspec-support (~> 3.13.0)
270
+ rspec-rails (6.1.2)
271
+ actionpack (>= 6.1)
272
+ activesupport (>= 6.1)
273
+ railties (>= 6.1)
274
+ rspec-core (~> 3.13)
275
+ rspec-expectations (~> 3.13)
276
+ rspec-mocks (~> 3.13)
277
+ rspec-support (~> 3.13)
278
+ rspec-support (3.13.1)
279
+ ruby2_keywords (0.0.5)
197
280
  rufus-mnemo (1.2.3)
198
- sass (3.4.19)
199
- sass-rails (5.0.4)
200
- railties (>= 4.0.0, < 5.0)
201
- sass (~> 3.1)
202
- sprockets (>= 2.8, < 4.0)
203
- sprockets-rails (>= 2.0, < 4.0)
204
- tilt (>= 1.1, < 3)
205
- simplecov (0.10.0)
206
- docile (~> 1.1.0)
207
- json (~> 1.8)
208
- simplecov-html (~> 0.10.0)
209
- simplecov-html (0.10.0)
210
- sprockets (3.4.0)
211
- rack (> 1, < 3)
212
- sprockets-rails (2.3.3)
213
- actionpack (>= 3.0)
214
- activesupport (>= 3.0)
215
- sprockets (>= 2.8, < 4.0)
216
- sqlite3 (1.3.11)
217
- term-ansicolor (1.3.2)
281
+ sass (3.7.4)
282
+ sass-listen (~> 4.0.0)
283
+ sass-listen (4.0.0)
284
+ rb-fsevent (~> 0.9, >= 0.9.4)
285
+ rb-inotify (~> 0.9, >= 0.9.7)
286
+ sass-rails (6.0.0)
287
+ sassc-rails (~> 2.1, >= 2.1.1)
288
+ sassc (2.4.0)
289
+ ffi (~> 1.9)
290
+ sassc-rails (2.1.2)
291
+ railties (>= 4.0.0)
292
+ sassc (>= 2.0)
293
+ sprockets (> 3.0)
294
+ sprockets-rails
295
+ tilt
296
+ simplecov (0.22.0)
297
+ docile (~> 1.1)
298
+ simplecov-html (~> 0.11)
299
+ simplecov_json_formatter (~> 0.1)
300
+ simplecov-html (0.12.3)
301
+ simplecov_json_formatter (0.1.4)
302
+ sprockets (4.2.1)
303
+ concurrent-ruby (~> 1.0)
304
+ rack (>= 2.2.4, < 4)
305
+ sprockets-rails (3.4.2)
306
+ actionpack (>= 5.2)
307
+ activesupport (>= 5.2)
308
+ sprockets (>= 3.0.0)
309
+ sqlite3 (1.7.3)
310
+ mini_portile2 (~> 2.8.0)
311
+ stringio (3.1.0)
312
+ sync (0.5.0)
313
+ term-ansicolor (1.7.2)
218
314
  tins (~> 1.0)
219
- thor (0.19.1)
220
- thread_safe (0.3.5)
221
- tilt (2.0.1)
222
- tins (1.6.0)
223
- tzinfo (1.2.2)
224
- thread_safe (~> 0.1)
225
- unf (0.1.4)
226
- unf_ext
227
- unf_ext (0.0.7.2)
228
- warden (1.2.3)
229
- rack (>= 1.0)
315
+ thor (1.3.1)
316
+ tilt (2.3.0)
317
+ timeout (0.4.1)
318
+ tins (1.32.1)
319
+ sync
320
+ tzinfo (2.0.6)
321
+ concurrent-ruby (~> 1.0)
322
+ warden (1.2.9)
323
+ rack (>= 2.0.9)
324
+ webrick (1.8.1)
325
+ websocket-driver (0.7.6)
326
+ websocket-extensions (>= 0.1.0)
327
+ websocket-extensions (0.1.5)
328
+ zeitwerk (2.6.13)
230
329
 
231
330
  PLATFORMS
232
- ruby
331
+ arm64-darwin-22
233
332
 
234
333
  DEPENDENCIES
235
- activeadmin!
236
334
  coveralls
237
335
  devise
238
336
  devise-async
239
337
  introspective_admin!
240
- machinist
241
- rspec-rails (>= 3.0)
338
+ machinist_redux
339
+ rails-controller-testing
340
+ rspec-rails
242
341
  rufus-mnemo
243
342
  simplecov
343
+ sprockets-rails
244
344
  sqlite3
245
345
 
246
346
  BUNDLED WITH
247
- 1.11.2
347
+ 2.2.30