marcinbunsch-bolt 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.textile CHANGED
@@ -12,6 +12,7 @@ This is still in experimental phase, so all feedback is appreciated.
12
12
 
13
13
  It takes solutions from several gems:
14
14
 
15
+ * *sentientmonkey-autotest-notifyosd* - notify osd usage
15
16
  * *mislav-rspactor* - inspiration, structure and growl notifier
16
17
  * *autotest* - obviously. Whole concept, parts of generic listener
17
18
  * *Roman2K-rails_test_serving* - concept of running tests with preloaded environment, elements of test::unit runner
@@ -22,6 +23,7 @@ h2. Contributors
22
23
 
23
24
  h2. Copyright
24
25
 
26
+ * *autotest-notifyosd* - sentientmonkey
25
27
  * *autotest* - ZenTest
26
28
  * *rails-test-serving* - Roman2K
27
29
  * *rspactor* - Mislav Marohnić, Andreas Wolff, Pelle Braendgaard
@@ -15,7 +15,7 @@ module Bolt
15
15
 
16
16
  # generic notify method
17
17
  def notify(title, msg, img, pri = 'normal')
18
- system "notify-send -i #{img} -u #{urg} '#{title}' '#{msg}'"
18
+ system "notify-send -i #{img} -u #{pri} '#{title}' '#{msg}'"
19
19
  end
20
20
 
21
21
  # info message
data/lib/bolt.rb CHANGED
@@ -81,5 +81,6 @@ module Bolt
81
81
  module Notifiers
82
82
  autoload :Generic, 'bolt/notifiers/generic'
83
83
  autoload :Growl, 'bolt/notifiers/growl'
84
+ autoload :NotifyOsd, 'bolt/notifiers/notify_osd'
84
85
  end
85
86
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marcinbunsch-bolt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcin Bunsch