Skip to content

Commit

Permalink
Gemfile: Adding the correct Platform-Specific terminal notification g…
Browse files Browse the repository at this point in the history
…em based on RUBY_PLATFORM

Change-Id: I92b3a1ff2cf0cd392160245a0c5f7248dbeec847
  • Loading branch information
trinitronx committed Nov 29, 2015
1 parent a7a9499 commit 394533c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@ group :development do
gem 'rb-fsevent'
gem 'guard', '~> 2.13'
gem 'guard-rspec'

case RUBY_PLATFORM
when /darwin/
gem 'terminal-notifier-guard'
when /linux/
gem 'libnotify'
when /win32/
gem 'rb-notifu'
end
end

0 comments on commit 394533c

Please sign in to comment.