summaryrefslogtreecommitdiff
path: root/qpid/ruby/Rakefile
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2010-01-12 16:57:02 +0000
committerTed Ross <tross@apache.org>2010-01-12 16:57:02 +0000
commitf171c8a00f2d3f11e2e2015bd4abe32ba91d704f (patch)
tree48cf765ea9fed020a91649ff981b51b82b49edc6 /qpid/ruby/Rakefile
parentf80cbbcb302565d2a2ef321b5e2ad87c2485390f (diff)
downloadqpid-python-f171c8a00f2d3f11e2e2015bd4abe32ba91d704f.tar.gz
QPID-2264 - The Build Instructions for the Ruby bits could use some love
QPID-2265 - Ruby Rakfile References an old file (patch from bkearney) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@898419 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/ruby/Rakefile')
-rw-r--r--qpid/ruby/Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/ruby/Rakefile b/qpid/ruby/Rakefile
index 94f6389822..a5159210a3 100644
--- a/qpid/ruby/Rakefile
+++ b/qpid/ruby/Rakefile
@@ -86,7 +86,7 @@ end
#
PKG_FILES = FileList[
- "DISCLAIMER", "LICENSE.txt", "NOTICE.txt",
+ "LICENSE.txt", "NOTICE.txt",
"Rakefile", "RELEASE_NOTES",
"lib/**/*.rb", "lib/*/spec_cache/*.rb*", "tests/**/*", "examples/**", "ext/**/*.[ch]",
"ext/**/MANIFEST", "ext/**/extconf.rb"
@@ -105,6 +105,7 @@ SPEC = Gem::Specification.new do |s|
s.files = PKG_FILES
s.required_ruby_version = '>= 1.8.1'
s.description = "Ruby client for Qpid"
+ s.extensions << 'ext/sasl/extconf.rb'
end
Rake::GemPackageTask.new(SPEC) do |pkg|