introspective_admin 0.9.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.DS_Store +0 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +75 -0
- data/.ruby-version +1 -1
- data/Gemfile +20 -11
- data/Gemfile.lock +190 -135
- data/Rakefile +3 -5
- data/introspective_admin.gemspec +16 -21
- data/lib/introspective_admin/base.rb +64 -47
- data/lib/introspective_admin/version.rb +3 -1
- data/lib/introspective_admin.rb +2 -0
- data/lib/tasks/introspective_admin_tasks.rake +2 -0
- data/spec/admin/company_admin_spec.rb +24 -23
- data/spec/admin/job_admin_spec.rb +21 -19
- data/spec/admin/location_admin_spec.rb +27 -23
- data/spec/admin/location_beacon_admin_spec.rb +26 -24
- data/spec/admin/project__admin_spec.rb +26 -24
- data/spec/admin/user_admin_spec.rb +25 -24
- data/spec/dummy/Gemfile +6 -4
- data/spec/dummy/Rakefile +3 -1
- data/spec/dummy/app/admin/admin_users.rb +2 -1
- data/spec/dummy/app/admin/company_admin.rb +4 -3
- data/spec/dummy/app/admin/dashboard.rb +10 -8
- data/spec/dummy/app/admin/job_admin.rb +3 -2
- data/spec/dummy/app/admin/location_admin.rb +3 -2
- data/spec/dummy/app/admin/location_beacon_admin.rb +2 -0
- data/spec/dummy/app/admin/project_admin.rb +3 -4
- data/spec/dummy/app/admin/role_admin.rb +3 -3
- data/spec/dummy/app/admin/user_admin.rb +5 -5
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -1
- data/spec/dummy/app/models/abstract_adapter.rb +10 -8
- data/spec/dummy/app/models/admin_user.rb +4 -2
- data/spec/dummy/app/models/company.rb +3 -2
- data/spec/dummy/app/models/job.rb +3 -3
- data/spec/dummy/app/models/locatable.rb +3 -1
- data/spec/dummy/app/models/location.rb +4 -3
- data/spec/dummy/app/models/location_beacon.rb +5 -5
- data/spec/dummy/app/models/location_gps.rb +2 -2
- data/spec/dummy/app/models/project.rb +6 -6
- data/spec/dummy/app/models/project_job.rb +2 -1
- data/spec/dummy/app/models/role.rb +8 -7
- data/spec/dummy/app/models/team.rb +2 -1
- data/spec/dummy/app/models/team_user.rb +5 -4
- data/spec/dummy/app/models/user.rb +22 -18
- data/spec/dummy/app/models/user_location.rb +14 -14
- data/spec/dummy/app/models/user_project_job.rb +4 -3
- data/spec/dummy/bin/bundle +3 -1
- data/spec/dummy/bin/rails +3 -1
- data/spec/dummy/bin/rake +2 -0
- data/spec/dummy/bin/setup +10 -8
- data/spec/dummy/config/application.rb +12 -11
- data/spec/dummy/config/boot.rb +4 -2
- data/spec/dummy/config/environment.rb +6 -5
- data/spec/dummy/config/environments/development.rb +3 -1
- data/spec/dummy/config/environments/production.rb +4 -3
- data/spec/dummy/config/environments/test.rb +5 -5
- data/spec/dummy/config/initializers/active_admin.rb +5 -4
- data/spec/dummy/config/initializers/assets.rb +3 -1
- data/spec/dummy/config/initializers/backtrace_silencers.rb +2 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/spec/dummy/config/initializers/devise.rb +2 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +2 -0
- data/spec/dummy/config/initializers/inflections.rb +2 -0
- data/spec/dummy/config/initializers/mime_types.rb +2 -0
- data/spec/dummy/config/initializers/session_store.rb +2 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +2 -0
- data/spec/dummy/config/initializers/zeitwerk.rb +6 -4
- data/spec/dummy/config/routes.rb +5 -3
- data/spec/dummy/config.ru +3 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20141002205024_devise_create_users.rb +4 -3
- data/spec/dummy/db/migrate/20141002211055_devise_create_admin_users.rb +4 -3
- data/spec/dummy/db/migrate/20141002211057_create_active_admin_comments.rb +4 -2
- data/spec/dummy/db/migrate/20141002220722_add_lockable_to_users.rb +2 -0
- data/spec/dummy/db/migrate/20150406213646_create_companies.rb +2 -0
- data/spec/dummy/db/migrate/20150414213154_add_user_authentication_token.rb +4 -2
- data/spec/dummy/db/migrate/20150415222005_create_roles.rb +3 -2
- data/spec/dummy/db/migrate/20150505181635_create_chats.rb +2 -0
- data/spec/dummy/db/migrate/20150505181636_create_chat_users.rb +2 -0
- data/spec/dummy/db/migrate/20150505181640_create_chat_messages.rb +2 -0
- data/spec/dummy/db/migrate/20150507191529_create_chat_message_users.rb +2 -0
- data/spec/dummy/db/migrate/20150601200526_create_locations.rb +3 -1
- data/spec/dummy/db/migrate/20150601200533_create_locatables.rb +2 -0
- data/spec/dummy/db/migrate/20150601212924_create_location_beacons.rb +4 -2
- data/spec/dummy/db/migrate/20150601213542_create_location_gps.rb +2 -0
- data/spec/dummy/db/migrate/20150609201823_create_user_locations.rb +2 -0
- data/spec/dummy/db/migrate/20150617232519_create_projects.rb +2 -0
- data/spec/dummy/db/migrate/20150617232521_create_jobs.rb +2 -0
- data/spec/dummy/db/migrate/20150617232522_create_project_jobs.rb +3 -1
- data/spec/dummy/db/migrate/20150623170133_create_user_project_jobs.rb +3 -1
- data/spec/dummy/db/migrate/20150701234929_create_teams.rb +2 -0
- data/spec/dummy/db/migrate/20150701234930_create_team_users.rb +3 -1
- data/spec/dummy/db/migrate/20150727214950_add_confirmable_to_devise.rb +4 -2
- data/spec/dummy/db/migrate/20150820190524_add_user_names.rb +4 -2
- data/spec/dummy/db/migrate/20150909225019_add_password_to_project.rb +2 -0
- data/spec/dummy/db/migrate/20220806003731_add_devise_to_admin_users.rb +2 -3
- data/spec/dummy/db/schema.rb +197 -198
- data/spec/rails_helper.rb +17 -11
- data/spec/support/blueprints.rb +50 -49
- data/spec/support/location_helper.rb +28 -29
- metadata +13 -153
- data/spec/dummy/db/development.sqlite3-shm +0 -0
- data/spec/dummy/db/development.sqlite3-wal +0 -0
- data/spec/dummy/introspective_admin.gemspec +0 -34
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c472f7c6fab2504d2f5bcb46ba1013211bc50e3d59e525c3d0db1a8a33b6d953
|
|
4
|
+
data.tar.gz: 0f6e504630a6bcf0b28dd0ac9e844a45795e2dba0e84e1b40b636e37313a7165
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56b0cd70ef71aa2d2253fdfe143c2bbe5331153e44db0c8279595e0d004aedc58b9351a3f25ec8335fbb358b7bb32500bb11b182aab914c2519a510c521092dd
|
|
7
|
+
data.tar.gz: fbb5a40fa97d28db22ebbff78c50465a129b686391a5692a620109311bc0703d55e1e3ee666de99b3378ad99e99c95e910e112a634af9196be9e2eb77e75eb66
|
data/.DS_Store
CHANGED
|
Binary file
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
AllCops:
|
|
2
|
+
# TargetRubyVersion: 3.3.1
|
|
3
|
+
NewCops: enable
|
|
4
|
+
Exclude:
|
|
5
|
+
- 'db/**/*'
|
|
6
|
+
- 'bin/*'
|
|
7
|
+
- 'vendor/**/*'
|
|
8
|
+
|
|
9
|
+
Gemspec/OrderedDependencies:
|
|
10
|
+
Enabled: false # grouping en suite gems is fine too
|
|
11
|
+
|
|
12
|
+
Metrics/BlockLength:
|
|
13
|
+
CountAsOne: ['array', 'heredoc']
|
|
14
|
+
Max: 30
|
|
15
|
+
Exclude: # The DSLs expect large declarative blocks
|
|
16
|
+
- config/environments/*
|
|
17
|
+
- app/api/**/*
|
|
18
|
+
- lib/tasks/**/*.rake
|
|
19
|
+
- spec/**/*
|
|
20
|
+
|
|
21
|
+
Metrics/MethodLength:
|
|
22
|
+
CountAsOne: ['array', 'heredoc']
|
|
23
|
+
Max: 30
|
|
24
|
+
Exclude:
|
|
25
|
+
- spec/**/*
|
|
26
|
+
|
|
27
|
+
Metrics/ClassLength:
|
|
28
|
+
Max: 180
|
|
29
|
+
|
|
30
|
+
Metrics/AbcSize:
|
|
31
|
+
Max: 20
|
|
32
|
+
|
|
33
|
+
Metrics/PerceivedComplexity:
|
|
34
|
+
Max: 12
|
|
35
|
+
|
|
36
|
+
Metrics/CyclomaticComplexity:
|
|
37
|
+
Max: 12
|
|
38
|
+
|
|
39
|
+
Layout/LineLength:
|
|
40
|
+
Enabled: false
|
|
41
|
+
|
|
42
|
+
Layout/ExtraSpacing:
|
|
43
|
+
AllowForAlignment: true
|
|
44
|
+
|
|
45
|
+
Layout/FirstHashElementIndentation:
|
|
46
|
+
EnforcedStyle: consistent
|
|
47
|
+
|
|
48
|
+
Layout/HashAlignment:
|
|
49
|
+
EnforcedHashRocketStyle: table
|
|
50
|
+
EnforcedColonStyle: table
|
|
51
|
+
|
|
52
|
+
Layout/MultilineOperationIndentation:
|
|
53
|
+
EnforcedStyle: indented
|
|
54
|
+
|
|
55
|
+
Layout/MultilineMethodCallIndentation:
|
|
56
|
+
EnforcedStyle: indented_relative_to_receiver
|
|
57
|
+
|
|
58
|
+
Style/BlockDelimiters:
|
|
59
|
+
EnforcedStyle: braces_for_chaining
|
|
60
|
+
|
|
61
|
+
Style/Documentation:
|
|
62
|
+
Enabled: false
|
|
63
|
+
|
|
64
|
+
Style/MultilineBlockChain:
|
|
65
|
+
Enabled: false
|
|
66
|
+
|
|
67
|
+
Style/OpenStructUse:
|
|
68
|
+
Exclude:
|
|
69
|
+
- spec/**/*
|
|
70
|
+
|
|
71
|
+
Style/ParallelAssignment:
|
|
72
|
+
Enabled: false
|
|
73
|
+
|
|
74
|
+
Style/RedundantBegin:
|
|
75
|
+
Enabled: false
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.3.1
|
data/Gemfile
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# A sample Gemfile
|
|
2
|
-
source
|
|
4
|
+
source 'https://rubygems.org'
|
|
3
5
|
|
|
4
6
|
gemspec
|
|
5
|
-
gem '
|
|
6
|
-
gem '
|
|
7
|
-
gem '
|
|
8
|
-
gem '
|
|
9
|
-
gem '
|
|
10
|
-
gem "rspec-rails"
|
|
11
|
-
gem 'rufus-mnemo'
|
|
12
|
-
gem 'simplecov'
|
|
13
|
-
gem 'sprockets-rails'
|
|
14
|
-
|
|
7
|
+
gem 'activeadmin'
|
|
8
|
+
gem 'rails', '~> 8'
|
|
9
|
+
gem 'sass'
|
|
10
|
+
gem 'sass-rails'
|
|
11
|
+
gem 'sqlite3', '2.7.3'
|
|
15
12
|
|
|
13
|
+
group :development, :test do
|
|
14
|
+
gem 'byebug'
|
|
15
|
+
gem 'coveralls', require: false
|
|
16
|
+
gem 'devise', github: 'heartcombo/devise', branch: 'main'
|
|
17
|
+
gem 'devise-async'
|
|
18
|
+
gem 'machinist_redux'
|
|
19
|
+
gem 'rails-controller-testing'
|
|
20
|
+
gem 'rspec-rails'
|
|
21
|
+
gem 'rubocop'
|
|
22
|
+
gem 'rufus-mnemo'
|
|
23
|
+
gem 'simplecov'
|
|
24
|
+
end
|
data/Gemfile.lock
CHANGED
|
@@ -1,66 +1,75 @@
|
|
|
1
|
+
GIT
|
|
2
|
+
remote: https://github.com/heartcombo/devise.git
|
|
3
|
+
revision: c8a64b549c8b37e494eaca7be2def136a7e1b236
|
|
4
|
+
branch: main
|
|
5
|
+
specs:
|
|
6
|
+
devise (5.0.0.beta)
|
|
7
|
+
bcrypt (~> 3.0)
|
|
8
|
+
orm_adapter (~> 0.1)
|
|
9
|
+
railties (>= 6.0.0)
|
|
10
|
+
responders
|
|
11
|
+
warden (~> 1.2.3)
|
|
12
|
+
|
|
1
13
|
PATH
|
|
2
14
|
remote: .
|
|
3
15
|
specs:
|
|
4
|
-
introspective_admin (0.
|
|
16
|
+
introspective_admin (1.0.0)
|
|
5
17
|
activeadmin
|
|
6
|
-
rails
|
|
7
18
|
sass
|
|
8
19
|
sass-rails
|
|
9
20
|
|
|
10
21
|
GEM
|
|
11
22
|
remote: https://rubygems.org/
|
|
12
23
|
specs:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
24
|
+
action_text-trix (2.1.15)
|
|
25
|
+
railties
|
|
26
|
+
actioncable (8.1.1)
|
|
27
|
+
actionpack (= 8.1.1)
|
|
28
|
+
activesupport (= 8.1.1)
|
|
16
29
|
nio4r (~> 2.0)
|
|
17
30
|
websocket-driver (>= 0.6.1)
|
|
18
31
|
zeitwerk (~> 2.6)
|
|
19
|
-
actionmailbox (
|
|
20
|
-
actionpack (=
|
|
21
|
-
activejob (=
|
|
22
|
-
activerecord (=
|
|
23
|
-
activestorage (=
|
|
24
|
-
activesupport (=
|
|
25
|
-
mail (>= 2.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
activejob (= 7.1.3.2)
|
|
33
|
-
activesupport (= 7.1.3.2)
|
|
34
|
-
mail (~> 2.5, >= 2.5.4)
|
|
35
|
-
net-imap
|
|
36
|
-
net-pop
|
|
37
|
-
net-smtp
|
|
32
|
+
actionmailbox (8.1.1)
|
|
33
|
+
actionpack (= 8.1.1)
|
|
34
|
+
activejob (= 8.1.1)
|
|
35
|
+
activerecord (= 8.1.1)
|
|
36
|
+
activestorage (= 8.1.1)
|
|
37
|
+
activesupport (= 8.1.1)
|
|
38
|
+
mail (>= 2.8.0)
|
|
39
|
+
actionmailer (8.1.1)
|
|
40
|
+
actionpack (= 8.1.1)
|
|
41
|
+
actionview (= 8.1.1)
|
|
42
|
+
activejob (= 8.1.1)
|
|
43
|
+
activesupport (= 8.1.1)
|
|
44
|
+
mail (>= 2.8.0)
|
|
38
45
|
rails-dom-testing (~> 2.2)
|
|
39
|
-
actionpack (
|
|
40
|
-
actionview (=
|
|
41
|
-
activesupport (=
|
|
46
|
+
actionpack (8.1.1)
|
|
47
|
+
actionview (= 8.1.1)
|
|
48
|
+
activesupport (= 8.1.1)
|
|
42
49
|
nokogiri (>= 1.8.5)
|
|
43
|
-
racc
|
|
44
50
|
rack (>= 2.2.4)
|
|
45
51
|
rack-session (>= 1.0.1)
|
|
46
52
|
rack-test (>= 0.6.3)
|
|
47
53
|
rails-dom-testing (~> 2.2)
|
|
48
54
|
rails-html-sanitizer (~> 1.6)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
55
|
+
useragent (~> 0.16)
|
|
56
|
+
actiontext (8.1.1)
|
|
57
|
+
action_text-trix (~> 2.1.15)
|
|
58
|
+
actionpack (= 8.1.1)
|
|
59
|
+
activerecord (= 8.1.1)
|
|
60
|
+
activestorage (= 8.1.1)
|
|
61
|
+
activesupport (= 8.1.1)
|
|
54
62
|
globalid (>= 0.6.0)
|
|
55
63
|
nokogiri (>= 1.8.5)
|
|
56
|
-
actionview (
|
|
57
|
-
activesupport (=
|
|
64
|
+
actionview (8.1.1)
|
|
65
|
+
activesupport (= 8.1.1)
|
|
58
66
|
builder (~> 3.1)
|
|
59
67
|
erubi (~> 1.11)
|
|
60
68
|
rails-dom-testing (~> 2.2)
|
|
61
69
|
rails-html-sanitizer (~> 1.6)
|
|
62
|
-
activeadmin (3.
|
|
70
|
+
activeadmin (3.4.0)
|
|
63
71
|
arbre (~> 1.2, >= 1.2.1)
|
|
72
|
+
csv
|
|
64
73
|
formtastic (>= 3.1)
|
|
65
74
|
formtastic_i18n (>= 0.4)
|
|
66
75
|
inherited_resources (~> 1.7)
|
|
@@ -68,40 +77,45 @@ GEM
|
|
|
68
77
|
kaminari (>= 1.2.1)
|
|
69
78
|
railties (>= 6.1)
|
|
70
79
|
ransack (>= 4.0)
|
|
71
|
-
activejob (
|
|
72
|
-
activesupport (=
|
|
80
|
+
activejob (8.1.1)
|
|
81
|
+
activesupport (= 8.1.1)
|
|
73
82
|
globalid (>= 0.3.6)
|
|
74
|
-
activemodel (
|
|
75
|
-
activesupport (=
|
|
76
|
-
activerecord (
|
|
77
|
-
activemodel (=
|
|
78
|
-
activesupport (=
|
|
83
|
+
activemodel (8.1.1)
|
|
84
|
+
activesupport (= 8.1.1)
|
|
85
|
+
activerecord (8.1.1)
|
|
86
|
+
activemodel (= 8.1.1)
|
|
87
|
+
activesupport (= 8.1.1)
|
|
79
88
|
timeout (>= 0.4.0)
|
|
80
|
-
activestorage (
|
|
81
|
-
actionpack (=
|
|
82
|
-
activejob (=
|
|
83
|
-
activerecord (=
|
|
84
|
-
activesupport (=
|
|
89
|
+
activestorage (8.1.1)
|
|
90
|
+
actionpack (= 8.1.1)
|
|
91
|
+
activejob (= 8.1.1)
|
|
92
|
+
activerecord (= 8.1.1)
|
|
93
|
+
activesupport (= 8.1.1)
|
|
85
94
|
marcel (~> 1.0)
|
|
86
|
-
activesupport (
|
|
95
|
+
activesupport (8.1.1)
|
|
87
96
|
base64
|
|
88
97
|
bigdecimal
|
|
89
|
-
concurrent-ruby (~> 1.0, >= 1.
|
|
98
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
90
99
|
connection_pool (>= 2.2.5)
|
|
91
100
|
drb
|
|
92
101
|
i18n (>= 1.6, < 2)
|
|
102
|
+
json
|
|
103
|
+
logger (>= 1.4.2)
|
|
93
104
|
minitest (>= 5.1)
|
|
94
|
-
|
|
95
|
-
tzinfo (~> 2.0)
|
|
105
|
+
securerandom (>= 0.3)
|
|
106
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
107
|
+
uri (>= 0.13.1)
|
|
96
108
|
arbre (1.7.0)
|
|
97
109
|
activesupport (>= 3.0.0)
|
|
98
110
|
ruby2_keywords (>= 0.0.2)
|
|
99
|
-
|
|
111
|
+
ast (2.4.3)
|
|
112
|
+
base64 (0.3.0)
|
|
100
113
|
bcrypt (3.1.20)
|
|
101
|
-
bigdecimal (3.1
|
|
102
|
-
builder (3.
|
|
103
|
-
|
|
104
|
-
|
|
114
|
+
bigdecimal (3.3.1)
|
|
115
|
+
builder (3.3.0)
|
|
116
|
+
byebug (12.0.0)
|
|
117
|
+
concurrent-ruby (1.3.5)
|
|
118
|
+
connection_pool (2.5.5)
|
|
105
119
|
coveralls (0.7.1)
|
|
106
120
|
multi_json (~> 1.3)
|
|
107
121
|
rest-client
|
|
@@ -109,48 +123,46 @@ GEM
|
|
|
109
123
|
term-ansicolor
|
|
110
124
|
thor
|
|
111
125
|
crass (1.0.6)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
bcrypt (~> 3.0)
|
|
115
|
-
orm_adapter (~> 0.1)
|
|
116
|
-
railties (>= 4.1.0)
|
|
117
|
-
responders
|
|
118
|
-
warden (~> 1.2.3)
|
|
126
|
+
csv (3.3.5)
|
|
127
|
+
date (3.5.0)
|
|
119
128
|
devise-async (1.0.0)
|
|
120
129
|
activejob (>= 5.0)
|
|
121
130
|
devise (>= 4.0)
|
|
122
131
|
diff-lcs (1.5.1)
|
|
123
132
|
docile (1.4.0)
|
|
124
133
|
domain_name (0.6.20240107)
|
|
125
|
-
drb (2.2.
|
|
126
|
-
|
|
127
|
-
|
|
134
|
+
drb (2.2.3)
|
|
135
|
+
erb (6.0.0)
|
|
136
|
+
erubi (1.13.1)
|
|
137
|
+
ffi (1.17.2-arm64-darwin)
|
|
128
138
|
formtastic (5.0.0)
|
|
129
139
|
actionpack (>= 6.0.0)
|
|
130
140
|
formtastic_i18n (0.7.0)
|
|
131
|
-
globalid (1.
|
|
141
|
+
globalid (1.3.0)
|
|
132
142
|
activesupport (>= 6.1)
|
|
133
|
-
has_scope (0.
|
|
134
|
-
actionpack (>=
|
|
135
|
-
activesupport (>=
|
|
143
|
+
has_scope (0.9.0)
|
|
144
|
+
actionpack (>= 7.0)
|
|
145
|
+
activesupport (>= 7.0)
|
|
136
146
|
http-accept (1.7.0)
|
|
137
147
|
http-cookie (1.0.5)
|
|
138
148
|
domain_name (~> 0.5)
|
|
139
|
-
i18n (1.14.
|
|
149
|
+
i18n (1.14.7)
|
|
140
150
|
concurrent-ruby (~> 1.0)
|
|
141
151
|
inherited_resources (1.14.0)
|
|
142
152
|
actionpack (>= 6.0)
|
|
143
153
|
has_scope (>= 0.6)
|
|
144
154
|
railties (>= 6.0)
|
|
145
155
|
responders (>= 2)
|
|
146
|
-
io-console (0.
|
|
147
|
-
irb (1.
|
|
148
|
-
|
|
156
|
+
io-console (0.8.1)
|
|
157
|
+
irb (1.15.3)
|
|
158
|
+
pp (>= 0.6.0)
|
|
159
|
+
rdoc (>= 4.0.0)
|
|
149
160
|
reline (>= 0.4.2)
|
|
150
|
-
jquery-rails (4.6.
|
|
161
|
+
jquery-rails (4.6.1)
|
|
151
162
|
rails-dom-testing (>= 1, < 3)
|
|
152
163
|
railties (>= 4.2.0)
|
|
153
164
|
thor (>= 0.14, < 2.0)
|
|
165
|
+
json (2.16.0)
|
|
154
166
|
kaminari (1.2.2)
|
|
155
167
|
activesupport (>= 4.1.0)
|
|
156
168
|
kaminari-actionview (= 1.2.2)
|
|
@@ -163,97 +175,113 @@ GEM
|
|
|
163
175
|
activerecord
|
|
164
176
|
kaminari-core (= 1.2.2)
|
|
165
177
|
kaminari-core (1.2.2)
|
|
166
|
-
|
|
178
|
+
language_server-protocol (3.17.0.5)
|
|
179
|
+
lint_roller (1.1.0)
|
|
180
|
+
logger (1.7.0)
|
|
181
|
+
loofah (2.24.1)
|
|
167
182
|
crass (~> 1.0.2)
|
|
168
183
|
nokogiri (>= 1.12.0)
|
|
169
184
|
machinist_redux (3.0.4)
|
|
170
|
-
mail (2.
|
|
185
|
+
mail (2.9.0)
|
|
186
|
+
logger
|
|
171
187
|
mini_mime (>= 0.1.1)
|
|
172
188
|
net-imap
|
|
173
189
|
net-pop
|
|
174
190
|
net-smtp
|
|
175
|
-
marcel (1.0
|
|
191
|
+
marcel (1.1.0)
|
|
176
192
|
mime-types (3.5.2)
|
|
177
193
|
mime-types-data (~> 3.2015)
|
|
178
194
|
mime-types-data (3.2024.0305)
|
|
179
195
|
mini_mime (1.1.5)
|
|
180
|
-
|
|
181
|
-
minitest (5.22.3)
|
|
196
|
+
minitest (5.26.2)
|
|
182
197
|
multi_json (1.15.0)
|
|
183
|
-
|
|
184
|
-
net-imap (0.4.10)
|
|
198
|
+
net-imap (0.5.12)
|
|
185
199
|
date
|
|
186
200
|
net-protocol
|
|
187
201
|
net-pop (0.1.2)
|
|
188
202
|
net-protocol
|
|
189
203
|
net-protocol (0.2.2)
|
|
190
204
|
timeout
|
|
191
|
-
net-smtp (0.
|
|
205
|
+
net-smtp (0.5.1)
|
|
192
206
|
net-protocol
|
|
193
207
|
netrc (0.11.0)
|
|
194
|
-
nio4r (2.7.
|
|
195
|
-
nokogiri (1.
|
|
208
|
+
nio4r (2.7.5)
|
|
209
|
+
nokogiri (1.18.10-arm64-darwin)
|
|
196
210
|
racc (~> 1.4)
|
|
197
211
|
orm_adapter (0.5.0)
|
|
198
|
-
|
|
212
|
+
parallel (1.27.0)
|
|
213
|
+
parser (3.3.10.0)
|
|
214
|
+
ast (~> 2.4.1)
|
|
215
|
+
racc
|
|
216
|
+
pp (0.6.3)
|
|
217
|
+
prettyprint
|
|
218
|
+
prettyprint (0.2.0)
|
|
219
|
+
prism (1.6.0)
|
|
220
|
+
psych (5.2.6)
|
|
221
|
+
date
|
|
199
222
|
stringio
|
|
200
|
-
racc (1.
|
|
201
|
-
rack (3.
|
|
202
|
-
rack-session (2.
|
|
223
|
+
racc (1.8.1)
|
|
224
|
+
rack (3.2.4)
|
|
225
|
+
rack-session (2.1.1)
|
|
226
|
+
base64 (>= 0.1.0)
|
|
203
227
|
rack (>= 3.0.0)
|
|
204
|
-
rack-test (2.
|
|
228
|
+
rack-test (2.2.0)
|
|
205
229
|
rack (>= 1.3)
|
|
206
|
-
rackup (2.1
|
|
230
|
+
rackup (2.2.1)
|
|
207
231
|
rack (>= 3)
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
activesupport (= 7.1.3.2)
|
|
232
|
+
rails (8.1.1)
|
|
233
|
+
actioncable (= 8.1.1)
|
|
234
|
+
actionmailbox (= 8.1.1)
|
|
235
|
+
actionmailer (= 8.1.1)
|
|
236
|
+
actionpack (= 8.1.1)
|
|
237
|
+
actiontext (= 8.1.1)
|
|
238
|
+
actionview (= 8.1.1)
|
|
239
|
+
activejob (= 8.1.1)
|
|
240
|
+
activemodel (= 8.1.1)
|
|
241
|
+
activerecord (= 8.1.1)
|
|
242
|
+
activestorage (= 8.1.1)
|
|
243
|
+
activesupport (= 8.1.1)
|
|
221
244
|
bundler (>= 1.15.0)
|
|
222
|
-
railties (=
|
|
245
|
+
railties (= 8.1.1)
|
|
223
246
|
rails-controller-testing (1.0.5)
|
|
224
247
|
actionpack (>= 5.0.1.rc1)
|
|
225
248
|
actionview (>= 5.0.1.rc1)
|
|
226
249
|
activesupport (>= 5.0.1.rc1)
|
|
227
|
-
rails-dom-testing (2.
|
|
250
|
+
rails-dom-testing (2.3.0)
|
|
228
251
|
activesupport (>= 5.0.0)
|
|
229
252
|
minitest
|
|
230
253
|
nokogiri (>= 1.6)
|
|
231
|
-
rails-html-sanitizer (1.6.
|
|
254
|
+
rails-html-sanitizer (1.6.2)
|
|
232
255
|
loofah (~> 2.21)
|
|
233
|
-
nokogiri (
|
|
234
|
-
railties (
|
|
235
|
-
actionpack (=
|
|
236
|
-
activesupport (=
|
|
237
|
-
irb
|
|
256
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
257
|
+
railties (8.1.1)
|
|
258
|
+
actionpack (= 8.1.1)
|
|
259
|
+
activesupport (= 8.1.1)
|
|
260
|
+
irb (~> 1.13)
|
|
238
261
|
rackup (>= 1.0.0)
|
|
239
262
|
rake (>= 12.2)
|
|
240
263
|
thor (~> 1.0, >= 1.2.2)
|
|
264
|
+
tsort (>= 0.2)
|
|
241
265
|
zeitwerk (~> 2.6)
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
266
|
+
rainbow (3.1.1)
|
|
267
|
+
rake (13.3.1)
|
|
268
|
+
ransack (4.4.1)
|
|
269
|
+
activerecord (>= 7.2)
|
|
270
|
+
activesupport (>= 7.2)
|
|
246
271
|
i18n
|
|
247
272
|
rb-fsevent (0.11.2)
|
|
248
|
-
rb-inotify (0.
|
|
273
|
+
rb-inotify (0.11.1)
|
|
249
274
|
ffi (~> 1.0)
|
|
250
|
-
rdoc (6.
|
|
275
|
+
rdoc (6.16.1)
|
|
276
|
+
erb
|
|
251
277
|
psych (>= 4.0.0)
|
|
252
|
-
|
|
278
|
+
tsort
|
|
279
|
+
regexp_parser (2.11.3)
|
|
280
|
+
reline (0.6.3)
|
|
253
281
|
io-console (~> 0.5)
|
|
254
|
-
responders (3.
|
|
255
|
-
actionpack (>=
|
|
256
|
-
railties (>=
|
|
282
|
+
responders (3.2.0)
|
|
283
|
+
actionpack (>= 7.0)
|
|
284
|
+
railties (>= 7.0)
|
|
257
285
|
rest-client (2.1.0)
|
|
258
286
|
http-accept (>= 1.7.0, < 2.0)
|
|
259
287
|
http-cookie (>= 1.0.2, < 2.0)
|
|
@@ -276,6 +304,21 @@ GEM
|
|
|
276
304
|
rspec-mocks (~> 3.13)
|
|
277
305
|
rspec-support (~> 3.13)
|
|
278
306
|
rspec-support (3.13.1)
|
|
307
|
+
rubocop (1.81.7)
|
|
308
|
+
json (~> 2.3)
|
|
309
|
+
language_server-protocol (~> 3.17.0.2)
|
|
310
|
+
lint_roller (~> 1.1.0)
|
|
311
|
+
parallel (~> 1.10)
|
|
312
|
+
parser (>= 3.3.0.2)
|
|
313
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
314
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
315
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
316
|
+
ruby-progressbar (~> 1.7)
|
|
317
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
318
|
+
rubocop-ast (1.48.0)
|
|
319
|
+
parser (>= 3.3.7.2)
|
|
320
|
+
prism (~> 1.4)
|
|
321
|
+
ruby-progressbar (1.13.0)
|
|
279
322
|
ruby2_keywords (0.0.5)
|
|
280
323
|
rufus-mnemo (1.2.3)
|
|
281
324
|
sass (3.7.4)
|
|
@@ -293,6 +336,7 @@ GEM
|
|
|
293
336
|
sprockets (> 3.0)
|
|
294
337
|
sprockets-rails
|
|
295
338
|
tilt
|
|
339
|
+
securerandom (0.4.1)
|
|
296
340
|
simplecov (0.22.0)
|
|
297
341
|
docile (~> 1.1)
|
|
298
342
|
simplecov-html (~> 0.11)
|
|
@@ -306,42 +350,53 @@ GEM
|
|
|
306
350
|
actionpack (>= 5.2)
|
|
307
351
|
activesupport (>= 5.2)
|
|
308
352
|
sprockets (>= 3.0.0)
|
|
309
|
-
sqlite3 (
|
|
310
|
-
|
|
311
|
-
stringio (3.1.0)
|
|
353
|
+
sqlite3 (2.7.3-arm64-darwin)
|
|
354
|
+
stringio (3.1.8)
|
|
312
355
|
sync (0.5.0)
|
|
313
356
|
term-ansicolor (1.7.2)
|
|
314
357
|
tins (~> 1.0)
|
|
315
|
-
thor (1.
|
|
316
|
-
tilt (2.
|
|
317
|
-
timeout (0.4.
|
|
358
|
+
thor (1.4.0)
|
|
359
|
+
tilt (2.6.1)
|
|
360
|
+
timeout (0.4.4)
|
|
318
361
|
tins (1.32.1)
|
|
319
362
|
sync
|
|
363
|
+
tsort (0.2.0)
|
|
320
364
|
tzinfo (2.0.6)
|
|
321
365
|
concurrent-ruby (~> 1.0)
|
|
366
|
+
unicode-display_width (3.2.0)
|
|
367
|
+
unicode-emoji (~> 4.1)
|
|
368
|
+
unicode-emoji (4.1.0)
|
|
369
|
+
uri (1.1.1)
|
|
370
|
+
useragent (0.16.11)
|
|
322
371
|
warden (1.2.9)
|
|
323
372
|
rack (>= 2.0.9)
|
|
324
|
-
|
|
325
|
-
|
|
373
|
+
websocket-driver (0.8.0)
|
|
374
|
+
base64
|
|
326
375
|
websocket-extensions (>= 0.1.0)
|
|
327
376
|
websocket-extensions (0.1.5)
|
|
328
|
-
zeitwerk (2.
|
|
377
|
+
zeitwerk (2.7.3)
|
|
329
378
|
|
|
330
379
|
PLATFORMS
|
|
331
380
|
arm64-darwin-22
|
|
381
|
+
arm64-darwin-23
|
|
332
382
|
|
|
333
383
|
DEPENDENCIES
|
|
384
|
+
activeadmin
|
|
385
|
+
byebug
|
|
334
386
|
coveralls
|
|
335
|
-
devise
|
|
387
|
+
devise!
|
|
336
388
|
devise-async
|
|
337
389
|
introspective_admin!
|
|
338
390
|
machinist_redux
|
|
391
|
+
rails (~> 8)
|
|
339
392
|
rails-controller-testing
|
|
340
393
|
rspec-rails
|
|
394
|
+
rubocop
|
|
341
395
|
rufus-mnemo
|
|
396
|
+
sass
|
|
397
|
+
sass-rails
|
|
342
398
|
simplecov
|
|
343
|
-
|
|
344
|
-
sqlite3
|
|
399
|
+
sqlite3 (= 2.7.3)
|
|
345
400
|
|
|
346
401
|
BUNDLED WITH
|
|
347
402
|
2.2.30
|
data/Rakefile
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
begin
|
|
2
4
|
require 'bundler/setup'
|
|
3
5
|
rescue LoadError
|
|
@@ -14,13 +16,9 @@ RDoc::Task.new(:rdoc) do |rdoc|
|
|
|
14
16
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
15
17
|
end
|
|
16
18
|
|
|
17
|
-
APP_RAKEFILE = File.expand_path(
|
|
19
|
+
APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__)
|
|
18
20
|
load 'rails/tasks/engine.rake'
|
|
19
21
|
|
|
20
|
-
|
|
21
22
|
load 'rails/tasks/statistics.rake'
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
25
24
|
Bundler::GemHelper.install_tasks
|
|
26
|
-
|