ringe/browserid-provider

View on GitHub
browserid-provider.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "browserid-provider/version"

Gem::Specification.new do |s|
  s.name        = "browserid-provider"
  s.version     = BrowserID::VERSION
  s.authors     = ["ringe"]
  s.email       = ["runar@rin.no"]
  s.homepage    = "https://github.com/ringe/browserid-provider"
  s.summary     = %q{Rails-enabled, Rack-based Mozilla BrowserID Primary Identity Provider}
  s.description = %q{With the BrowserID provider you enable your users to authenticate themselves across the web using a single authority - DISCONTINUED}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency "rake"
  s.add_dependency "json-jwt"
  s.add_development_dependency "rack-test"
  s.add_development_dependency "mocha"
  s.add_development_dependency "warden"
end