Skip to content

Commit cc0cf92

Browse files
authored
API changes
Implements the api changes requested in: https://3.basecamp.com/2914079/buckets/43347111/messages/8920517868
1 parent 5e9376f commit cc0cf92

40 files changed

+836
-487
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.bundle/
2+
/.claude
23
/doc/
34
/log/*.log
45
/pkg/

.rubocop.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# Omakase Ruby styling for Rails
22
inherit_gem: { rubocop-rails-omakase: rubocop.yml }
3+
4+
AllCops:
5+
Exclude:
6+
- "test/dummy/db/schema.rb"

Gemfile.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ GEM
6868
crass (1.0.6)
6969
date (3.4.1)
7070
drb (2.2.3)
71-
erb (5.0.1)
71+
erb (5.0.2)
7272
erubi (1.13.1)
73-
faraday (2.13.1)
73+
faraday (2.13.4)
7474
faraday-net_http (>= 2.0, < 3.5)
7575
json
7676
logger
77-
faraday-net_http (3.4.0)
77+
faraday-net_http (3.4.1)
7878
net-http (>= 0.5.0)
7979
globalid (1.2.1)
8080
activesupport (>= 6.1)
@@ -94,13 +94,13 @@ GEM
9494
http-2 (1.1.1)
9595
i18n (1.14.7)
9696
concurrent-ruby (~> 1.0)
97-
io-console (0.8.0)
97+
io-console (0.8.1)
9898
irb (1.15.2)
9999
pp (>= 0.6.0)
100100
rdoc (>= 4.0.0)
101101
reline (>= 0.4.2)
102102
json (2.13.2)
103-
jwt (2.10.1)
103+
jwt (2.10.2)
104104
base64
105105
language_server-protocol (3.17.0.5)
106106
lint_roller (1.1.0)
@@ -111,26 +111,26 @@ GEM
111111
minitest (5.25.5)
112112
mocha (2.7.1)
113113
ruby2_keywords (>= 0.0.5)
114-
multi_json (1.15.0)
114+
multi_json (1.17.0)
115115
net-http (0.6.0)
116116
uri
117117
net-http2 (0.19.0)
118118
http-2 (>= 1.0)
119-
nokogiri (1.18.8-aarch64-linux-gnu)
119+
nokogiri (1.18.9-aarch64-linux-gnu)
120120
racc (~> 1.4)
121-
nokogiri (1.18.8-aarch64-linux-musl)
121+
nokogiri (1.18.9-aarch64-linux-musl)
122122
racc (~> 1.4)
123-
nokogiri (1.18.8-arm-linux-gnu)
123+
nokogiri (1.18.9-arm-linux-gnu)
124124
racc (~> 1.4)
125-
nokogiri (1.18.8-arm-linux-musl)
125+
nokogiri (1.18.9-arm-linux-musl)
126126
racc (~> 1.4)
127-
nokogiri (1.18.8-arm64-darwin)
127+
nokogiri (1.18.9-arm64-darwin)
128128
racc (~> 1.4)
129-
nokogiri (1.18.8-x86_64-darwin)
129+
nokogiri (1.18.9-x86_64-darwin)
130130
racc (~> 1.4)
131-
nokogiri (1.18.8-x86_64-linux-gnu)
131+
nokogiri (1.18.9-x86_64-linux-gnu)
132132
racc (~> 1.4)
133-
nokogiri (1.18.8-x86_64-linux-musl)
133+
nokogiri (1.18.9-x86_64-linux-musl)
134134
racc (~> 1.4)
135135
os (1.1.4)
136136
parallel (1.27.0)
@@ -171,11 +171,11 @@ GEM
171171
zeitwerk (~> 2.6)
172172
rainbow (3.1.1)
173173
rake (13.3.0)
174-
rdoc (6.14.0)
174+
rdoc (6.14.2)
175175
erb
176176
psych (>= 4.0.0)
177177
regexp_parser (2.11.0)
178-
reline (0.6.1)
178+
reline (0.6.2)
179179
io-console (~> 0.5)
180180
rexml (3.4.1)
181181
rubocop (1.79.2)
@@ -223,7 +223,7 @@ GEM
223223
sqlite3 (2.7.3-x86_64-linux-gnu)
224224
sqlite3 (2.7.3-x86_64-linux-musl)
225225
stringio (3.1.7)
226-
thor (1.3.2)
226+
thor (1.4.0)
227227
timeout (0.4.3)
228228
tzinfo (2.0.6)
229229
concurrent-ruby (~> 1.0)

0 commit comments

Comments
 (0)