diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-16 00:58:55 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-16 00:58:55 +0100 |
commit | 12ee62bebd2faf684621fde06e6ae3c9b09fd294 (patch) | |
tree | c7e0778254ea9113651d510fda8867536826c45f | |
parent | 7991056e4f4adb8ebf7d1c274fc4e34566bc452b (diff) |
Rakefile: package launch_here.rb too
And clean up some Rakefile crud while we're at it
-rw-r--r-- | Rakefile | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -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' |