Skip to content

Commit 44b7ac8

Browse files
committed
Use the released version of strscan on lobsters and shipit
1 parent 7d9ead5 commit 44b7ac8

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

benchmarks/lobsters/Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ gem "ruumba" # tests views
5858
gem "sitemap_generator" # for better search engine indexing
5959
gem "svg-graph", require: 'SVG/Graph/TimeSeries' # for charting, note workaround in lib/time_series.rb
6060
gem 'rack-attack' # rate-limiting
61+
# Exclude https://github.com/ruby/strscan/pull/168 for tzinfo, which still uses `StringScanner#rest?`.
62+
# TODO: consider using default-gem strscan again if tzinfo is fixed.
63+
gem "strscan"
6164

6265
group :test, :development do
6366
gem 'capybara'

benchmarks/lobsters/Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ GEM
295295
mini_portile2 (~> 2.8.0)
296296
stackprof (0.2.27)
297297
stringio (3.1.7)
298+
strscan (3.1.5)
298299
svg-graph (2.2.2)
299300
thor (1.4.0)
300301
timeout (0.4.3)
@@ -370,6 +371,7 @@ DEPENDENCIES
370371
sprockets-rails (= 2.3.3)
371372
sqlite3
372373
stackprof
374+
strscan
373375
svg-graph
374376
vcr
375377
webmock
@@ -496,6 +498,7 @@ CHECKSUMS
496498
sqlite3 (2.7.3) sha256=d2b2fecd9341132f2cea3fde9061ee0fab9c9d532a8ecccfab4fe63d9621bf57
497499
stackprof (0.2.27) sha256=aff6d28656c852e74cf632cc2046f849033dc1dedffe7cb8c030d61b5745e80c
498500
stringio (3.1.7) sha256=5b78b7cb242a315fb4fca61a8255d62ec438f58da2b90be66048546ade4507fa
501+
strscan (3.1.5) sha256=f8413b90ea9395a69609a4414a8c88551bcda64337e234272c24fcd4c83e5947
499502
svg-graph (2.2.2) sha256=f928866403055e6539afdfdab5f6268d108b2abc9f002e0fc51b16511809513a
500503
thor (1.4.0) sha256=8763e822ccb0f1d7bee88cde131b19a65606657b847cc7b7b4b82e772bcd8a3d
501504
timeout (0.4.3) sha256=9509f079b2b55fe4236d79633bd75e34c1c1e7e3fb4b56cb5fda61f80a0fe30e

benchmarks/shipit/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ gem "puma", ">= 5.0"
1010
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
1111
gem "tzinfo-data", platforms: %i[ windows jruby ]
1212

13+
# Exclude https://github.com/ruby/strscan/pull/168 for tzinfo, which still uses `StringScanner#rest?`.
14+
# TODO: consider using default-gem strscan again if tzinfo is fixed.
15+
gem "strscan"
16+
1317
gem "shipit-engine", ">= 0.40.0"

benchmarks/shipit/Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ GEM
351351
activerecord (>= 5.1)
352352
state_machines-activemodel (>= 0.8.0)
353353
stringio (3.1.7)
354+
strscan (3.1.5)
354355
thor (1.4.0)
355356
thread_safe (0.3.6)
356357
tilt (2.6.1)
@@ -385,6 +386,7 @@ DEPENDENCIES
385386
rails (~> 8.0.2)
386387
shipit-engine (>= 0.40.0)
387388
sqlite3 (>= 2.1)
389+
strscan
388390
tzinfo-data
389391

390392
CHECKSUMS
@@ -510,6 +512,7 @@ CHECKSUMS
510512
state_machines-activemodel (0.100.0) sha256=5f32d5176a3fe03e482f29b37b0f60e4f5c5188a20150a4c20d50413b39c72e6
511513
state_machines-activerecord (0.8.0) sha256=072fb701b8ab03de0608297f6c55dc34ed096e556fa8f77e556f3c461c71aab6
512514
stringio (3.1.7) sha256=5b78b7cb242a315fb4fca61a8255d62ec438f58da2b90be66048546ade4507fa
515+
strscan (3.1.5) sha256=f8413b90ea9395a69609a4414a8c88551bcda64337e234272c24fcd4c83e5947
513516
thor (1.4.0) sha256=8763e822ccb0f1d7bee88cde131b19a65606657b847cc7b7b4b82e772bcd8a3d
514517
thread_safe (0.3.6) sha256=9ed7072821b51c57e8d6b7011a8e282e25aeea3a4065eab326e43f66f063b05a
515518
tilt (2.6.1) sha256=35a99bba2adf7c1e362f5b48f9b581cce4edfba98117e34696dde6d308d84770

0 commit comments

Comments
 (0)