feedupdater 0.2.3 → 0.2.4

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/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ == FeedUpdater 0.2.4
2
+ * added more code for detecting the location of the config file
1
3
  == FeedUpdater 0.2.3
2
4
  * added additional logging messages
3
5
  == FeedUpdater 0.2.2
data/bin/feed_updater CHANGED
@@ -181,9 +181,17 @@ elsif ARGV[0] == "install"
181
181
  end
182
182
 
183
183
  config_file = FileStalker.hunt([
184
- "./feed_updater.yml",
185
- "../config/feed_updater.yml"
184
+ "../config/feed_updater.yml",
185
+ "./feed_updater.yml"
186
186
  ])
187
+ # Reportedly, in some cases, the example config is found instead.
188
+ if config_file =~ /example/
189
+ config_file = FileStalker.hunt([
190
+ "../../../config/feed_updater.yml",
191
+ "../config/feed_updater.yml",
192
+ "./feed_updater.yml"
193
+ ])
194
+ end
187
195
  if config_file.nil?
188
196
  puts "Could not locate feed_updater.yml config file."
189
197
  exit
@@ -2,7 +2,7 @@ module FeedTools
2
2
  module FEED_UPDATER_VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: feedupdater
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.3
7
- date: 2006-09-14 00:00:00 -04:00
6
+ version: 0.2.4
7
+ date: 2006-09-20 00:00:00 -04:00
8
8
  summary: Automatic feed updater daemon.
9
9
  require_paths:
10
10
  - lib
@@ -36,7 +36,6 @@ files:
36
36
  - example
37
37
  - lib
38
38
  - log
39
- - pkg
40
39
  - rakefile
41
40
  - README
42
41
  - bin/feed_updater