Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (7.2.2)
activesupport (8.0.0)
base64
benchmark (>= 0.3)
bigdecimal
Expand All @@ -18,9 +18,10 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
ast (2.4.2)
base64 (0.2.0)
benchmark (0.3.0)
benchmark (0.4.0)
bigdecimal (3.1.8)
binding_of_caller (1.0.1)
debug_inspector (>= 1.2.0)
Expand All @@ -40,8 +41,8 @@ GEM
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.1)
minitest (5.25.1)
logger (1.6.2)
minitest (5.25.4)
multi_json (1.15.0)
net-scp (4.0.0)
net-ssh (>= 2.6.5, < 8.0.0)
Expand All @@ -64,7 +65,7 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rbs (3.6.1)
rbs (3.7.0)
logger
regexp_parser (2.9.3)
rouge (4.4.0)
Expand Down Expand Up @@ -113,7 +114,7 @@ GEM
rubocop (>= 1.30.0)
ruby-progressbar (1.13.0)
ruby_header_parser (0.3.0)
securerandom (0.3.1)
securerandom (0.4.0)
serverspec (2.42.3)
multi_json
rspec (~> 3.0)
Expand All @@ -126,7 +127,7 @@ GEM
net-ssh (>= 2.7)
net-telnet
sfl
steep (1.8.3)
steep (1.9.0)
activesupport (>= 5.1)
concurrent-ruby (>= 1.1.10)
csv (>= 3.0.9)
Expand All @@ -137,7 +138,7 @@ GEM
logger (>= 1.3.0)
parser (>= 3.1)
rainbow (>= 2.2.2, < 4.0)
rbs (~> 3.6.0)
rbs (~> 3.7.0)
securerandom (>= 0.1)
strscan (>= 1.0.0)
terminal-table (>= 2, < 4)
Expand All @@ -152,6 +153,7 @@ GEM
unparser (0.6.15)
diff-lcs (~> 1.3)
parser (>= 3.3.0)
uri (1.0.2)
yard (0.9.37)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion _gem/lib/go_gem/rake_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def self.build_env_vars
ldflags.gsub!("-Wl,--unresolved-symbols=ignore-all", "")
end

ld_library_path = RbConfig::CONFIG["libdir"]
ld_library_path = RbConfig::CONFIG["libdir"].to_s

{
"CGO_CFLAGS" => cflags,
Expand Down
Loading