matey 0.1.1 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.devcontainer/devcontainer.json +1 -1
  3. data/CHANGELOG.md +1 -1
  4. data/COLOR_SCHEMES.md +24 -0
  5. data/COMPONENTS.md +75 -0
  6. data/Gemfile +2 -13
  7. data/Gemfile.lock +148 -143
  8. data/README.md +53 -100
  9. data/app/components/matey/active_users_component.html.erb +2 -2
  10. data/app/components/matey/active_users_component.rb +5 -3
  11. data/app/components/{application_component.rb → matey/application_component.rb} +3 -1
  12. data/app/components/matey/bounce_rate_component.html.erb +35 -0
  13. data/app/components/matey/bounce_rate_component.rb +24 -0
  14. data/app/components/matey/browser_os_breakdown_component.html.erb +38 -0
  15. data/app/components/matey/browser_os_breakdown_component.rb +11 -0
  16. data/app/components/matey/daily_active_users_component.html.erb +15 -0
  17. data/app/components/matey/daily_active_users_component.rb +11 -0
  18. data/app/components/matey/new_activity_component.html.erb +2 -2
  19. data/app/components/matey/new_activity_component.rb +5 -3
  20. data/app/components/matey/new_users_component.html.erb +2 -2
  21. data/app/components/matey/new_users_component.rb +5 -3
  22. data/app/components/matey/top_events_component.html.erb +2 -2
  23. data/app/components/matey/top_events_component.rb +4 -2
  24. data/app/components/matey/top_visited_pages_table_component.html.erb +2 -2
  25. data/app/components/matey/top_visited_pages_table_component.rb +4 -2
  26. data/app/components/matey/user_engagement_component.html.erb +27 -0
  27. data/app/components/matey/user_engagement_component.rb +12 -0
  28. data/app/components/matey/visits_by_day_of_week_component.html.erb +26 -0
  29. data/app/components/matey/visits_by_day_of_week_component.rb +24 -0
  30. data/docs/CONTRIBUTING.md +22 -0
  31. data/images/bounceRateComponent.png +0 -0
  32. data/images/colorSchemeBlue.png +0 -0
  33. data/images/colorSchemeNeutral.png +0 -0
  34. data/lib/helpers.rb +12 -0
  35. data/lib/matey/version.rb +1 -1
  36. data/lib/matey.rb +7 -2
  37. data/matey.gemspec +12 -5
  38. metadata +54 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66e49f6118a1523d6292998e3d8fa619215337fc30de9eb53ed9a80fbb0afe69
4
- data.tar.gz: 5de9ddf3a9ba33dff9df9561ed67fab9ed95e996dfc0aa7d7a77bd89632de116
3
+ metadata.gz: 12a21ea4053dc459c4b23e8e3d2aba0f1214929392c281d40d7055e5a4de26e0
4
+ data.tar.gz: c2784dda2825209d14dfe8ee9bac7963236caf786a440d980ca1c40d66fcd3e2
5
5
  SHA512:
6
- metadata.gz: 1624664b60404d56131c260aa31f9cdfc6a5b5947d9b46ff49904011f0cfa2b180b46ce1aff9f21342d0ada07038920ef8ad1b5147ad8cbee548f820deddb246
7
- data.tar.gz: fb0ef079b743b0976606b21e9952004fcb22d6959c3b28fd7fc87adff39ba44c62a8aadb877a151eae34da7357f2c0e95341bc7ded68dab8747ddd4c9cf3ac9f
6
+ metadata.gz: 02a283bbedef06f95cdbdfe30b00c803b35bd0e94f163921166eb82ab3cd53273fe3ac91776c0596d06c83f7c70a19687cd8611e183bb601bbb23811bdb60e57
7
+ data.tar.gz: b4488783a6edbf40c39b1eea8e181a7bad5788eb7246586f44a81a4f4dbdd88e3b9988be3de78b2b37806981422eff0e3a45510a7b2f8835fcf2b8639ac6e161
@@ -8,7 +8,7 @@
8
8
  // Update 'VARIANT' to pick a Ruby version: 3, 3.1, 3.0, 2, 2.7, 2.6
9
9
  // Append -bullseye or -buster to pin to an OS version.
10
10
  // Use -bullseye variants on local on arm64/Apple Silicon.
11
- "VARIANT": "3.1",
11
+ "VARIANT": "3.2",
12
12
  // Options
13
13
  "NODE_VERSION": "lts/*"
14
14
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2022-03-11
3
+ ## [0.1.1] - 2022-04-25
4
4
 
5
5
  - Initial release
data/COLOR_SCHEMES.md ADDED
@@ -0,0 +1,24 @@
1
+ # Color Schemes
2
+
3
+ ## Available Colors
4
+
5
+ - [Neutral](#neutral) _(default)_
6
+ - [Blue](#blue)
7
+
8
+ ### Neutral _(default)_
9
+
10
+ ![Neutral Color Scheme](./images/colorSchemeNeutral.png)
11
+
12
+ ```ruby
13
+ <%= render Matey::[ComponentType].new(..., color_scheme: "neutral") %>
14
+ ```
15
+
16
+ Note: If `color_scheme` argument is omitted, color scheme value defaults to `neutral`
17
+
18
+ ### Blue
19
+
20
+ ![Blue Color Scheme](./images/colorSchemeBlue.png)
21
+
22
+ ```ruby
23
+ <%= render Matey::[ComponentType].new(..., color_scheme: 'blue') %>
24
+ ```
data/COMPONENTS.md ADDED
@@ -0,0 +1,75 @@
1
+ # Components
2
+
3
+ The following components are available;
4
+
5
+ * [NewUsersComponent](#newuserscomponent)
6
+ * [ActiveUsersComponent](#activeuserscomponent)
7
+ * [NewActivityComponent](#newactivitycomponent)
8
+ * [TopVisitedLandingPagesComponent](#topvisitedlandingpagescomponent)
9
+ * [TopEventsComponent](#topeventscomponent)
10
+ * [BounceRateComponent](#bounceratecomponent)
11
+
12
+ ## NewUsersComponent
13
+
14
+ ![New Users Component](./images/newUsersComponent.png)
15
+
16
+ The NewUsersComponent displays the number of new users that have been created within the time window parameter. It also displays the number and percentage change from the previous time period.
17
+
18
+ ``` ruby
19
+ <%= render Matey::NewUsersComponent.new(users: User.all, time_window: 2.month) %>
20
+ ```
21
+
22
+ Here we are passing in all of our **User** model data for the component to find the new users that were made in the last 2 months, but we can filter this data to only include a specific subset of users and/or a specific time period. The component finds new users created in the past month and shows us the increase/decrease since the last period based on the `created_at` attribute.
23
+
24
+ ## ActiveUsersComponent
25
+
26
+ ![ActiveUsersComponent](./images/activeUsersComponent.png)
27
+
28
+ The ActiveUsersComponent displays the number of active users that have been created within the time window parameter. It also displays the number and percentage change from the previous time period. This component counts active users as those who have been involved in an Ahoy event in the given time window.
29
+
30
+ ``` ruby
31
+ <%= render Matey::ActiveUsersComponent.new(events: Ahoy::Event.all, time_window: 1.month) %>
32
+ ```
33
+
34
+ Here we are passing in all of our **Ahoy::Event** model data which is used to determine what users triggered an event in the parameter time period. The component finds the active users created in the past month and shows us the increase/decrease since the last period.
35
+
36
+ ## NewActivityComponent
37
+
38
+ ![New Activity Component](./images/newActivityComponent.png)
39
+
40
+ The NewActivityComponent component displays the number of Ahoy events that have been created within the time window parameter. It also displays the number and percentage change from the previous time period.
41
+
42
+ ``` ruby
43
+ <%= render (Matey::NewActivityComponent.new(events: Ahoy::Event.all, time_window: 1.month)) %>
44
+ ```
45
+
46
+ Here we are passing in all of our **Ahoy::Event** model data for the component to count all Ahoy Events, but we can filter this data to only include a specific subset of Ahoy Events or from a specific time period. The component finds the Ahoy events created in the past month and shows us the increase/decrease since the last period.
47
+
48
+ ## TopVisitedLandingPagesComponent
49
+
50
+ ![Top Visited Landing Pages Component](./images/topVisitedPages.png)
51
+
52
+ The TopVisitedPagesTableComponent component uses **`Ahoy::Visit`** data and displays a list of the top visited paths. Pass in `Ahoy::Visit.all` and the component displays the top landing pages based on the visits that have been created within the time window parameter. The *`limit`* parameter limits the number of results and is `10` by default.
53
+
54
+ ``` ruby
55
+ <%= render Matey::TopVisitedPagesTableComponent.new(events: Ahoy::Visit.all, time_window: 1.month, limit: 10) %>
56
+ ```
57
+
58
+ ## TopEventsComponent
59
+
60
+ ![Top Events Component](./images/topEventsComponent.png)
61
+
62
+ The TopEventsComponent displays a list of the top Ahoy::Events. Pass in the `Ahoy::Event.all` and the component calculates the top events that have been triggered in the given time window. The *`limit`* parameter limits the number of results and is `10` by default.
63
+
64
+ ``` ruby
65
+ <%= render(Matey::TopEventsComponent.new(events: Ahoy::Event.all, time_window: 1.month, limit: 10)) %>
66
+ ```
67
+
68
+ ## BounceRateComponent
69
+ ![Bounce Rate Component](./images/bounceRateComponent.png)
70
+
71
+ The BounceRateComponent displays the total bounce rate percentage of the application. That is the number of visits to the application in which the user visited **only** one page and left the site, compared to the total number of visits to the application. It additionally shows a list of the pages with the highest bounces. Pass in the `Ahoy::Event.all` & `Ahoy::Visit.all` parameters and the component calculates the bounce rate of the application and the top 5 pages with the highest bounces. The *`limit`* parameter limits the number of results and is `5` by default.
72
+
73
+ ``` ruby
74
+ <%= render(Matey::BounceRateComponent.new(events: Ahoy::Event.all, visits: Ahoy::Visit.all, limit: 5)) %>
75
+ ```
data/Gemfile CHANGED
@@ -3,25 +3,14 @@
3
3
  source "https://rubygems.org"
4
4
  gemspec
5
5
 
6
- # rails_version = "#{ENV['RAILS_VERSION'] || 'main'}"
7
6
  rails_version = (ENV["RAILS_VERSION"] || "~> 7").to_s
8
- gem "rails", rails_version == "main" ? {git: "https://github.com/rails/rails", ref: "main"} : rails_version
9
- gem "sqlite3", ">= 1.4"
10
-
11
- gem "rake", "~> 13.0"
12
-
13
- gem "rspec", "~> 3.0"
14
- gem "rspec-rails", "~> 5.0.0"
15
- gem "factory_bot_rails"
16
-
17
- gem "standard", "~> 1.3"
7
+ gem "rails", (rails_version == "main") ? {git: "https://github.com/rails/rails", ref: "main"} : rails_version
18
8
 
19
9
  gem "debug", platforms: %i[mri mingw x64_mingw]
20
10
 
11
+ # compensate for ruby 3 factoring out required gems
21
12
  if RUBY_VERSION >= "3.1"
22
13
  gem "net-imap", require: false
23
14
  gem "net-pop", require: false
24
15
  gem "net-smtp", require: false
25
16
  end
26
-
27
- gem "byebug", "~> 11.1", groups: [:development, :test]
data/Gemfile.lock CHANGED
@@ -1,189 +1,186 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- matey (0.1.1)
4
+ matey (0.1.4)
5
5
  ahoy_matey (~> 4.0)
6
- view_component (~> 2.0)
6
+ view_component (~> 2.74)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.0.2.3)
12
- actionpack (= 7.0.2.3)
13
- activesupport (= 7.0.2.3)
11
+ actioncable (7.0.5)
12
+ actionpack (= 7.0.5)
13
+ activesupport (= 7.0.5)
14
14
  nio4r (~> 2.0)
15
15
  websocket-driver (>= 0.6.1)
16
- actionmailbox (7.0.2.3)
17
- actionpack (= 7.0.2.3)
18
- activejob (= 7.0.2.3)
19
- activerecord (= 7.0.2.3)
20
- activestorage (= 7.0.2.3)
21
- activesupport (= 7.0.2.3)
16
+ actionmailbox (7.0.5)
17
+ actionpack (= 7.0.5)
18
+ activejob (= 7.0.5)
19
+ activerecord (= 7.0.5)
20
+ activestorage (= 7.0.5)
21
+ activesupport (= 7.0.5)
22
22
  mail (>= 2.7.1)
23
23
  net-imap
24
24
  net-pop
25
25
  net-smtp
26
- actionmailer (7.0.2.3)
27
- actionpack (= 7.0.2.3)
28
- actionview (= 7.0.2.3)
29
- activejob (= 7.0.2.3)
30
- activesupport (= 7.0.2.3)
26
+ actionmailer (7.0.5)
27
+ actionpack (= 7.0.5)
28
+ actionview (= 7.0.5)
29
+ activejob (= 7.0.5)
30
+ activesupport (= 7.0.5)
31
31
  mail (~> 2.5, >= 2.5.4)
32
32
  net-imap
33
33
  net-pop
34
34
  net-smtp
35
35
  rails-dom-testing (~> 2.0)
36
- actionpack (7.0.2.3)
37
- actionview (= 7.0.2.3)
38
- activesupport (= 7.0.2.3)
39
- rack (~> 2.0, >= 2.2.0)
36
+ actionpack (7.0.5)
37
+ actionview (= 7.0.5)
38
+ activesupport (= 7.0.5)
39
+ rack (~> 2.0, >= 2.2.4)
40
40
  rack-test (>= 0.6.3)
41
41
  rails-dom-testing (~> 2.0)
42
42
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
- actiontext (7.0.2.3)
44
- actionpack (= 7.0.2.3)
45
- activerecord (= 7.0.2.3)
46
- activestorage (= 7.0.2.3)
47
- activesupport (= 7.0.2.3)
43
+ actiontext (7.0.5)
44
+ actionpack (= 7.0.5)
45
+ activerecord (= 7.0.5)
46
+ activestorage (= 7.0.5)
47
+ activesupport (= 7.0.5)
48
48
  globalid (>= 0.6.0)
49
49
  nokogiri (>= 1.8.5)
50
- actionview (7.0.2.3)
51
- activesupport (= 7.0.2.3)
50
+ actionview (7.0.5)
51
+ activesupport (= 7.0.5)
52
52
  builder (~> 3.1)
53
53
  erubi (~> 1.4)
54
54
  rails-dom-testing (~> 2.0)
55
55
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
- activejob (7.0.2.3)
57
- activesupport (= 7.0.2.3)
56
+ activejob (7.0.5)
57
+ activesupport (= 7.0.5)
58
58
  globalid (>= 0.3.6)
59
- activemodel (7.0.2.3)
60
- activesupport (= 7.0.2.3)
61
- activerecord (7.0.2.3)
62
- activemodel (= 7.0.2.3)
63
- activesupport (= 7.0.2.3)
64
- activestorage (7.0.2.3)
65
- actionpack (= 7.0.2.3)
66
- activejob (= 7.0.2.3)
67
- activerecord (= 7.0.2.3)
68
- activesupport (= 7.0.2.3)
59
+ activemodel (7.0.5)
60
+ activesupport (= 7.0.5)
61
+ activerecord (7.0.5)
62
+ activemodel (= 7.0.5)
63
+ activesupport (= 7.0.5)
64
+ activestorage (7.0.5)
65
+ actionpack (= 7.0.5)
66
+ activejob (= 7.0.5)
67
+ activerecord (= 7.0.5)
68
+ activesupport (= 7.0.5)
69
69
  marcel (~> 1.0)
70
70
  mini_mime (>= 1.1.0)
71
- activesupport (7.0.2.3)
71
+ activesupport (7.0.5)
72
72
  concurrent-ruby (~> 1.0, >= 1.0.2)
73
73
  i18n (>= 1.6, < 2)
74
74
  minitest (>= 5.1)
75
75
  tzinfo (~> 2.0)
76
- ahoy_matey (4.0.3)
76
+ ahoy_matey (4.2.1)
77
77
  activesupport (>= 5.2)
78
78
  device_detector
79
79
  safely_block (>= 0.2.1)
80
80
  ast (2.4.2)
81
81
  builder (3.2.4)
82
- byebug (11.1.3)
83
- concurrent-ruby (1.1.10)
82
+ concurrent-ruby (1.2.2)
84
83
  crass (1.0.6)
85
- debug (1.4.0)
86
- irb (>= 1.3.6)
87
- reline (>= 0.2.7)
88
- device_detector (1.0.7)
84
+ date (3.3.3)
85
+ debug (1.8.0)
86
+ irb (>= 1.5.0)
87
+ reline (>= 0.3.1)
88
+ device_detector (1.1.0)
89
89
  diff-lcs (1.5.0)
90
- digest (3.1.0)
91
- errbase (0.2.2)
92
- erubi (1.10.0)
90
+ erubi (1.12.0)
93
91
  factory_bot (6.2.1)
94
92
  activesupport (>= 5.0.0)
95
93
  factory_bot_rails (6.2.0)
96
94
  factory_bot (~> 6.2.0)
97
95
  railties (>= 5.0.0)
98
- globalid (1.0.0)
96
+ globalid (1.1.0)
99
97
  activesupport (>= 5.0)
100
- i18n (1.10.0)
98
+ i18n (1.14.1)
101
99
  concurrent-ruby (~> 1.0)
102
- io-console (0.5.11)
103
- io-wait (0.2.1)
104
- irb (1.4.1)
100
+ io-console (0.6.0)
101
+ irb (1.7.0)
105
102
  reline (>= 0.3.0)
106
- loofah (2.15.0)
103
+ json (2.6.3)
104
+ language_server-protocol (3.17.0.3)
105
+ lint_roller (1.0.0)
106
+ loofah (2.21.3)
107
107
  crass (~> 1.0.2)
108
- nokogiri (>= 1.5.9)
109
- mail (2.7.1)
108
+ nokogiri (>= 1.12.0)
109
+ mail (2.8.1)
110
110
  mini_mime (>= 0.1.1)
111
+ net-imap
112
+ net-pop
113
+ net-smtp
111
114
  marcel (1.0.2)
112
115
  method_source (1.0.0)
113
116
  mini_mime (1.1.2)
114
- minitest (5.15.0)
115
- net-imap (0.2.3)
116
- digest
117
+ minitest (5.18.1)
118
+ net-imap (0.3.6)
119
+ date
117
120
  net-protocol
118
- strscan
119
- net-pop (0.1.1)
120
- digest
121
+ net-pop (0.1.2)
121
122
  net-protocol
123
+ net-protocol (0.2.1)
122
124
  timeout
123
- net-protocol (0.1.2)
124
- io-wait
125
- timeout
126
- net-smtp (0.3.1)
127
- digest
125
+ net-smtp (0.3.3)
128
126
  net-protocol
129
- timeout
130
- nio4r (2.5.8)
131
- nokogiri (1.13.3-x86_64-darwin)
127
+ nio4r (2.5.9)
128
+ nokogiri (1.15.2-aarch64-linux)
129
+ racc (~> 1.4)
130
+ nokogiri (1.15.2-x86_64-darwin)
132
131
  racc (~> 1.4)
133
- nokogiri (1.13.3-x86_64-linux)
132
+ nokogiri (1.15.2-x86_64-linux)
134
133
  racc (~> 1.4)
135
- parallel (1.22.1)
136
- parser (3.1.1.0)
134
+ parallel (1.23.0)
135
+ parser (3.2.2.3)
137
136
  ast (~> 2.4.1)
138
- racc (1.6.0)
139
- rack (2.2.3)
140
- rack-test (1.1.0)
141
- rack (>= 1.0, < 3)
142
- rails (7.0.2.3)
143
- actioncable (= 7.0.2.3)
144
- actionmailbox (= 7.0.2.3)
145
- actionmailer (= 7.0.2.3)
146
- actionpack (= 7.0.2.3)
147
- actiontext (= 7.0.2.3)
148
- actionview (= 7.0.2.3)
149
- activejob (= 7.0.2.3)
150
- activemodel (= 7.0.2.3)
151
- activerecord (= 7.0.2.3)
152
- activestorage (= 7.0.2.3)
153
- activesupport (= 7.0.2.3)
137
+ racc
138
+ racc (1.7.1)
139
+ rack (2.2.7)
140
+ rack-test (2.1.0)
141
+ rack (>= 1.3)
142
+ rails (7.0.5)
143
+ actioncable (= 7.0.5)
144
+ actionmailbox (= 7.0.5)
145
+ actionmailer (= 7.0.5)
146
+ actionpack (= 7.0.5)
147
+ actiontext (= 7.0.5)
148
+ actionview (= 7.0.5)
149
+ activejob (= 7.0.5)
150
+ activemodel (= 7.0.5)
151
+ activerecord (= 7.0.5)
152
+ activestorage (= 7.0.5)
153
+ activesupport (= 7.0.5)
154
154
  bundler (>= 1.15.0)
155
- railties (= 7.0.2.3)
155
+ railties (= 7.0.5)
156
156
  rails-dom-testing (2.0.3)
157
157
  activesupport (>= 4.2.0)
158
158
  nokogiri (>= 1.6)
159
- rails-html-sanitizer (1.4.2)
160
- loofah (~> 2.3)
161
- railties (7.0.2.3)
162
- actionpack (= 7.0.2.3)
163
- activesupport (= 7.0.2.3)
159
+ rails-html-sanitizer (1.6.0)
160
+ loofah (~> 2.21)
161
+ nokogiri (~> 1.14)
162
+ railties (7.0.5)
163
+ actionpack (= 7.0.5)
164
+ activesupport (= 7.0.5)
164
165
  method_source
165
166
  rake (>= 12.2)
166
167
  thor (~> 1.0)
167
168
  zeitwerk (~> 2.5)
168
169
  rainbow (3.1.1)
169
170
  rake (13.0.6)
170
- regexp_parser (2.2.1)
171
- reline (0.3.1)
171
+ regexp_parser (2.8.1)
172
+ reline (0.3.5)
172
173
  io-console (~> 0.5)
173
174
  rexml (3.2.5)
174
- rspec (3.11.0)
175
- rspec-core (~> 3.11.0)
176
- rspec-expectations (~> 3.11.0)
177
- rspec-mocks (~> 3.11.0)
178
- rspec-core (3.11.0)
179
- rspec-support (~> 3.11.0)
180
- rspec-expectations (3.11.0)
175
+ rspec-core (3.12.2)
176
+ rspec-support (~> 3.12.0)
177
+ rspec-expectations (3.12.3)
181
178
  diff-lcs (>= 1.2.0, < 2.0)
182
- rspec-support (~> 3.11.0)
183
- rspec-mocks (3.11.0)
179
+ rspec-support (~> 3.12.0)
180
+ rspec-mocks (3.12.5)
184
181
  diff-lcs (>= 1.2.0, < 2.0)
185
- rspec-support (~> 3.11.0)
186
- rspec-rails (5.0.3)
182
+ rspec-support (~> 3.12.0)
183
+ rspec-rails (5.1.2)
187
184
  actionpack (>= 5.2)
188
185
  activesupport (>= 5.2)
189
186
  railties (>= 5.2)
@@ -191,69 +188,77 @@ GEM
191
188
  rspec-expectations (~> 3.10)
192
189
  rspec-mocks (~> 3.10)
193
190
  rspec-support (~> 3.10)
194
- rspec-support (3.11.0)
195
- rubocop (1.26.0)
191
+ rspec-support (3.12.0)
192
+ rubocop (1.52.1)
193
+ json (~> 2.3)
196
194
  parallel (~> 1.10)
197
- parser (>= 3.1.0.0)
195
+ parser (>= 3.2.2.3)
198
196
  rainbow (>= 2.2.2, < 4.0)
199
197
  regexp_parser (>= 1.8, < 3.0)
200
- rexml
201
- rubocop-ast (>= 1.16.0, < 2.0)
198
+ rexml (>= 3.2.5, < 4.0)
199
+ rubocop-ast (>= 1.28.0, < 2.0)
202
200
  ruby-progressbar (~> 1.7)
203
- unicode-display_width (>= 1.4.0, < 3.0)
204
- rubocop-ast (1.16.0)
205
- parser (>= 3.1.1.0)
206
- rubocop-performance (1.13.3)
201
+ unicode-display_width (>= 2.4.0, < 3.0)
202
+ rubocop-ast (1.29.0)
203
+ parser (>= 3.2.1.0)
204
+ rubocop-performance (1.18.0)
207
205
  rubocop (>= 1.7.0, < 2.0)
208
206
  rubocop-ast (>= 0.4.0)
209
- ruby-progressbar (1.11.0)
210
- safely_block (0.3.0)
211
- errbase (>= 0.1.1)
212
- sprockets (4.0.3)
207
+ ruby-progressbar (1.13.0)
208
+ safely_block (0.4.0)
209
+ sprockets (4.2.0)
213
210
  concurrent-ruby (~> 1.0)
214
- rack (> 1, < 3)
211
+ rack (>= 2.2.4, < 4)
215
212
  sprockets-rails (3.2.2)
216
213
  actionpack (>= 4.0)
217
214
  activesupport (>= 4.0)
218
215
  sprockets (>= 3.0.0)
219
- sqlite3 (1.4.2)
220
- standard (1.9.0)
221
- rubocop (= 1.26.0)
222
- rubocop-performance (= 1.13.3)
223
- strscan (3.0.1)
224
- thor (1.2.1)
225
- timeout (0.2.0)
226
- tzinfo (2.0.4)
216
+ sqlite3 (1.6.3-aarch64-linux)
217
+ sqlite3 (1.6.3-x86_64-darwin)
218
+ sqlite3 (1.6.3-x86_64-linux)
219
+ standard (1.29.0)
220
+ language_server-protocol (~> 3.17.0.2)
221
+ lint_roller (~> 1.0)
222
+ rubocop (~> 1.52.0)
223
+ standard-custom (~> 1.0.0)
224
+ standard-performance (~> 1.1.0)
225
+ standard-custom (1.0.1)
226
+ lint_roller (~> 1.0)
227
+ standard-performance (1.1.0)
228
+ lint_roller (~> 1.0)
229
+ rubocop-performance (~> 1.18.0)
230
+ thor (1.2.2)
231
+ timeout (0.3.2)
232
+ tzinfo (2.0.6)
233
+ concurrent-ruby (~> 1.0)
234
+ unicode-display_width (2.4.2)
235
+ view_component (2.82.0)
236
+ activesupport (>= 5.2.0, < 8.0)
227
237
  concurrent-ruby (~> 1.0)
228
- unicode-display_width (2.1.0)
229
- view_component (2.52.0)
230
- activesupport (>= 5.0.0, < 8.0)
231
238
  method_source (~> 1.0)
232
239
  websocket-driver (0.7.5)
233
240
  websocket-extensions (>= 0.1.0)
234
241
  websocket-extensions (0.1.5)
235
- zeitwerk (2.5.4)
242
+ zeitwerk (2.6.8)
236
243
 
237
244
  PLATFORMS
245
+ aarch64-linux
238
246
  x86_64-darwin-21
239
247
  x86_64-linux
240
248
 
241
249
  DEPENDENCIES
242
- byebug (~> 11.1)
243
250
  debug
244
- factory_bot (~> 6.0)
245
- factory_bot_rails
251
+ factory_bot_rails (~> 6.0)
246
252
  matey!
247
253
  net-imap
248
254
  net-pop
249
255
  net-smtp
250
256
  rails (~> 7)
251
257
  rake (~> 13.0)
252
- rspec (~> 3.0)
253
- rspec-rails (~> 5.0.0)
258
+ rspec-rails (~> 5.0)
254
259
  sprockets-rails (~> 3.2.2)
255
- sqlite3 (>= 1.4)
260
+ sqlite3 (~> 1.0)
256
261
  standard (~> 1.3)
257
262
 
258
263
  BUNDLED WITH
259
- 2.3.7
264
+ 2.4.10