Artёm
Artёm
My Gemfile: ```ruby gem 'dry-configurable', '0.15.0' gem 'tdlib-ruby' ``` Trying to run the example from the current README and getting only the following: ``` /home/yart/work/alcom/coding/tapp/vendor/bundle/ruby/3.2.0/gems/dry-configurable-0.15.0/lib/dry/configurable/dsl.rb:28:in `initialize' [dry-configurable] passing a constructor...
Hello! I'm using the following Dockerfile: ```dockerfile ARG RUBY_VERSION=3.3 ARG DISTRO_NAME=bullseye FROM mcr.microsoft.com/devcontainers/ruby:1-$RUBY_VERSION-$DISTRO_NAME ARG NODE_VERSION="20" RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1" # . . ....