diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2013-08-27 22:28:58 -0300 |
---|---|---|
committer | Antonio Terceiro <terceiro@softwarelivre.org> | 2013-08-27 22:28:58 -0300 |
commit | a1b2e9080f53a3db984f4297d8f19892d6582d37 (patch) | |
tree | 6ddb8734a76af313c39bb606077ff628a94fc5b4 /Rakefile | |
parent | 64455d1615ee34e03166b106f1ac33b3179fef75 (diff) | |
download | feed2imap-a1b2e9080f53a3db984f4297d8f19892d6582d37.tar.gz feed2imap-a1b2e9080f53a3db984f4297d8f19892d6582d37.tar.bz2 feed2imap-a1b2e9080f53a3db984f4297d8f19892d6582d37.zip |
Pass feed URL to ruby-feedparser
This will make ruby-feedparser automatically calculate the full URL of
feed items whose link is present in the feed with only a path and not
hostname. ruby-feedparser will add the hostname where the feed came
from.
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ require 'find' task :default => [:test] PKG_NAME = 'feed2imap' -PKG_VERSION = '1.1' +PKG_VERSION = '1.2' PKG_FILES = [ 'ChangeLog', 'README', 'COPYING', 'setup.rb', 'Rakefile'] Find.find('bin/', 'lib/', 'test/', 'data/') do |f| if FileTest.directory?(f) and f =~ /\.svn/ @@ -48,7 +48,7 @@ begin s.summary = "RSS/Atom feed aggregator" s.name = PKG_NAME s.version = PKG_VERSION - s.requirements << 'feedparser' + s.add_runtime_dependency 'ruby-feedparser', '0.9' s.require_path = 'lib' s.executables = PKG_FILES.grep(%r{\Abin\/.}).map { |bin| bin.gsub(%r{\Abin/}, '') |