diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-01 01:48:27 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-01 01:48:27 +0200 |
commit | b26120bc609851042c6e6997fd1a259f79b178f6 (patch) | |
tree | bbbfcf5dbeb9c0f1e4f44da5f5a07900a02168f1 /Rakefile | |
parent | 718e5af2af4a18eecd7f60191dacdce1877d9bff (diff) |
Rakefile: update list of binaries
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -17,7 +17,9 @@ spec = Gem::Specification.new do |s| # s.files = Dir.glob("**/*").delete_if { |item| item.include?(".svn") } s.files = FileList['lib/**/*.rb', 'bin/*', 'data/**/*', 'AUTHORS', 'COPYING', 'README', 'REQUIREMENTS', 'TODO', 'ChangeLog', 'INSTALL', 'Usage_en.txt', 'setup.rb'].to_a.delete_if {|item| item == ".svn"} - s.executables << 'rbot' + s.bindir = 'bin' + s.executables = ['rbot', 'rbot-remote'] + s.default_executable = 'rbot' # s.autorequire = 'rbot/ircbot' s.has_rdoc = true |