Sha256: 11eacda5d56fc8572b733227b318d59d570fb3c4e3c42a84d0cfa6ff6b8ec556
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "saml_idp/version" Gem::Specification.new do |s| s.name = %q{ruby-saml-idp} s.version = SamlIdp::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Lawrence Pit"] s.email = %q{lawrence.pit@gmail.com} s.homepage = %q{http://github.com/lawrencepit/ruby-saml-idp} s.summary = %q{SAML Indentity Provider in ruby} s.description = %q{SAML IdP (Identity Provider) library in ruby} s.date = Time.now.utc.strftime("%Y-%m-%d") s.files = Dir.glob("app/**/*") + Dir.glob("lib/**/*") + [ "MIT-LICENSE", "README.md", "Gemfile", "ruby-saml-idp.gemspec" ] 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.rdoc_options = ["--charset=UTF-8"] s.add_development_dependency "rake" s.add_development_dependency("nokogiri", "~> 1.6.8") s.add_development_dependency("rspec", "~> 3.0") s.add_development_dependency("ruby-saml", "~> 0.8") s.add_development_dependency("rails", "~> 3.2") s.add_development_dependency("capybara", "~> 2.4.1") end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-saml-idp-0.3.4 | ruby-saml-idp.gemspec |
ruby-saml-idp-0.3.3 | ruby-saml-idp.gemspec |