summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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|