/usr/bin/setup is in ruby-factory-girl-rails 4.7.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env sh
# Run this script immediately after cloning the codebase.
# Exit if any subcommand fails
set -e
# Set up Ruby dependencies via Bundler
bundle install
# Add binstubs to PATH in ~/.zshenv like this:
# export PATH=".git/safe/../../bin:$PATH"
mkdir -p .git/safe
# Set up Appraisal to help us test against multiple Rails versions
bundle exec appraisal install
|