Sha256: eebf79475ec7ecd1440f9777063fbf965c2ccf7c2a6d55fab1a8bbcca1117abc
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 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_dependency('uuid') s.add_development_dependency "rake" # s.add_development_dependency "rcov" s.add_development_dependency "rspec" s.add_development_dependency "ruby-saml" s.add_development_dependency("rails", "~> 3.2") s.add_development_dependency("capybara") end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-saml-idp-0.3.2 | ruby-saml-idp.gemspec |
ruby-saml-idp-0.3.1 | ruby-saml-idp.gemspec |
ruby-saml-idp-0.3.0 | ruby-saml-idp.gemspec |