From a57dd6d7bee7b78cfe0b393badab314782bbd97b Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 15 Oct 2022 19:50:03 +0200 Subject: [PATCH] refactor: migrate Ruby installers to Gemfile --- .gitignore | 1 + Gemfile | 8 ++++++++ setup/ruby.sh | 1 + 3 files changed, 10 insertions(+) create mode 100644 Gemfile diff --git a/.gitignore b/.gitignore index 6885e54..093870f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ nvim/plugin .vale/write-good kitty/kitty.conf.bak Brewfile.lock.json +Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..6747c57 --- /dev/null +++ b/Gemfile @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +gem "neovim" +gem "lunchy" +gem "git-up" +gem "erb_lint" diff --git a/setup/ruby.sh b/setup/ruby.sh index 4ac9189..5c41a32 100755 --- a/setup/ruby.sh +++ b/setup/ruby.sh @@ -3,3 +3,4 @@ rbenv install $(rbenv install -l | grep -v - | tail -1) rbenv global $(rbenv install -l | grep -v - | tail -1) +bundle install --gemfile=~/.dotfiles/Gemfile