growltdf 0.4.4 → 0.4.5

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.
Files changed (4) hide show
  1. data/README +1 -1
  2. data/bin/growltdf +8 -3
  3. data/growltdf.gemspec +1 -1
  4. metadata +1 -1
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  NAME
2
- growltdf v0.4.2
2
+ growltdf v0.4.5
3
3
 
4
4
  SYNOPSIS
5
5
  growltdf [options]+
@@ -27,7 +27,7 @@ Main {
27
27
  growltdf --growl-password=password
28
28
  __
29
29
 
30
- version '0.4.4'
30
+ version '0.4.5'
31
31
 
32
32
  option('stage'){
33
33
  argument :required
@@ -64,12 +64,16 @@ Main {
64
64
 
65
65
  @growl.notify 'initialize', 'growltdf', 'starting...'
66
66
 
67
- puts <<-__
67
+ msg = <<-__
68
+
69
+
68
70
  you should see a growl notification now.
69
71
  if you do not you need to configure growl as per
70
72
 
71
73
  http://s3.amazonaws.com/drawohara.com.screenshots/growltdf-prefpane.png
74
+
72
75
  __
76
+ logger.warn{ msg }
73
77
  end
74
78
 
75
79
  def determine_the_current_stage
@@ -91,7 +95,7 @@ Main {
91
95
 
92
96
  def get_the_latest_live_entries
93
97
  stage_url = stage_url_for(@stage)
94
- puts "checking #{ stage_url } for updates..."
98
+ logger.info{ "checking #{ stage_url } for updates..." }
95
99
  dom = dom_for(stage_url)
96
100
  live_entries = dom.search('#live_entries')
97
101
  @latest_live_entries =
@@ -135,6 +139,7 @@ Main {
135
139
  end
136
140
 
137
141
  def wait_a_little_while
142
+ logger.info{ 'sleeping for 30s...' }
138
143
  sleep 30
139
144
  end
140
145
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  Gem::Specification::new do |spec|
5
5
  spec.name = "growltdf"
6
- spec.version = "0.4.4"
6
+ spec.version = "0.4.5"
7
7
  spec.platform = Gem::Platform::RUBY
8
8
  spec.summary = "growltdf"
9
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: growltdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ara T. Howard