From 8d489f7c431cf24c84ac5fc23be1b9b3531b402b Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 2 Aug 2012 15:37:51 +0200 Subject: added gemspec --- ruby-srp.gemspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ruby-srp.gemspec diff --git a/ruby-srp.gemspec b/ruby-srp.gemspec new file mode 100644 index 0000000..a7383c9 --- /dev/null +++ b/ruby-srp.gemspec @@ -0,0 +1,26 @@ +Gem::Specification.new do |s| + s.name = "ruby-srp" + s.version = "0.0.1" + s.platform = Gem::Platform::RUBY + s.authors = ["Azul"] + s.email = ["azul@leap.se"] + s.homepage = "http://github.com/leapdev/ruby.srp" + s.summary = "Secure remote password library for ruby" + s.description = "SRP client and server based on version 6 of the standard" + + s.required_rubygems_version = ">= 1.3.6" + + # If you have runtime dependencies, add them here + # s.add_runtime_dependency "other", "~> 1.2" + + # If you have development dependencies, add them here + # s.add_development_dependency "another", "= 0.9" + + # The list of files to be contained in the gem + s.files = `git ls-files`.split("\n") + # s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact + # s.extensions = `git ls-files ext/extconf.rb`.split("\n") + + s.require_path = 'lib' + +end -- cgit v1.2.3