10 lines
180 B
Ruby
10 lines
180 B
Ruby
|
source "http://rubygems.org"
|
||
|
|
||
|
# Specify your gem's dependencies in guard-puppet.gemspec
|
||
|
gemspec
|
||
|
|
||
|
require 'rbconfig'
|
||
|
if RbConfig::CONFIG['host_os'] =~ /linux/
|
||
|
gem 'libnotify'
|
||
|
end
|