diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2013-08-24 18:18:05 -0300 |
---|---|---|
committer | Antonio Terceiro <terceiro@softwarelivre.org> | 2013-08-24 18:18:05 -0300 |
commit | 046cc37e7cd01dd583ca6f7328365185a78c5cb2 (patch) | |
tree | f7347df69116171e6ba4df2234343a9de9492bca /Rakefile | |
parent | 628fa41bc50dea1e5294460c3e0e641012353a45 (diff) | |
download | feed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.tar.gz feed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.tar.bz2 feed2imap-046cc37e7cd01dd583ca6f7328365185a78c5cb2.zip |
New release
authors attribute is now mandatory for gemspec
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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| |