Skip to content

Instantly share code, notes, and snippets.

@blackxored
Created February 19, 2013 09:32
Show Gist options
  • Save blackxored/4984371 to your computer and use it in GitHub Desktop.
Save blackxored/4984371 to your computer and use it in GitHub Desktop.
group :development, :test do
# ...
if RUBY_PLATFORM.downcase.include?("darwin")
gem 'rb-fsevent'
gem 'growl'
end
if RUBY_PLATFORM.downcase.include?("linux")
gem 'libnotify'
gem 'rb-inotify', '~> 0.8.8'
end
end
** [out :: staging] You are trying to install in deployment mode after changing
** [out :: staging] your Gemfile. Run `bundle install` elsewhere and add the
** [out :: staging] updated Gemfile.lock to version control.
** [out :: staging]
** [out :: staging] You have added to the Gemfile:
** [out :: staging] * libnotify
** [out :: staging] * rb-inotify (~> 0.8.8)
** [out :: staging]
** [out :: staging] You have deleted from the Gemfile:
** [out :: staging] * growl
** [out :: staging] * rb-fsevent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment