Sha256: 56590f1c01b63afb47d20f700ba5b5fed5c3fa15b1df535b24eb1ef52986205e
Contents?: true
Size: 917 Bytes
Versions: 3
Compression:
Stored size: 917 Bytes
Contents
$:.unshift(File.dirname(__FILE__) + '/lib') require 'mixlib/authentication/version' Gem::Specification.new do |s| s.name = "mixlib-authentication" s.version = Mixlib::Authentication::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 Gemfile Rakefile NOTICE) + Dir.glob("*.gemspec") + Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_dependency gem, "~> 3.2" } s.add_development_dependency "rake", "~> 10.4" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mixlib-authentication-1.4.0 | mixlib-authentication.gemspec |
mixlib-authentication-1.4.0.rc.1 | mixlib-authentication.gemspec |
mixlib-authentication-1.4.0.rc.0 | mixlib-authentication.gemspec |