rubyfast 1.1.1

A Ruby performance linter rewritten in Rust — detects 19 common anti-patterns, ~100x faster than the original fasterer gem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:1 AS builder

WORKDIR /build
COPY Cargo.toml Cargo.lock ./
COPY src/ src/

RUN cargo build --release && strip target/release/rubyfast

# -----------------------------------------------------------
FROM gcr.io/distroless/cc-debian13:debug

COPY --from=builder /build/target/release/rubyfast /usr/local/bin/rubyfast

WORKDIR /workspace

ENTRYPOINT ["rubyfast"]