From 0aa7977f3ac11168406b00df84777da5d3070787 Mon Sep 17 00:00:00 2001 From: Tyler Hunt Date: Mon, 13 Jun 2011 22:20:05 -0400 Subject: [PATCH] Added missing runtime dependencies to gemspec. --- aws-s3.gemspec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aws-s3.gemspec b/aws-s3.gemspec index 2b3607e..f98580a 100644 --- a/aws-s3.gemspec +++ b/aws-s3.gemspec @@ -8,4 +8,8 @@ Gem::Specification.new do |s| s.files = %w(CHANGELOG COPYING INSTALL Rakefile) + Dir['lib/**/*'] + Dir["bin/*"] s.require_path = 'lib' -end \ No newline at end of file + + s.add_runtime_dependency 'builder' + s.add_runtime_dependency 'mime-types' + s.add_runtime_dependency 'xml-simple' +end