Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Foreman from Gemfile #159

Merged
merged 1 commit into from
Jun 19, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ gem 'stripe'
gem 'uglifier'
gem 'unicorn'

group :development do
gem 'foreman'
end

group :development, :test do
gem "byebug"
gem 'dotenv-rails'
Expand Down
4 changes: 0 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ GEM
factory_girl_rails (4.5.0)
factory_girl (~> 4.5.0)
railties (>= 3.0.0)
foreman (0.76.0)
dotenv (~> 1.0.2)
thor (~> 0.19.1)
formulaic (0.1.2)
activesupport
capybara
Expand Down Expand Up @@ -254,7 +251,6 @@ DEPENDENCIES
dotenv-rails
draper
factory_girl_rails
foreman
formulaic
friendly_id
geocoder
Expand Down
7 changes: 4 additions & 3 deletions bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ if ! grep --quiet --no-messages --fixed-strings 'port' .foreman; then
printf 'port: 9000\n' >> .foreman
fi

if ! command -v foreman > /dev/null; then
printf 'Foreman is not installed.\n'
printf 'See https://github.com/ddollar/foreman for install instructions.\n'
# Print warning if Foreman is not installed
if ! command -v foreman &>/dev/null; then
echo "foreman is not installed."
echo "See https://github.com/ddollar/foreman for install instructions."
fi

# Only if this isn't CI
Expand Down