KeeperPat-feedupdater 0.2.6 → 0.2.7

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,6 @@
1
+ == FeedUpdater 0.2.7
2
+ * Update so feed_updater works with KeeperPat prefix.
3
+ * Bump version number so that github will republish the gem.
1
4
  == FeedUpdater 0.2.6
2
5
  * Updated for compatibility with RubyGems >= 1.0
3
6
  == FeedUpdater 0.2.5
data/bin/feed_updater CHANGED
@@ -121,9 +121,9 @@ elsif ARGV[0] == "install"
121
121
 
122
122
  # Install FeedUpdater gem to application vendor directory
123
123
  system("rm -rf #{install_vendor_directory}/feedupdater")
124
- unpack_string = `gem unpack feedupdater`
124
+ unpack_string = `gem unpack KeeperPat-feedupdater`
125
125
  feed_updater_version =
126
- unpack_string.scan(/feedupdater\-(.*)\'/).flatten[0]
126
+ unpack_string.scan(/KeeperPat\-feedupdater\-(.*)\'/).flatten[0]
127
127
  if feed_updater_version.nil? || feed_updater_version == ""
128
128
  puts "You need to have the feedupdater gem installed for the install"
129
129
  puts "subcommand to run correctly."
@@ -132,11 +132,11 @@ elsif ARGV[0] == "install"
132
132
  puts "Installing FeedUpdater #{feed_updater_version} " +
133
133
  "to vendor directory..."
134
134
 
135
- system("cp -rp feedupdater-#{feed_updater_version} " +
135
+ system("cp -rp KeeperPat-feedupdater-#{feed_updater_version} " +
136
136
  "#{install_vendor_directory}")
137
- system("rm -rf feedupdater-#{feed_updater_version}")
137
+ system("rm -rf KeeperPat-feedupdater-#{feed_updater_version}")
138
138
  system("mv #{install_vendor_directory}/" +
139
- "feedupdater-#{feed_updater_version} " +
139
+ "KeeperPat-feedupdater-#{feed_updater_version} " +
140
140
  "#{install_vendor_directory}/feedupdater")
141
141
 
142
142
  # Install FeedTools gem to application vendor directory
@@ -2,7 +2,7 @@ module FeedTools
2
2
  module FEED_UPDATER_VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 6
5
+ TINY = 7
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: KeeperPat-feedupdater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Aman
@@ -22,7 +22,7 @@ dependencies:
22
22
  requirements:
23
23
  - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: 0.2.29
25
+ version: 0.2.23
26
26
  version:
27
27
  description: Automatic feed updater daemon for use with FeedTools.
28
28
  email: patrick.t.joyce@gmail.com