summaryrefslogtreecommitdiff
path: root/users/leap_web_users.gemspec
blob: f64a76a14937ae5d5a4870a13a6f866f7083a708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path("../lib", __FILE__)

require File.expand_path('../../lib/leap_web/version.rb', __FILE__)

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "leap_web_users"
  s.version     = LeapWeb::VERSION
  s.authors     = ["Azul"]
  s.email       = ["azul@leap.se"]
  s.homepage    = "http://www.leap.se"
  s.summary     = "User registration and authorization for the leap platform"
  s.description = "This this plugin for the leap platform provides user signup and login. It uses Secure Remote Password for the authentication."
  
  s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "Readme.md"]
  s.test_files = Dir["test/**/*"]

  s.add_dependency "leap_web_core", LeapWeb::VERSION

  s.add_dependency "ruby-srp", "~> 0.1.1"
end