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.
- checksums.yaml +5 -5
- data/.DS_Store +0 -0
- data/.ruby-version +1 -0
- data/.travis.yml +9 -11
- data/CHANGELOG.md +22 -0
- data/Gemfile +10 -1
- data/Gemfile.lock +308 -208
- data/README.md +34 -8
- data/introspective_admin.gemspec +4 -11
- data/lib/introspective_admin/base.rb +17 -17
- data/lib/introspective_admin/version.rb +1 -1
- data/spec/admin/company_admin_spec.rb +6 -6
- data/spec/admin/job_admin_spec.rb +4 -4
- data/spec/admin/location_admin_spec.rb +4 -4
- data/spec/admin/location_beacon_admin_spec.rb +5 -5
- data/spec/admin/project__admin_spec.rb +5 -5
- data/spec/admin/user_admin_spec.rb +4 -4
- data/spec/dummy/Gemfile +15 -0
- data/spec/dummy/app/admin/admin_users.rb +28 -0
- data/spec/dummy/app/admin/dashboard.rb +32 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/active_admin.js +1 -0
- data/spec/dummy/app/assets/stylesheets/active_admin.scss +17 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +1 -0
- data/spec/dummy/app/models/abstract_adapter.rb +8 -2
- data/spec/dummy/app/models/admin_user.rb +4 -0
- data/spec/dummy/app/models/role.rb +1 -1
- data/spec/dummy/app/models/user.rb +2 -2
- data/spec/dummy/app/views/layouts/application.html.erb +1 -1
- data/spec/dummy/config/application.rb +4 -2
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/dummy/config/environments/development.rb +5 -1
- data/spec/dummy/config/environments/production.rb +6 -3
- data/spec/dummy/config/environments/test.rb +9 -2
- data/spec/dummy/config/initializers/assets.rb +3 -1
- data/spec/dummy/config/initializers/zeitwerk.rb +8 -0
- data/spec/dummy/config/routes.rb +1 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/development.sqlite3-shm +0 -0
- data/spec/dummy/db/development.sqlite3-wal +0 -0
- data/spec/dummy/db/migrate/20220806003731_add_devise_to_admin_users.rb +51 -0
- data/spec/dummy/introspective_admin.gemspec +34 -0
- data/spec/rails_helper.rb +5 -2
- metadata +39 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f2ef081e300f45c9ad80bc402f7b86c473389f3544731184b242c9e0c79af50f
|
4
|
+
data.tar.gz: 607567fade9477151ce25365cb42fb58da604a0c75e58b9d03d414a98c4416c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
-
|
10
|
-
-
|
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=
|
26
|
-
- RAILS=
|
27
|
-
- RAILS=
|
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
|
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
|
-
|
29
|
-
actionpack (=
|
30
|
-
|
31
|
-
|
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
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
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
|
-
|
45
|
-
rails-dom-testing (~>
|
46
|
-
rails-html-sanitizer (~> 1.
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
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
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
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 (>=
|
116
|
+
railties (>= 4.1.0)
|
89
117
|
responders
|
90
|
-
thread_safe (~> 0.1)
|
91
118
|
warden (~> 1.2.3)
|
92
|
-
devise-async (0.
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
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 (
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
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
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
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
|
-
|
136
|
-
|
194
|
+
nio4r (2.7.1)
|
195
|
+
nokogiri (1.15.6-arm64-darwin)
|
196
|
+
racc (~> 1.4)
|
137
197
|
orm_adapter (0.5.0)
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
rack
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
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
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
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, <
|
179
|
-
netrc (~> 0.
|
180
|
-
rspec-core (3.
|
181
|
-
rspec-support (~> 3.
|
182
|
-
rspec-expectations (3.
|
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.
|
185
|
-
rspec-mocks (3.
|
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.
|
188
|
-
rspec-rails (
|
189
|
-
actionpack (>=
|
190
|
-
activesupport (>=
|
191
|
-
railties (>=
|
192
|
-
rspec-core (~> 3.
|
193
|
-
rspec-expectations (~> 3.
|
194
|
-
rspec-mocks (~> 3.
|
195
|
-
rspec-support (~> 3.
|
196
|
-
rspec-support (3.
|
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
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
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 (
|
220
|
-
|
221
|
-
|
222
|
-
tins (1.
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
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
|
-
|
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
|
-
|
241
|
-
|
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
|
-
|
347
|
+
2.2.30
|