From e720f256bc4653139d7459268dada3890f56d970 Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 20 Sep 2012 13:16:19 +0200 Subject: added Gemfile and gemspec not sure i want to package this - but gemspec serves as gem list for bundler and doc for now --- leap_ca.gemspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 leap_ca.gemspec (limited to 'leap_ca.gemspec') diff --git a/leap_ca.gemspec b/leap_ca.gemspec new file mode 100644 index 0000000..92117e1 --- /dev/null +++ b/leap_ca.gemspec @@ -0,0 +1,23 @@ +$:.push File.expand_path("../lib", __FILE__) + +# Maintain your gem's version: +require "leap_ca/version" + +# Describe your gem and declare its dependencies: +Gem::Specification.new do |s| + s.name = "leap_ca" + s.version = LeapCA::VERSION + s.authors = ["Azul"] + s.email = ["azul@leap.se"] + s.homepage = "http://www.leap.se" + s.summary = "CA deamon for the leap platform" + s.description = "This deamon refills the pool of client certs for the leap platform. They are stored in a CouchDB instance and can be handed out with a webservice." + + s.files = Dir["{config,lib}/**/*", 'bin/*'] + ["Rakefile", "Readme.md"] + s.test_files = Dir["test/**/*"] + + s.add_dependency "couchrest", "~> 1.1.3" + s.add_dependency "couchrest_model", "~> 2.0.0.beta2" + s.add_dependency "daemons" + +end -- cgit v1.2.3