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
11 changes: 0 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ RUN unzip duckdb.zip -d libduckdb && \
mv libduckdb/libduckdb.so /usr/local/lib && \
ldconfig /usr/local/lib

RUN mkdir valgrind-tmp && \
cd valgrind-tmp && \
wget https://sourceware.org/pub/valgrind/valgrind-${VALGRIND_VERSION}.tar.bz2 && \
tar xf valgrind-${VALGRIND_VERSION}.tar.bz2 && \
cd valgrind-${VALGRIND_VERSION} && \
./configure && \
make -s && \
make -s install && \
cd .. && \
rm -rf /valgrind-tmp

COPY . /root/ruby-duckdb
WORKDIR /root/ruby-duckdb
RUN git config --global --add safe.directory /root/ruby-duckdb
Expand Down
9 changes: 0 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@ gem 'minitest', '~> 6.0'
gem 'rake', '~> 13.0'
gem 'rake-compiler'

if /(linux|darwin)/ =~ RUBY_PLATFORM
gem 'benchmark-ips'
gem 'stackprof'
end

if /linux/ =~ RUBY_PLATFORM
gem 'ruby_memcheck'
end

gem 'rubocop', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rake', require: false
21 changes: 0 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ GEM
addressable (2.8.9)
public_suffix (>= 2.0.2, < 8.0)
ast (2.4.3)
benchmark-ips (2.14.0)
bigdecimal (4.0.1)
csv (3.3.5)
drb (2.2.3)
Expand All @@ -22,23 +21,9 @@ GEM
lint_roller (1.1.0)
mcp (0.8.0)
json-schema (>= 4.1)
mini_portile2 (2.8.9)
minitest (6.0.2)
drb (~> 2.0)
prism (~> 1.5)
nokogiri (1.19.1)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.19.1-aarch64-linux-gnu)
racc (~> 1.4)
nokogiri (1.19.1-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.19.1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.19.1-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.19.1-x86_64-linux-gnu)
racc (~> 1.4)
parallel (1.27.0)
parser (3.3.10.2)
ast (~> 2.4.1)
Expand Down Expand Up @@ -74,9 +59,6 @@ GEM
lint_roller (~> 1.1)
rubocop (>= 1.72.1)
ruby-progressbar (1.13.0)
ruby_memcheck (3.0.1)
nokogiri
stackprof (0.2.28)
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.2.0)
Expand All @@ -90,7 +72,6 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
benchmark-ips
bundler (~> 4.0)
csv
duckdb!
Expand All @@ -100,8 +81,6 @@ DEPENDENCIES
rubocop
rubocop-minitest
rubocop-rake
ruby_memcheck
stackprof

BUNDLED WITH
4.0.4
Loading