summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-08-02 15:37:51 +0200
committerAzul <azul@leap.se>2012-08-02 15:37:51 +0200
commit8d489f7c431cf24c84ac5fc23be1b9b3531b402b (patch)
tree99d86f926a469041980d3e6ac13e7b98e47979a0
parent536a90f154ef24800a258fdbfe625917f57456f7 (diff)
added gemspec
-rw-r--r--ruby-srp.gemspec26
1 files changed, 26 insertions, 0 deletions
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