summaryrefslogtreecommitdiff
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
commit1b23bcc57a806ad3e25fe85f29731b03499b78c3 (patch)
treea2055f64f6cb9b1776bc3e0f06c9f58c9fcebb22
parentc5fc3f2d198af0e32cfcc25c3449b5e4d8be3520 (diff)
downloadqpid-python-1b23bcc57a806ad3e25fe85f29731b03499b78c3.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/qpid@898419 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--ruby/Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/ruby/Rakefile b/ruby/Rakefile
index 94f6389822..a5159210a3 100644
--- a/ruby/Rakefile
+++ b/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|