Skip to content

Commit 6c65b1a

Browse files
committed
removed ruby_gntp in favor of terminal-notifier
1 parent 712fd4e commit 6c65b1a

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ gem "thin"
1313
gem "eventmachine"
1414
gem "faye-websocket"
1515
gem "simplecov"
16-
gem "ruby_gntp"
16+
gem "terminal-notifier-guard"
1717
gem "guard"
1818
gem "guard-rspec"
1919
gem "guard-coffeescript"

Gemfile.lock

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ GEM
8888
rspec (>= 2.14, < 4.0)
8989
headless (1.0.1)
9090
hike (1.2.3)
91-
hiredis (0.4.5)
91+
hiredis (0.5.2)
92+
hiredis (0.5.2-java)
9293
i18n (0.6.9)
9394
jasmine (2.0.0)
9495
jasmine-core (~> 2.0.0)
@@ -114,7 +115,7 @@ GEM
114115
nio4r (1.0.0)
115116
nio4r (1.0.0-java)
116117
phantomjs (1.9.7.0)
117-
polyglot (0.3.4)
118+
polyglot (0.3.5)
118119
pry (0.9.12.6)
119120
coderay (~> 1.0)
120121
method_source (~> 0.8)
@@ -144,8 +145,8 @@ GEM
144145
rb-fsevent (0.9.4)
145146
rb-inotify (0.9.3)
146147
ffi (>= 0.5.0)
147-
redis (3.0.7)
148-
redis-objects (0.9.0)
148+
redis (3.1.0)
149+
redis-objects (1.0.0)
149150
redis (>= 3.0.2)
150151
ref (1.0.5)
151152
rspec (2.14.1)
@@ -165,7 +166,6 @@ GEM
165166
rspec-core (~> 2.14.0)
166167
rspec-expectations (~> 2.14.0)
167168
rspec-mocks (~> 2.14.0)
168-
ruby_gntp (0.3.4)
169169
rubyzip (1.1.0)
170170
selenium-webdriver (2.40.0)
171171
childprocess (>= 0.5.0)
@@ -180,7 +180,7 @@ GEM
180180
slop (3.5.0)
181181
spoon (0.0.4)
182182
ffi
183-
sprockets (2.12.0)
183+
sprockets (2.12.1)
184184
hike (~> 1.2)
185185
multi_json (~> 1.0)
186186
rack (~> 1.0)
@@ -190,6 +190,7 @@ GEM
190190
activesupport (>= 3.0)
191191
sprockets (~> 2.8)
192192
sqlite3 (1.3.9)
193+
terminal-notifier-guard (1.5.3)
193194
therubyracer (0.12.1)
194195
libv8 (~> 3.16.14.0)
195196
ref
@@ -233,10 +234,10 @@ DEPENDENCIES
233234
rb-fsevent
234235
rspec-matchers-matchers
235236
rspec-rails (>= 2.14.0)
236-
ruby_gntp
237237
selenium-webdriver
238238
simplecov
239239
sqlite3
240+
terminal-notifier-guard
240241
therubyracer
241242
therubyrhino
242243
thin

Guardfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A sample Guardfile
22
# More info at https://github.com/guard/guard#readme
3-
notification :gntp
4-
guard 'rspec', :version => 2 do
3+
notification :terminal_notifier
4+
guard 'rspec' do
55
watch(%r{^spec/.+_spec\.rb$})
66
watch(%r{^lib/websocket_rails/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
77
watch('spec/spec_helper.rb') { "spec" }

0 commit comments

Comments
 (0)