summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Terceiro <terceiro@softwarelivre.org>2013-08-24 18:18:05 -0300
committerAntonio Terceiro <terceiro@softwarelivre.org>2013-08-24 18:18:05 -0300
commit046cc37e7cd01dd583ca6f7328365185a78c5cb2 (patch)
treef7347df69116171e6ba4df2234343a9de9492bca
parent628fa41bc50dea1e5294460c3e0e641012353a45 (diff)
downloadfeed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.tar.gz
feed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.tar.bz2
feed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.zip
New release
authors attribute is now mandatory for gemspec
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 0ebc5c8..95fd2f8 100644
--- a/Rakefile
+++ b/Rakefile
@@ -7,7 +7,7 @@ require 'find'
task :default => [:test]
PKG_NAME = 'feed2imap'
-PKG_VERSION = '1.0'
+PKG_VERSION = '1.1'
PKG_FILES = [ 'ChangeLog', 'README', 'COPYING', 'setup.rb', 'Rakefile']
Find.find('bin/', 'lib/', 'test/', 'data/') do |f|
if FileTest.directory?(f) and f =~ /\.svn/
@@ -55,6 +55,7 @@ begin
}
s.files = PKG_FILES
s.description = "RSS/Atom feed aggregator"
+ s.authors = ['Lucas Nussbaum']
end
Gem::PackageTask.new(spec) do |pkg|