summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-03-16 00:58:55 +0100
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-03-16 00:58:55 +0100
commit12ee62bebd2faf684621fde06e6ae3c9b09fd294 (patch)
treec7e0778254ea9113651d510fda8867536826c45f /Rakefile
parent7991056e4f4adb8ebf7d1c274fc4e34566bc452b (diff)
Rakefile: package launch_here.rb too
And clean up some Rakefile crud while we're at it
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile20
1 files changed, 18 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 822fe732..89b5c15d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,8 +15,24 @@ spec = Gem::Specification.new do |s|
EOF
s.requirements << 'Ruby, version 1.8.0 (or newer)'
- # s.files = Dir.glob("**/*").delete_if { |item| item.include?(".svn") }
- s.files = FileList['lib/**/*.rb', 'bin/*', 'data/rbot/**/*', 'AUTHORS', 'COPYING', 'README', 'REQUIREMENTS', 'TODO', 'ChangeLog', 'INSTALL', 'Usage_en.txt', 'setup.rb', 'po/*.pot', 'po/**/*.po'].to_a.delete_if {|item| item == ".svn"}
+ s.files = FileList[
+ 'lib/**/*.rb',
+ 'bin/*',
+ 'data/rbot/**/*',
+ 'AUTHORS',
+ 'COPYING',
+ 'README',
+ 'REQUIREMENTS',
+ 'TODO',
+ 'ChangeLog',
+ 'INSTALL',
+ 'Usage_en.txt',
+ 'setup.rb',
+ 'launch_here.rb',
+ 'po/*.pot',
+ 'po/**/*.po'
+ ]
+
s.bindir = 'bin'
s.executables = ['rbot', 'rbot-remote']
s.default_executable = 'rbot'