Skip to content

Commit

Permalink
gem update
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Mar 19, 2022
1 parent d35254b commit c6cb050
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 48 deletions.
91 changes: 44 additions & 47 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,72 +6,69 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (6.0.3.1)
activesupport (= 6.0.3.1)
activerecord (6.0.3.1)
activemodel (= 6.0.3.1)
activesupport (= 6.0.3.1)
activesupport (6.0.3.1)
activemodel (6.1.5)
activesupport (= 6.1.5)
activerecord (6.1.5)
activemodel (= 6.1.5)
activesupport (= 6.1.5)
activesupport (6.1.5)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
bump (0.5.3)
concurrent-ruby (1.1.6)
diff-lcs (1.3)
i18n (1.8.3)
bump (0.10.0)
concurrent-ruby (1.1.9)
diff-lcs (1.5.0)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
minitest (5.14.4)
minitest (5.15.0)
mysql2 (0.5.3)
parser (3.0.2.0)
parser (3.1.1.0)
ast (~> 2.4.1)
rainbow (3.0.0)
rake (13.0.1)
regexp_parser (2.1.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.2.1)
rexml (3.2.5)
rspec (3.6.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
rspec-mocks (~> 3.6.0)
rspec-core (3.6.0)
rspec-support (~> 3.6.0)
rspec-expectations (3.6.0)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
rspec-mocks (~> 3.11.0)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
rspec-expectations (3.11.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-legacy_formatters (1.0.1)
rspec-support (~> 3.11.0)
rspec-legacy_formatters (1.0.2)
rspec (~> 3.0)
rspec-mocks (3.6.0)
rspec-mocks (3.11.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-support (~> 3.11.0)
rspec-rerun (1.1.0)
rspec (~> 3.0)
rspec-support (3.6.0)
rubocop (1.20.0)
rspec-support (3.11.0)
rubocop (1.26.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
parser (>= 3.1.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.9.1, < 2.0)
rubocop-ast (>= 1.16.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.11.0)
parser (>= 3.0.1.1)
rubocop-ast (1.16.0)
parser (>= 3.1.1.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-rspec (2.4.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
ruby-progressbar (1.8.1)
rubocop-rspec (2.9.0)
rubocop (~> 1.19)
ruby-progressbar (1.11.0)
sqlite3 (1.4.2)
thread_safe (0.3.6)
thread_safe (0.3.6-java)
tzinfo (1.2.7)
thread_safe (~> 0.1)
unicode-display_width (2.0.0)
zeitwerk (2.3.0)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.1.0)
zeitwerk (2.5.4)

PLATFORMS
java
Expand All @@ -93,4 +90,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.16
2.3.9
2 changes: 1 addition & 1 deletion lib/parallel/processor_count.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def physical_processor_count
when /linux/
cores = {} # unique physical ID / core ID combinations
phy = 0
IO.read("/proc/cpuinfo").scan(/^physical id.*|^core id.*/) do |ln|
File.read("/proc/cpuinfo").scan(/^physical id.*|^core id.*/) do |ln|
if ln.start_with?("physical")
phy = ln[/\d+/]
elsif ln.start_with?("core")
Expand Down

0 comments on commit c6cb050

Please sign in to comment.