summaryrefslogtreecommitdiff
path: root/mixlib-authentication.gemspec
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2011-03-09 19:54:38 -0800
committerDaniel DeLeo <dan@opscode.com>2011-03-09 19:54:38 -0800
commitf3cd8b31e04aac87f82bb4ae1de6a2bf0ab49401 (patch)
tree7c51d070b91ee224eb3e20a5e2278403b139c286 /mixlib-authentication.gemspec
parent2176379a0d49dbe4c92473915374f173c62eb4ea (diff)
downloadmixlib-authentication-f3cd8b31e04aac87f82bb4ae1de6a2bf0ab49401.tar.gz
Add a gemspec so mixlib-authn can be bundled
Diffstat (limited to 'mixlib-authentication.gemspec')
-rw-r--r--mixlib-authentication.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/mixlib-authentication.gemspec b/mixlib-authentication.gemspec
new file mode 100644
index 0000000..178fc18
--- /dev/null
+++ b/mixlib-authentication.gemspec
@@ -0,0 +1,21 @@
+MIXLIB_AUTHN_VERSION = '1.1.5'
+
+Gem::Specification.new do |s|
+ s.name = "mixlib-authentication"
+ s.version = MIXLIB_AUTHN_VERSION
+ s.platform = Gem::Platform::RUBY
+ s.has_rdoc = true
+ s.extra_rdoc_files = ["README.rdoc", "LICENSE", 'NOTICE']
+ s.summary = "Mixes in simple per-request authentication"
+ s.description = s.summary
+ s.author = "Opscode, Inc."
+ s.email = "info@opscode.com"
+ s.homepage = "http://www.opscode.com"
+
+ # Uncomment this to add a dependency
+ s.add_dependency "mixlib-log"
+
+ s.require_path = 'lib'
+ s.files = %w(LICENSE README.rdoc Rakefile NOTICE) + Dir.glob("{lib,spec}/**/*")
+end
+