File tree Expand file tree Collapse file tree 3 files changed +15
-6
lines changed
Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ group :development, :test do
6666 gem 'dotenv-rails' , '~> 3.2.0'
6767 gem 'i18n-tasks' , '~> 1.1.2'
6868 gem 'rspec-rails' , '~> 8.0.3'
69- gem 'rubocop' , '~> 1.84.2 '
69+ gem 'rubocop' , '~> 1.85.0 '
7070 gem 'rubocop-performance' , '~> 1.26.1'
7171 gem 'rubocop-rails' , '~> 2.34.3'
7272 gem 'rubocop-rspec' , '~> 3.9.0'
Original file line number Diff line number Diff line change 8282 securerandom (>= 0.3 )
8383 tzinfo (~> 2.0 , >= 2.0.5 )
8484 uri (>= 0.13.1 )
85+ addressable (2.8.9 )
86+ public_suffix (>= 2.0.2 , < 8.0 )
8587 ast (2.4.3 )
8688 aws-eventstream (1.4.0 )
8789 aws-partitions (1.1220.0 )
183185 jsbundling-rails (1.3.1 )
184186 railties (>= 6.0.0 )
185187 json (2.18.1 )
188+ json-schema (6.1.0 )
189+ addressable (~> 2.8 )
190+ bigdecimal (>= 3.1 , < 5 )
186191 jwt (3.1.2 )
187192 base64
188193 language_server-protocol (3.17.0.5 )
202207 net-pop
203208 net-smtp
204209 marcel (1.1.0 )
210+ mcp (0.7.1 )
211+ json-schema (>= 4.1 )
205212 mime-types (3.3.1 )
206213 mime-types-data (~> 3.2015 )
207214 mime-types-data (3.2020.0512 )
234241 nokogiri (1.19.1-x86_64-linux-musl )
235242 racc (~> 1.4 )
236243 parallel (1.27.0 )
237- parser (3.3.10.1 )
244+ parser (3.3.10.2 )
238245 ast (~> 2.4.1 )
239246 racc
240247 pg (1.6.3 )
253260 psych (5.3.1 )
254261 date
255262 stringio
263+ public_suffix (7.0.2 )
256264 puma (7.2.0 )
257265 nio4r (~> 2.0 )
258266 raabro (1.4.0 )
@@ -351,10 +359,11 @@ GEM
351359 rspec-mocks (~> 3.13 )
352360 rspec-support (~> 3.13 )
353361 rspec-support (3.13.7 )
354- rubocop (1.84.2 )
362+ rubocop (1.85.0 )
355363 json (~> 2.3 )
356364 language_server-protocol (~> 3.17.0.2 )
357365 lint_roller (~> 1.1.0 )
366+ mcp (~> 0.6 )
358367 parallel (~> 1.10 )
359368 parser (>= 3.3.0.2 )
360369 rainbow (>= 2.2.2 , < 4.0 )
@@ -464,7 +473,7 @@ DEPENDENCIES
464473 rollbar (~> 3.7.0 )
465474 roo (~> 3.0.0 )
466475 rspec-rails (~> 8.0.3 )
467- rubocop (~> 1.84.2 )
476+ rubocop (~> 1.85.0 )
468477 rubocop-performance (~> 1.26.1 )
469478 rubocop-rails (~> 2.34.3 )
470479 rubocop-rspec (~> 3.9.0 )
Original file line number Diff line number Diff line change 122122 let ( :access_token ) { 'AccessToken' }
123123
124124 before do
125- get_user_struct = Struct . new ( :user_attributes , keyword_init : true )
126- user_attribute_struct = Struct . new ( :name , :value , keyword_init : true )
125+ get_user_struct = Struct . new ( :user_attributes )
126+ user_attribute_struct = Struct . new ( :name , :value )
127127
128128 allow ( Aws ::CognitoIdentityProvider ::Client ) . to receive ( :new ) . and_return ( cognito_identity_provider_client )
129129 allow ( cognito_identity_provider_client ) . to receive ( :get_user ) . with ( { access_token : } ) . and_return (
You can’t perform that action at this time.
0 commit comments