simple_calendar 2.4.3 → 3.0.0

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 +7 -0
  6. data/Gemfile +4 -1
  7. data/Gemfile.lock +157 -136
  8. data/README.md +22 -15
  9. data/Rakefile +29 -5
  10. data/app/assets/stylesheets/simple_calendar.scss +4 -0
  11. data/app/views/simple_calendar/_calendar.html.erb +7 -7
  12. data/app/views/simple_calendar/_month_calendar.html.erb +8 -8
  13. data/app/views/simple_calendar/_week_calendar.html.erb +14 -12
  14. data/bin/rails +16 -0
  15. data/gemfiles/rails_6_1.gemfile +3 -1
  16. data/gemfiles/rails_6_1.gemfile.lock +159 -131
  17. data/gemfiles/{rails_6.gemfile → rails_7_0.gemfile} +4 -2
  18. data/gemfiles/rails_7_0.gemfile.lock +222 -0
  19. data/gemfiles/{rails_master.gemfile → rails_main.gemfile} +3 -1
  20. data/gemfiles/rails_main.gemfile.lock +246 -0
  21. data/lib/simple_calendar/calendar.rb +26 -14
  22. data/lib/simple_calendar/month_calendar.rb +4 -0
  23. data/lib/simple_calendar/version.rb +1 -1
  24. data/lib/simple_calendar/view_helpers.rb +3 -3
  25. data/lib/simple_calendar/week_calendar.rb +5 -1
  26. data/lib/simple_calendar.rb +8 -1
  27. data/simple_calendar.gemspec +1 -3
  28. data/test/calendars/calendar_test.rb +154 -0
  29. data/test/calendars/month_calendar_test.rb +16 -0
  30. data/test/dummy/Rakefile +6 -0
  31. data/test/dummy/app/assets/config/manifest.js +1 -0
  32. data/test/dummy/app/assets/images/.keep +0 -0
  33. data/test/dummy/app/assets/stylesheets/application.css +1 -0
  34. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  35. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  36. data/test/dummy/app/controllers/application_controller.rb +2 -0
  37. data/test/dummy/app/controllers/concerns/.keep +0 -0
  38. data/test/dummy/app/controllers/meetings_controller.rb +59 -0
  39. data/test/dummy/app/helpers/application_helper.rb +2 -0
  40. data/test/dummy/app/helpers/meetings_helper.rb +2 -0
  41. data/test/dummy/app/jobs/application_job.rb +7 -0
  42. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  43. data/test/dummy/app/models/application_record.rb +7 -0
  44. data/test/dummy/app/models/concerns/.keep +0 -0
  45. data/test/dummy/app/models/meeting.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  47. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  48. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  49. data/test/dummy/app/views/meetings/_form.html.erb +32 -0
  50. data/test/dummy/app/views/meetings/_meeting.html.erb +17 -0
  51. data/test/dummy/app/views/meetings/edit.html.erb +10 -0
  52. data/test/dummy/app/views/meetings/index.html.erb +24 -0
  53. data/test/dummy/app/views/meetings/new.html.erb +9 -0
  54. data/test/dummy/app/views/meetings/show.html.erb +10 -0
  55. data/test/dummy/bin/rails +4 -0
  56. data/test/dummy/bin/rake +4 -0
  57. data/test/dummy/bin/setup +33 -0
  58. data/test/dummy/config/application.rb +22 -0
  59. data/test/dummy/config/boot.rb +5 -0
  60. data/test/dummy/config/cable.yml +10 -0
  61. data/test/dummy/config/database.yml +25 -0
  62. data/test/dummy/config/environment.rb +5 -0
  63. data/test/dummy/config/environments/development.rb +67 -0
  64. data/test/dummy/config/environments/production.rb +87 -0
  65. data/test/dummy/config/environments/test.rb +60 -0
  66. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  67. data/test/dummy/config/initializers/filter_parameter_logging.rb +8 -0
  68. data/test/dummy/config/initializers/inflections.rb +16 -0
  69. data/test/dummy/config/initializers/permissions_policy.rb +11 -0
  70. data/test/dummy/config/locales/en.yml +33 -0
  71. data/test/dummy/config/puma.rb +43 -0
  72. data/test/dummy/config/routes.rb +7 -0
  73. data/test/dummy/config/storage.yml +34 -0
  74. data/test/dummy/config.ru +6 -0
  75. data/test/dummy/db/migrate/20220930184313_create_meetings.rb +11 -0
  76. data/test/dummy/db/schema.rb +21 -0
  77. data/test/dummy/lib/assets/.keep +0 -0
  78. data/test/dummy/log/.keep +0 -0
  79. data/test/dummy/public/404.html +67 -0
  80. data/test/dummy/public/422.html +67 -0
  81. data/test/dummy/public/500.html +66 -0
  82. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  83. data/test/dummy/public/apple-touch-icon.png +0 -0
  84. data/test/dummy/public/favicon.ico +0 -0
  85. data/test/dummy/storage/.keep +0 -0
  86. data/test/dummy/tmp/.keep +0 -0
  87. data/test/dummy/tmp/development_secret.txt +1 -0
  88. data/test/dummy/tmp/pids/.keep +0 -0
  89. data/test/dummy/tmp/pids/server.pid +1 -0
  90. data/test/dummy/tmp/restart.txt +0 -0
  91. data/test/dummy/tmp/storage/.keep +0 -0
  92. data/test/fixtures/meetings.yml +36 -0
  93. data/test/integrations/month_calendar_test.rb +58 -0
  94. data/test/simple_calendar_test.rb +7 -0
  95. data/test/test_helper.rb +14 -0
  96. metadata +80 -39
  97. data/gemfiles/rails_6.gemfile.lock +0 -195
  98. data/gemfiles/rails_master.gemfile.lock +0 -207
  99. data/spec/calendar_spec.rb +0 -176
  100. data/spec/calendars/month_calendar_spec.rb +0 -25
  101. data/spec/simple_calendar_spec.rb +0 -9
  102. data/spec/spec_helper.rb +0 -96
  103. data/spec/support/fake_event.rb +0 -9
  104. data/spec/support/view_context.rb +0 -20
  105. data/spec/views_generators_spec.rb +0 -7
  106. /data/lib/simple_calendar/{railtie.rb → engine.rb} +0 -0
@@ -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,10 @@
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"
7
9
  gem "rails", "~> 6.1.0"
8
10
 
9
11
  gemspec path: "../"
@@ -1,186 +1,213 @@
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.0)
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)
74
79
  builder (3.2.4)
75
- concurrent-ruby (1.1.8)
80
+ concurrent-ruby (1.2.2)
76
81
  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)
82
+ date (3.3.3)
83
+ erubi (1.12.0)
84
+ globalid (1.1.0)
85
+ activesupport (>= 5.0)
86
+ i18n (1.14.1)
82
87
  concurrent-ruby (~> 1.0)
83
- loofah (2.9.1)
88
+ json (2.6.3)
89
+ language_server-protocol (3.17.0.3)
90
+ lint_roller (1.1.0)
91
+ loofah (2.21.3)
84
92
  crass (~> 1.0.2)
85
- nokogiri (>= 1.5.9)
86
- mail (2.7.1)
93
+ nokogiri (>= 1.12.0)
94
+ mail (2.8.1)
87
95
  mini_mime (>= 0.1.1)
88
- marcel (1.0.1)
96
+ net-imap
97
+ net-pop
98
+ net-smtp
99
+ marcel (1.0.2)
89
100
  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)
101
+ mini_mime (1.1.2)
102
+ mini_portile2 (2.8.2)
103
+ minitest (5.18.1)
104
+ net-imap (0.3.6)
105
+ date
106
+ net-protocol
107
+ net-pop (0.1.2)
108
+ net-protocol
109
+ net-protocol (0.2.1)
110
+ timeout
111
+ net-smtp (0.3.3)
112
+ net-protocol
113
+ nio4r (2.5.9)
114
+ nokogiri (1.15.3)
115
+ mini_portile2 (~> 2.8.2)
96
116
  racc (~> 1.4)
97
- nokogiri (1.11.3-x86_64-darwin)
117
+ nokogiri (1.15.3-x86_64-darwin)
98
118
  racc (~> 1.4)
99
- nokogiri (1.11.3-x86_64-linux)
119
+ nokogiri (1.15.3-x86_64-linux)
100
120
  racc (~> 1.4)
101
- parallel (1.20.1)
102
- parser (3.0.1.1)
121
+ parallel (1.23.0)
122
+ parser (3.2.2.3)
103
123
  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)
124
+ racc
125
+ puma (6.3.0)
126
+ nio4r (~> 2.0)
127
+ racc (1.7.1)
128
+ rack (2.2.7)
129
+ rack-test (2.1.0)
130
+ rack (>= 1.3)
131
+ rails (6.1.7.4)
132
+ actioncable (= 6.1.7.4)
133
+ actionmailbox (= 6.1.7.4)
134
+ actionmailer (= 6.1.7.4)
135
+ actionpack (= 6.1.7.4)
136
+ actiontext (= 6.1.7.4)
137
+ actionview (= 6.1.7.4)
138
+ activejob (= 6.1.7.4)
139
+ activemodel (= 6.1.7.4)
140
+ activerecord (= 6.1.7.4)
141
+ activestorage (= 6.1.7.4)
142
+ activesupport (= 6.1.7.4)
120
143
  bundler (>= 1.15.0)
121
- railties (= 6.1.3.2)
144
+ railties (= 6.1.7.4)
122
145
  sprockets-rails (>= 2.0.0)
123
- rails-dom-testing (2.0.3)
124
- activesupport (>= 4.2.0)
146
+ rails-dom-testing (2.1.1)
147
+ activesupport (>= 5.0.0)
148
+ minitest
125
149
  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)
150
+ rails-html-sanitizer (1.6.0)
151
+ loofah (~> 2.21)
152
+ nokogiri (~> 1.14)
153
+ railties (6.1.7.4)
154
+ actionpack (= 6.1.7.4)
155
+ activesupport (= 6.1.7.4)
131
156
  method_source
132
- rake (>= 0.8.7)
157
+ rake (>= 12.2)
133
158
  thor (~> 1.0)
134
- rainbow (3.0.0)
135
- rake (13.0.3)
136
- regexp_parser (2.1.1)
159
+ rainbow (3.1.1)
160
+ rake (13.0.6)
161
+ regexp_parser (2.8.1)
137
162
  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)
163
+ rubocop (1.52.1)
164
+ json (~> 2.3)
152
165
  parallel (~> 1.10)
153
- parser (>= 3.0.0.0)
166
+ parser (>= 3.2.2.3)
154
167
  rainbow (>= 2.2.2, < 4.0)
155
168
  regexp_parser (>= 1.8, < 3.0)
156
- rexml
157
- rubocop-ast (>= 1.5.0, < 2.0)
169
+ rexml (>= 3.2.5, < 4.0)
170
+ rubocop-ast (>= 1.28.0, < 2.0)
158
171
  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)
172
+ unicode-display_width (>= 2.4.0, < 3.0)
173
+ rubocop-ast (1.29.0)
174
+ parser (>= 3.2.1.0)
175
+ rubocop-performance (1.18.0)
163
176
  rubocop (>= 1.7.0, < 2.0)
164
177
  rubocop-ast (>= 0.4.0)
165
- ruby-progressbar (1.11.0)
166
- sprockets (4.0.2)
178
+ ruby-progressbar (1.13.0)
179
+ sprockets (4.2.0)
167
180
  concurrent-ruby (~> 1.0)
168
- rack (> 1, < 3)
169
- sprockets-rails (3.2.2)
170
- actionpack (>= 4.0)
171
- activesupport (>= 4.0)
181
+ rack (>= 2.2.4, < 4)
182
+ sprockets-rails (3.4.2)
183
+ actionpack (>= 5.2)
184
+ activesupport (>= 5.2)
172
185
  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)
186
+ sqlite3 (1.6.3)
187
+ mini_portile2 (~> 2.8.0)
188
+ sqlite3 (1.6.3-x86_64-darwin)
189
+ sqlite3 (1.6.3-x86_64-linux)
190
+ standard (1.30.1)
191
+ language_server-protocol (~> 3.17.0.2)
192
+ lint_roller (~> 1.0)
193
+ rubocop (~> 1.52.0)
194
+ standard-custom (~> 1.0.0)
195
+ standard-performance (~> 1.1.0)
196
+ standard-custom (1.0.2)
197
+ lint_roller (~> 1.0)
198
+ rubocop (~> 1.50)
199
+ standard-performance (1.1.1)
200
+ lint_roller (~> 1.1)
201
+ rubocop-performance (~> 1.18.0)
202
+ thor (1.2.2)
203
+ timeout (0.4.0)
204
+ tzinfo (2.0.6)
178
205
  concurrent-ruby (~> 1.0)
179
- unicode-display_width (2.0.0)
180
- websocket-driver (0.7.3)
206
+ unicode-display_width (2.4.2)
207
+ websocket-driver (0.7.5)
181
208
  websocket-extensions (>= 0.1.0)
182
209
  websocket-extensions (0.1.5)
183
- zeitwerk (2.4.2)
210
+ zeitwerk (2.6.8)
184
211
 
185
212
  PLATFORMS
186
213
  ruby
@@ -188,11 +215,12 @@ PLATFORMS
188
215
  x86_64-linux
189
216
 
190
217
  DEPENDENCIES
191
- appraisal
218
+ appraisal!
219
+ puma
192
220
  rails (~> 6.1.0)
193
- rspec
194
221
  simple_calendar!
222
+ sqlite3
195
223
  standard
196
224
 
197
225
  BUNDLED WITH
198
- 2.2.20
226
+ 2.4.16
@@ -2,8 +2,10 @@
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 "rails", "~> 6.0.0"
7
+ gem "puma"
8
+ gem "sqlite3"
9
+ gem "rails", "~> 7.0.0"
8
10
 
9
11
  gemspec path: "../"
@@ -0,0 +1,222 @@
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
+
10
+ PATH
11
+ remote: ..
12
+ specs:
13
+ simple_calendar (3.0.0)
14
+ rails (>= 6.1)
15
+
16
+ GEM
17
+ remote: http://rubygems.org/
18
+ specs:
19
+ actioncable (7.0.6)
20
+ actionpack (= 7.0.6)
21
+ activesupport (= 7.0.6)
22
+ nio4r (~> 2.0)
23
+ websocket-driver (>= 0.6.1)
24
+ actionmailbox (7.0.6)
25
+ actionpack (= 7.0.6)
26
+ activejob (= 7.0.6)
27
+ activerecord (= 7.0.6)
28
+ activestorage (= 7.0.6)
29
+ activesupport (= 7.0.6)
30
+ mail (>= 2.7.1)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ actionmailer (7.0.6)
35
+ actionpack (= 7.0.6)
36
+ actionview (= 7.0.6)
37
+ activejob (= 7.0.6)
38
+ activesupport (= 7.0.6)
39
+ mail (~> 2.5, >= 2.5.4)
40
+ net-imap
41
+ net-pop
42
+ net-smtp
43
+ rails-dom-testing (~> 2.0)
44
+ actionpack (7.0.6)
45
+ actionview (= 7.0.6)
46
+ activesupport (= 7.0.6)
47
+ rack (~> 2.0, >= 2.2.4)
48
+ rack-test (>= 0.6.3)
49
+ rails-dom-testing (~> 2.0)
50
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
51
+ actiontext (7.0.6)
52
+ actionpack (= 7.0.6)
53
+ activerecord (= 7.0.6)
54
+ activestorage (= 7.0.6)
55
+ activesupport (= 7.0.6)
56
+ globalid (>= 0.6.0)
57
+ nokogiri (>= 1.8.5)
58
+ actionview (7.0.6)
59
+ activesupport (= 7.0.6)
60
+ builder (~> 3.1)
61
+ erubi (~> 1.4)
62
+ rails-dom-testing (~> 2.0)
63
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
64
+ activejob (7.0.6)
65
+ activesupport (= 7.0.6)
66
+ globalid (>= 0.3.6)
67
+ activemodel (7.0.6)
68
+ activesupport (= 7.0.6)
69
+ activerecord (7.0.6)
70
+ activemodel (= 7.0.6)
71
+ activesupport (= 7.0.6)
72
+ activestorage (7.0.6)
73
+ actionpack (= 7.0.6)
74
+ activejob (= 7.0.6)
75
+ activerecord (= 7.0.6)
76
+ activesupport (= 7.0.6)
77
+ marcel (~> 1.0)
78
+ mini_mime (>= 1.1.0)
79
+ activesupport (7.0.6)
80
+ concurrent-ruby (~> 1.0, >= 1.0.2)
81
+ i18n (>= 1.6, < 2)
82
+ minitest (>= 5.1)
83
+ tzinfo (~> 2.0)
84
+ ast (2.4.2)
85
+ builder (3.2.4)
86
+ concurrent-ruby (1.2.2)
87
+ crass (1.0.6)
88
+ date (3.3.3)
89
+ erubi (1.12.0)
90
+ globalid (1.1.0)
91
+ activesupport (>= 5.0)
92
+ i18n (1.14.1)
93
+ concurrent-ruby (~> 1.0)
94
+ json (2.6.3)
95
+ language_server-protocol (3.17.0.3)
96
+ lint_roller (1.1.0)
97
+ loofah (2.21.3)
98
+ crass (~> 1.0.2)
99
+ nokogiri (>= 1.12.0)
100
+ mail (2.8.1)
101
+ mini_mime (>= 0.1.1)
102
+ net-imap
103
+ net-pop
104
+ net-smtp
105
+ marcel (1.0.2)
106
+ method_source (1.0.0)
107
+ mini_mime (1.1.2)
108
+ minitest (5.18.1)
109
+ net-imap (0.3.6)
110
+ date
111
+ net-protocol
112
+ net-pop (0.1.2)
113
+ net-protocol
114
+ net-protocol (0.2.1)
115
+ timeout
116
+ net-smtp (0.3.3)
117
+ net-protocol
118
+ nio4r (2.5.9)
119
+ nokogiri (1.15.3-arm64-darwin)
120
+ racc (~> 1.4)
121
+ nokogiri (1.15.3-x86_64-darwin)
122
+ racc (~> 1.4)
123
+ nokogiri (1.15.3-x86_64-linux)
124
+ racc (~> 1.4)
125
+ parallel (1.23.0)
126
+ parser (3.2.2.3)
127
+ ast (~> 2.4.1)
128
+ racc
129
+ puma (6.3.0)
130
+ nio4r (~> 2.0)
131
+ racc (1.7.1)
132
+ rack (2.2.7)
133
+ rack-test (2.1.0)
134
+ rack (>= 1.3)
135
+ rails (7.0.6)
136
+ actioncable (= 7.0.6)
137
+ actionmailbox (= 7.0.6)
138
+ actionmailer (= 7.0.6)
139
+ actionpack (= 7.0.6)
140
+ actiontext (= 7.0.6)
141
+ actionview (= 7.0.6)
142
+ activejob (= 7.0.6)
143
+ activemodel (= 7.0.6)
144
+ activerecord (= 7.0.6)
145
+ activestorage (= 7.0.6)
146
+ activesupport (= 7.0.6)
147
+ bundler (>= 1.15.0)
148
+ railties (= 7.0.6)
149
+ rails-dom-testing (2.1.1)
150
+ activesupport (>= 5.0.0)
151
+ minitest
152
+ nokogiri (>= 1.6)
153
+ rails-html-sanitizer (1.6.0)
154
+ loofah (~> 2.21)
155
+ nokogiri (~> 1.14)
156
+ railties (7.0.6)
157
+ actionpack (= 7.0.6)
158
+ activesupport (= 7.0.6)
159
+ method_source
160
+ rake (>= 12.2)
161
+ thor (~> 1.0)
162
+ zeitwerk (~> 2.5)
163
+ rainbow (3.1.1)
164
+ rake (13.0.6)
165
+ regexp_parser (2.8.1)
166
+ rexml (3.2.5)
167
+ rubocop (1.52.1)
168
+ json (~> 2.3)
169
+ parallel (~> 1.10)
170
+ parser (>= 3.2.2.3)
171
+ rainbow (>= 2.2.2, < 4.0)
172
+ regexp_parser (>= 1.8, < 3.0)
173
+ rexml (>= 3.2.5, < 4.0)
174
+ rubocop-ast (>= 1.28.0, < 2.0)
175
+ ruby-progressbar (~> 1.7)
176
+ unicode-display_width (>= 2.4.0, < 3.0)
177
+ rubocop-ast (1.29.0)
178
+ parser (>= 3.2.1.0)
179
+ rubocop-performance (1.18.0)
180
+ rubocop (>= 1.7.0, < 2.0)
181
+ rubocop-ast (>= 0.4.0)
182
+ ruby-progressbar (1.13.0)
183
+ sqlite3 (1.6.3-arm64-darwin)
184
+ sqlite3 (1.6.3-x86_64-darwin)
185
+ sqlite3 (1.6.3-x86_64-linux)
186
+ standard (1.30.1)
187
+ language_server-protocol (~> 3.17.0.2)
188
+ lint_roller (~> 1.0)
189
+ rubocop (~> 1.52.0)
190
+ standard-custom (~> 1.0.0)
191
+ standard-performance (~> 1.1.0)
192
+ standard-custom (1.0.2)
193
+ lint_roller (~> 1.0)
194
+ rubocop (~> 1.50)
195
+ standard-performance (1.1.1)
196
+ lint_roller (~> 1.1)
197
+ rubocop-performance (~> 1.18.0)
198
+ thor (1.2.2)
199
+ timeout (0.4.0)
200
+ tzinfo (2.0.6)
201
+ concurrent-ruby (~> 1.0)
202
+ unicode-display_width (2.4.2)
203
+ websocket-driver (0.7.5)
204
+ websocket-extensions (>= 0.1.0)
205
+ websocket-extensions (0.1.5)
206
+ zeitwerk (2.6.8)
207
+
208
+ PLATFORMS
209
+ arm64-darwin-22
210
+ x86_64-darwin-22
211
+ x86_64-linux
212
+
213
+ DEPENDENCIES
214
+ appraisal!
215
+ puma
216
+ rails (~> 7.0.0)
217
+ simple_calendar!
218
+ sqlite3
219
+ standard
220
+
221
+ BUNDLED WITH
222
+ 2.4.16
@@ -2,8 +2,10 @@
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"
7
9
  gem "rails", github: "rails/rails"
8
10
 
9
11
  gemspec path: "../"