File: setup

package info (click to toggle)
ruby-hitimes 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ruby: 1,385; makefile: 7
file content (12 lines) | stat: -rwxr-xr-x 248 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ruby
# frozen_string_literal: true

require "pathname"
require "fileutils"

PROJECT_ROOT = Pathname.new(__dir__).parent.expand_path

FileUtils.chdir(PROJECT_ROOT) do
  puts "Installing dependencies..."
  system("bundle install")
end