From f5b31e01de0189b9224e14cbb32bac3fdc865b45 Mon Sep 17 00:00:00 2001 From: Shugo Maeda Date: Fri, 20 Jan 2017 16:55:33 +0900 Subject: [PATCH] Remove bin/setup. --- README.md | 2 +- bin/setup | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100755 bin/setup diff --git a/README.md b/README.md index b6e8b97..1a1f6a4 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Add the following line to ~/.screenrc. ## Development -After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment. +After checking out the repo, run `bundle install` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). diff --git a/bin/setup b/bin/setup deleted file mode 100755 index dce67d8..0000000 --- a/bin/setup +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail -IFS=$'\n\t' -set -vx - -bundle install - -# Do any other automated setup that you need to do here