simple_calendar 2.4.3 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +5 -4
  3. data/.gitignore +4 -0
  4. data/Appraisals +5 -5
  5. data/CHANGELOG.md +11 -0
  6. data/Gemfile +6 -1
  7. data/Gemfile.lock +164 -136
  8. data/README.md +23 -16
  9. data/Rakefile +29 -5
  10. data/app/assets/stylesheets/simple_calendar.scss +4 -0
  11. data/{lib/simple_calendar/view_helpers.rb → app/helpers/simple_calendar/calendar_helper.rb} +4 -4
  12. data/app/views/simple_calendar/_calendar.html.erb +7 -7
  13. data/app/views/simple_calendar/_month_calendar.html.erb +8 -8
  14. data/app/views/simple_calendar/_week_calendar.html.erb +14 -12
  15. data/bin/rails +16 -0
  16. data/gemfiles/rails_6_1.gemfile +4 -1
  17. data/gemfiles/rails_6_1.gemfile.lock +166 -131
  18. data/gemfiles/rails_7_0.gemfile +12 -0
  19. data/gemfiles/rails_7_0.gemfile.lock +229 -0
  20. data/gemfiles/{rails_master.gemfile → rails_main.gemfile} +4 -1
  21. data/gemfiles/rails_main.gemfile.lock +253 -0
  22. data/lib/simple_calendar/calendar.rb +27 -14
  23. data/lib/simple_calendar/engine.rb +4 -0
  24. data/lib/simple_calendar/month_calendar.rb +4 -0
  25. data/lib/simple_calendar/version.rb +1 -1
  26. data/lib/simple_calendar/week_calendar.rb +5 -1
  27. data/lib/simple_calendar.rb +7 -6
  28. data/simple_calendar.gemspec +1 -3
  29. data/test/calendars/calendar_test.rb +154 -0
  30. data/test/calendars/month_calendar_test.rb +16 -0
  31. data/test/dummy/Rakefile +6 -0
  32. data/test/dummy/app/assets/config/manifest.js +1 -0
  33. data/test/dummy/app/assets/images/.keep +0 -0
  34. data/test/dummy/app/assets/stylesheets/application.css +1 -0
  35. data/test/dummy/app/calendars/business_week_calendar.rb +9 -0
  36. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  37. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  38. data/test/dummy/app/controllers/application_controller.rb +2 -0
  39. data/test/dummy/app/controllers/concerns/.keep +0 -0
  40. data/test/dummy/app/controllers/meetings_controller.rb +63 -0
  41. data/test/dummy/app/helpers/application_helper.rb +2 -0
  42. data/test/dummy/app/helpers/meetings_helper.rb +2 -0
  43. data/test/dummy/app/jobs/application_job.rb +7 -0
  44. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  45. data/test/dummy/app/models/application_record.rb +7 -0
  46. data/test/dummy/app/models/concerns/.keep +0 -0
  47. data/test/dummy/app/models/meeting.rb +2 -0
  48. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  49. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  50. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  51. data/test/dummy/app/views/meetings/_business_week_calendar.html.erb +33 -0
  52. data/test/dummy/app/views/meetings/_form.html.erb +32 -0
  53. data/test/dummy/app/views/meetings/_meeting.html.erb +17 -0
  54. data/test/dummy/app/views/meetings/business_week.html.erb +24 -0
  55. data/test/dummy/app/views/meetings/edit.html.erb +10 -0
  56. data/test/dummy/app/views/meetings/index.html.erb +24 -0
  57. data/test/dummy/app/views/meetings/new.html.erb +9 -0
  58. data/test/dummy/app/views/meetings/show.html.erb +10 -0
  59. data/test/dummy/bin/rails +4 -0
  60. data/test/dummy/bin/rake +4 -0
  61. data/test/dummy/bin/setup +33 -0
  62. data/test/dummy/config/application.rb +22 -0
  63. data/test/dummy/config/boot.rb +5 -0
  64. data/test/dummy/config/cable.yml +10 -0
  65. data/test/dummy/config/database.yml +25 -0
  66. data/test/dummy/config/environment.rb +5 -0
  67. data/test/dummy/config/environments/development.rb +67 -0
  68. data/test/dummy/config/environments/production.rb +87 -0
  69. data/test/dummy/config/environments/test.rb +60 -0
  70. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  71. data/test/dummy/config/initializers/filter_parameter_logging.rb +8 -0
  72. data/test/dummy/config/initializers/inflections.rb +16 -0
  73. data/test/dummy/config/initializers/permissions_policy.rb +11 -0
  74. data/test/dummy/config/locales/en.yml +33 -0
  75. data/test/dummy/config/puma.rb +43 -0
  76. data/test/dummy/config/routes.rb +11 -0
  77. data/test/dummy/config/storage.yml +34 -0
  78. data/test/dummy/config.ru +6 -0
  79. data/test/dummy/db/migrate/20220930184313_create_meetings.rb +11 -0
  80. data/test/dummy/db/schema.rb +21 -0
  81. data/test/dummy/lib/assets/.keep +0 -0
  82. data/test/dummy/log/.keep +0 -0
  83. data/test/dummy/public/404.html +67 -0
  84. data/test/dummy/public/422.html +67 -0
  85. data/test/dummy/public/500.html +66 -0
  86. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  87. data/test/dummy/public/apple-touch-icon.png +0 -0
  88. data/test/dummy/public/favicon.ico +0 -0
  89. data/test/dummy/storage/.keep +0 -0
  90. data/test/fixtures/meetings.yml +36 -0
  91. data/test/integrations/custom_calendar_test.rb +31 -0
  92. data/test/integrations/month_calendar_test.rb +58 -0
  93. data/test/simple_calendar_test.rb +7 -0
  94. data/test/test_helper.rb +14 -0
  95. metadata +79 -40
  96. data/gemfiles/rails_6.gemfile +0 -9
  97. data/gemfiles/rails_6.gemfile.lock +0 -195
  98. data/gemfiles/rails_master.gemfile.lock +0 -207
  99. data/lib/simple_calendar/railtie.rb +0 -9
  100. data/spec/calendar_spec.rb +0 -176
  101. data/spec/calendars/month_calendar_spec.rb +0 -25
  102. data/spec/simple_calendar_spec.rb +0 -9
  103. data/spec/spec_helper.rb +0 -96
  104. data/spec/support/fake_event.rb +0 -9
  105. data/spec/support/view_context.rb +0 -20
  106. data/spec/views_generators_spec.rb +0 -7
@@ -1,8 +1,12 @@
1
1
  <div class="simple-calendar">
2
2
  <div class="calendar-heading">
3
- <%= link_to t('simple_calendar.previous', default: 'Previous'), calendar.url_for_previous_view %>
4
- <span class="calendar-title"><%= t('date.month_names')[start_date.month] %> <%= start_date.year %></span>
5
- <%= link_to t('simple_calendar.next', default: 'Next'), calendar.url_for_next_view %>
3
+ <time datetime="<%= start_date.strftime('%Y-%m') %>" class="calendar-title"><%= t('date.month_names')[start_date.month] %> <%= start_date.year %></time>
4
+
5
+ <nav>
6
+ <%= link_to t('simple_calendar.previous', default: 'Previous'), calendar.url_for_previous_view %>
7
+ <%= link_to t('simple_calendar.today', default: 'Today'), calendar.url_for_today_view %>
8
+ <%= link_to t('simple_calendar.next', default: 'Next'), calendar.url_for_next_view %>
9
+ </nav>
6
10
  </div>
7
11
 
8
12
  <table class="table table-striped">
@@ -19,11 +23,7 @@
19
23
  <tr>
20
24
  <% week.each do |day| %>
21
25
  <%= content_tag :td, class: calendar.td_classes_for(day) do %>
22
- <% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %>
23
- <% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %>
24
- <% else %>
25
- <% passed_block.call day, sorted_events.fetch(day, []) %>
26
- <% end %>
26
+ <% instance_exec(day, calendar.sorted_events_for(day), &passed_block) %>
27
27
  <% end %>
28
28
  <% end %>
29
29
  </tr>
@@ -1,12 +1,18 @@
1
1
  <div class="simple-calendar">
2
2
  <div class="calendar-heading">
3
- <%= link_to t('simple_calendar.previous', default: 'Previous'), calendar.url_for_previous_view %>
4
- <% if calendar.number_of_weeks == 1 %>
5
- <span class="calendar-title"><%= t('simple_calendar.week', default: 'Week') %> <%= calendar.week_number %></span>
6
- <% else %>
7
- <span class="calendar-title"><%= t('simple_calendar.week', default: 'Week') %> <%= calendar.week_number %> - <%= calendar.end_week %></span>
8
- <% end %>
9
- <%= link_to t('simple_calendar.next', default: 'Next'), calendar.url_for_next_view %>
3
+ <span class="calendar-title">
4
+ <%= t('simple_calendar.week', default: 'Week') %>
5
+ <%= calendar.week_number %>
6
+ <% if calendar.number_of_weeks > 1 %>
7
+ - <%= calendar.end_week %>
8
+ <% end %>
9
+ </span>
10
+
11
+ <nav>
12
+ <%= link_to t('simple_calendar.previous', default: 'Previous'), calendar.url_for_previous_view %>
13
+ <%= link_to t('simple_calendar.today', default: 'Today'), calendar.url_for_today_view %>
14
+ <%= link_to t('simple_calendar.next', default: 'Next'), calendar.url_for_next_view %>
15
+ </nav>
10
16
  </div>
11
17
 
12
18
  <table class="table table-striped">
@@ -23,11 +29,7 @@
23
29
  <tr>
24
30
  <% week.each do |day| %>
25
31
  <%= content_tag :td, class: calendar.td_classes_for(day) do %>
26
- <% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %>
27
- <% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %>
28
- <% else %>
29
- <% passed_block.call day, sorted_events.fetch(day, []) %>
30
- <% end %>
32
+ <% instance_exec(day, calendar.sorted_events_for(day), &passed_block) %>
31
33
  <% end %>
32
34
  <% end %>
33
35
  </tr>
data/bin/rails ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails gems
3
+ # installed from the root of your application.
4
+
5
+ ENV["RAILS_ENV"] ||= "test"
6
+
7
+ ENGINE_ROOT = File.expand_path('..', __dir__)
8
+ ENGINE_PATH = File.expand_path('../lib/pay/engine', __dir__)
9
+ APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
10
+
11
+ # Set up gems listed in the Gemfile.
12
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
13
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
14
+
15
+ require 'rails/all'
16
+ require 'rails/engine/commands'
@@ -2,8 +2,11 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "appraisal"
5
+ gem "appraisal", github: "thoughtbot/appraisal"
6
6
  gem "standard"
7
+ gem "puma"
8
+ gem "sqlite3"
9
+ gem "web-console", "~> 4.2", group: :development
7
10
  gem "rails", "~> 6.1.0"
8
11
 
9
12
  gemspec path: "../"
@@ -1,186 +1,219 @@
1
+ GIT
2
+ remote: https://github.com/thoughtbot/appraisal.git
3
+ revision: b200e636903700098bef25f4f51dbc4c46e4c04c
4
+ specs:
5
+ appraisal (2.4.1)
6
+ bundler
7
+ rake
8
+ thor (>= 0.14.0)
9
+
1
10
  PATH
2
11
  remote: ..
3
12
  specs:
4
- simple_calendar (2.4.3)
5
- rails (>= 3.0)
13
+ simple_calendar (3.0.1)
14
+ rails (>= 6.1)
6
15
 
7
16
  GEM
8
17
  remote: http://rubygems.org/
9
18
  specs:
10
- actioncable (6.1.3.2)
11
- actionpack (= 6.1.3.2)
12
- activesupport (= 6.1.3.2)
19
+ actioncable (6.1.7.4)
20
+ actionpack (= 6.1.7.4)
21
+ activesupport (= 6.1.7.4)
13
22
  nio4r (~> 2.0)
14
23
  websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.3.2)
16
- actionpack (= 6.1.3.2)
17
- activejob (= 6.1.3.2)
18
- activerecord (= 6.1.3.2)
19
- activestorage (= 6.1.3.2)
20
- activesupport (= 6.1.3.2)
24
+ actionmailbox (6.1.7.4)
25
+ actionpack (= 6.1.7.4)
26
+ activejob (= 6.1.7.4)
27
+ activerecord (= 6.1.7.4)
28
+ activestorage (= 6.1.7.4)
29
+ activesupport (= 6.1.7.4)
21
30
  mail (>= 2.7.1)
22
- actionmailer (6.1.3.2)
23
- actionpack (= 6.1.3.2)
24
- actionview (= 6.1.3.2)
25
- activejob (= 6.1.3.2)
26
- activesupport (= 6.1.3.2)
31
+ actionmailer (6.1.7.4)
32
+ actionpack (= 6.1.7.4)
33
+ actionview (= 6.1.7.4)
34
+ activejob (= 6.1.7.4)
35
+ activesupport (= 6.1.7.4)
27
36
  mail (~> 2.5, >= 2.5.4)
28
37
  rails-dom-testing (~> 2.0)
29
- actionpack (6.1.3.2)
30
- actionview (= 6.1.3.2)
31
- activesupport (= 6.1.3.2)
38
+ actionpack (6.1.7.4)
39
+ actionview (= 6.1.7.4)
40
+ activesupport (= 6.1.7.4)
32
41
  rack (~> 2.0, >= 2.0.9)
33
42
  rack-test (>= 0.6.3)
34
43
  rails-dom-testing (~> 2.0)
35
44
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
- actiontext (6.1.3.2)
37
- actionpack (= 6.1.3.2)
38
- activerecord (= 6.1.3.2)
39
- activestorage (= 6.1.3.2)
40
- activesupport (= 6.1.3.2)
45
+ actiontext (6.1.7.4)
46
+ actionpack (= 6.1.7.4)
47
+ activerecord (= 6.1.7.4)
48
+ activestorage (= 6.1.7.4)
49
+ activesupport (= 6.1.7.4)
41
50
  nokogiri (>= 1.8.5)
42
- actionview (6.1.3.2)
43
- activesupport (= 6.1.3.2)
51
+ actionview (6.1.7.4)
52
+ activesupport (= 6.1.7.4)
44
53
  builder (~> 3.1)
45
54
  erubi (~> 1.4)
46
55
  rails-dom-testing (~> 2.0)
47
56
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
- activejob (6.1.3.2)
49
- activesupport (= 6.1.3.2)
57
+ activejob (6.1.7.4)
58
+ activesupport (= 6.1.7.4)
50
59
  globalid (>= 0.3.6)
51
- activemodel (6.1.3.2)
52
- activesupport (= 6.1.3.2)
53
- activerecord (6.1.3.2)
54
- activemodel (= 6.1.3.2)
55
- activesupport (= 6.1.3.2)
56
- activestorage (6.1.3.2)
57
- actionpack (= 6.1.3.2)
58
- activejob (= 6.1.3.2)
59
- activerecord (= 6.1.3.2)
60
- activesupport (= 6.1.3.2)
61
- marcel (~> 1.0.0)
62
- mini_mime (~> 1.0.2)
63
- activesupport (6.1.3.2)
60
+ activemodel (6.1.7.4)
61
+ activesupport (= 6.1.7.4)
62
+ activerecord (6.1.7.4)
63
+ activemodel (= 6.1.7.4)
64
+ activesupport (= 6.1.7.4)
65
+ activestorage (6.1.7.4)
66
+ actionpack (= 6.1.7.4)
67
+ activejob (= 6.1.7.4)
68
+ activerecord (= 6.1.7.4)
69
+ activesupport (= 6.1.7.4)
70
+ marcel (~> 1.0)
71
+ mini_mime (>= 1.1.0)
72
+ activesupport (6.1.7.4)
64
73
  concurrent-ruby (~> 1.0, >= 1.0.2)
65
74
  i18n (>= 1.6, < 2)
66
75
  minitest (>= 5.1)
67
76
  tzinfo (~> 2.0)
68
77
  zeitwerk (~> 2.3)
69
- appraisal (2.4.0)
70
- bundler
71
- rake
72
- thor (>= 0.14.0)
73
78
  ast (2.4.2)
79
+ bindex (0.8.1)
74
80
  builder (3.2.4)
75
- concurrent-ruby (1.1.8)
81
+ concurrent-ruby (1.2.2)
76
82
  crass (1.0.6)
77
- diff-lcs (1.4.4)
78
- erubi (1.10.0)
79
- globalid (0.4.2)
80
- activesupport (>= 4.2.0)
81
- i18n (1.8.10)
83
+ date (3.3.3)
84
+ erubi (1.12.0)
85
+ globalid (1.1.0)
86
+ activesupport (>= 5.0)
87
+ i18n (1.14.1)
82
88
  concurrent-ruby (~> 1.0)
83
- loofah (2.9.1)
89
+ json (2.6.3)
90
+ language_server-protocol (3.17.0.3)
91
+ lint_roller (1.1.0)
92
+ loofah (2.21.3)
84
93
  crass (~> 1.0.2)
85
- nokogiri (>= 1.5.9)
86
- mail (2.7.1)
94
+ nokogiri (>= 1.12.0)
95
+ mail (2.8.1)
87
96
  mini_mime (>= 0.1.1)
88
- marcel (1.0.1)
97
+ net-imap
98
+ net-pop
99
+ net-smtp
100
+ marcel (1.0.2)
89
101
  method_source (1.0.0)
90
- mini_mime (1.0.3)
91
- mini_portile2 (2.5.1)
92
- minitest (5.14.4)
93
- nio4r (2.5.7)
94
- nokogiri (1.11.3)
95
- mini_portile2 (~> 2.5.0)
102
+ mini_mime (1.1.2)
103
+ mini_portile2 (2.8.2)
104
+ minitest (5.18.1)
105
+ net-imap (0.3.6)
106
+ date
107
+ net-protocol
108
+ net-pop (0.1.2)
109
+ net-protocol
110
+ net-protocol (0.2.1)
111
+ timeout
112
+ net-smtp (0.3.3)
113
+ net-protocol
114
+ nio4r (2.5.9)
115
+ nokogiri (1.15.3)
116
+ mini_portile2 (~> 2.8.2)
96
117
  racc (~> 1.4)
97
- nokogiri (1.11.3-x86_64-darwin)
118
+ nokogiri (1.15.3-x86_64-darwin)
98
119
  racc (~> 1.4)
99
- nokogiri (1.11.3-x86_64-linux)
120
+ nokogiri (1.15.3-x86_64-linux)
100
121
  racc (~> 1.4)
101
- parallel (1.20.1)
102
- parser (3.0.1.1)
122
+ parallel (1.23.0)
123
+ parser (3.2.2.3)
103
124
  ast (~> 2.4.1)
104
- racc (1.5.2)
105
- rack (2.2.3)
106
- rack-test (1.1.0)
107
- rack (>= 1.0, < 3)
108
- rails (6.1.3.2)
109
- actioncable (= 6.1.3.2)
110
- actionmailbox (= 6.1.3.2)
111
- actionmailer (= 6.1.3.2)
112
- actionpack (= 6.1.3.2)
113
- actiontext (= 6.1.3.2)
114
- actionview (= 6.1.3.2)
115
- activejob (= 6.1.3.2)
116
- activemodel (= 6.1.3.2)
117
- activerecord (= 6.1.3.2)
118
- activestorage (= 6.1.3.2)
119
- activesupport (= 6.1.3.2)
125
+ racc
126
+ puma (6.3.0)
127
+ nio4r (~> 2.0)
128
+ racc (1.7.1)
129
+ rack (2.2.7)
130
+ rack-test (2.1.0)
131
+ rack (>= 1.3)
132
+ rails (6.1.7.4)
133
+ actioncable (= 6.1.7.4)
134
+ actionmailbox (= 6.1.7.4)
135
+ actionmailer (= 6.1.7.4)
136
+ actionpack (= 6.1.7.4)
137
+ actiontext (= 6.1.7.4)
138
+ actionview (= 6.1.7.4)
139
+ activejob (= 6.1.7.4)
140
+ activemodel (= 6.1.7.4)
141
+ activerecord (= 6.1.7.4)
142
+ activestorage (= 6.1.7.4)
143
+ activesupport (= 6.1.7.4)
120
144
  bundler (>= 1.15.0)
121
- railties (= 6.1.3.2)
145
+ railties (= 6.1.7.4)
122
146
  sprockets-rails (>= 2.0.0)
123
- rails-dom-testing (2.0.3)
124
- activesupport (>= 4.2.0)
147
+ rails-dom-testing (2.1.1)
148
+ activesupport (>= 5.0.0)
149
+ minitest
125
150
  nokogiri (>= 1.6)
126
- rails-html-sanitizer (1.3.0)
127
- loofah (~> 2.3)
128
- railties (6.1.3.2)
129
- actionpack (= 6.1.3.2)
130
- activesupport (= 6.1.3.2)
151
+ rails-html-sanitizer (1.6.0)
152
+ loofah (~> 2.21)
153
+ nokogiri (~> 1.14)
154
+ railties (6.1.7.4)
155
+ actionpack (= 6.1.7.4)
156
+ activesupport (= 6.1.7.4)
131
157
  method_source
132
- rake (>= 0.8.7)
158
+ rake (>= 12.2)
133
159
  thor (~> 1.0)
134
- rainbow (3.0.0)
135
- rake (13.0.3)
136
- regexp_parser (2.1.1)
160
+ rainbow (3.1.1)
161
+ rake (13.0.6)
162
+ regexp_parser (2.8.1)
137
163
  rexml (3.2.5)
138
- rspec (3.10.0)
139
- rspec-core (~> 3.10.0)
140
- rspec-expectations (~> 3.10.0)
141
- rspec-mocks (~> 3.10.0)
142
- rspec-core (3.10.1)
143
- rspec-support (~> 3.10.0)
144
- rspec-expectations (3.10.1)
145
- diff-lcs (>= 1.2.0, < 2.0)
146
- rspec-support (~> 3.10.0)
147
- rspec-mocks (3.10.2)
148
- diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.10.0)
150
- rspec-support (3.10.2)
151
- rubocop (1.14.0)
164
+ rubocop (1.52.1)
165
+ json (~> 2.3)
152
166
  parallel (~> 1.10)
153
- parser (>= 3.0.0.0)
167
+ parser (>= 3.2.2.3)
154
168
  rainbow (>= 2.2.2, < 4.0)
155
169
  regexp_parser (>= 1.8, < 3.0)
156
- rexml
157
- rubocop-ast (>= 1.5.0, < 2.0)
170
+ rexml (>= 3.2.5, < 4.0)
171
+ rubocop-ast (>= 1.28.0, < 2.0)
158
172
  ruby-progressbar (~> 1.7)
159
- unicode-display_width (>= 1.4.0, < 3.0)
160
- rubocop-ast (1.5.0)
161
- parser (>= 3.0.1.1)
162
- rubocop-performance (1.11.2)
173
+ unicode-display_width (>= 2.4.0, < 3.0)
174
+ rubocop-ast (1.29.0)
175
+ parser (>= 3.2.1.0)
176
+ rubocop-performance (1.18.0)
163
177
  rubocop (>= 1.7.0, < 2.0)
164
178
  rubocop-ast (>= 0.4.0)
165
- ruby-progressbar (1.11.0)
166
- sprockets (4.0.2)
179
+ ruby-progressbar (1.13.0)
180
+ sprockets (4.2.0)
167
181
  concurrent-ruby (~> 1.0)
168
- rack (> 1, < 3)
169
- sprockets-rails (3.2.2)
170
- actionpack (>= 4.0)
171
- activesupport (>= 4.0)
182
+ rack (>= 2.2.4, < 4)
183
+ sprockets-rails (3.4.2)
184
+ actionpack (>= 5.2)
185
+ activesupport (>= 5.2)
172
186
  sprockets (>= 3.0.0)
173
- standard (1.1.1)
174
- rubocop (= 1.14.0)
175
- rubocop-performance (= 1.11.2)
176
- thor (1.1.0)
177
- tzinfo (2.0.4)
187
+ sqlite3 (1.6.3)
188
+ mini_portile2 (~> 2.8.0)
189
+ sqlite3 (1.6.3-x86_64-darwin)
190
+ sqlite3 (1.6.3-x86_64-linux)
191
+ standard (1.30.1)
192
+ language_server-protocol (~> 3.17.0.2)
193
+ lint_roller (~> 1.0)
194
+ rubocop (~> 1.52.0)
195
+ standard-custom (~> 1.0.0)
196
+ standard-performance (~> 1.1.0)
197
+ standard-custom (1.0.2)
198
+ lint_roller (~> 1.0)
199
+ rubocop (~> 1.50)
200
+ standard-performance (1.1.1)
201
+ lint_roller (~> 1.1)
202
+ rubocop-performance (~> 1.18.0)
203
+ thor (1.2.2)
204
+ timeout (0.4.0)
205
+ tzinfo (2.0.6)
178
206
  concurrent-ruby (~> 1.0)
179
- unicode-display_width (2.0.0)
180
- websocket-driver (0.7.3)
207
+ unicode-display_width (2.4.2)
208
+ web-console (4.2.0)
209
+ actionview (>= 6.0.0)
210
+ activemodel (>= 6.0.0)
211
+ bindex (>= 0.4.0)
212
+ railties (>= 6.0.0)
213
+ websocket-driver (0.7.5)
181
214
  websocket-extensions (>= 0.1.0)
182
215
  websocket-extensions (0.1.5)
183
- zeitwerk (2.4.2)
216
+ zeitwerk (2.6.8)
184
217
 
185
218
  PLATFORMS
186
219
  ruby
@@ -188,11 +221,13 @@ PLATFORMS
188
221
  x86_64-linux
189
222
 
190
223
  DEPENDENCIES
191
- appraisal
224
+ appraisal!
225
+ puma
192
226
  rails (~> 6.1.0)
193
- rspec
194
227
  simple_calendar!
228
+ sqlite3
195
229
  standard
230
+ web-console (~> 4.2)
196
231
 
197
232
  BUNDLED WITH
198
- 2.2.20
233
+ 2.4.16
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal", github: "thoughtbot/appraisal"
6
+ gem "standard"
7
+ gem "puma"
8
+ gem "sqlite3"
9
+ gem "web-console", "~> 4.2", group: :development
10
+ gem "rails", "~> 7.0.0"
11
+
12
+ gemspec path: "../"