31 lines
1.3 KiB
Ruby
31 lines
1.3 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "rots"
|
|
s.version = '0.2.1'
|
|
s.platform = Gem::Platform::RUBY
|
|
s.summary = "an OpenID server for making tests of OpenID clients implementations"
|
|
|
|
s.description = <<-EOF
|
|
Ruby OpenID Test Server (ROST) provides a basic OpenID server made in top of the Rack gem.
|
|
With this small server, you can make dummy OpenID request for testing purposes,
|
|
the success of the response will depend on a parameter given on the url of the authentication request.
|
|
EOF
|
|
|
|
s.files = ["AUTHORS", "README", "Rakefile", "bin/rots", "lib/rots.rb", "lib/rots/identity_page_app.rb", "lib/rots/server_app.rb", "lib/rots/test_helper.rb","rots.gemspec", "spec/server_app_spec.rb", "spec/spec_helper.rb"]
|
|
s.bindir = 'bin'
|
|
s.executables << 'rots'
|
|
s.require_path = 'lib'
|
|
s.has_rdoc = true
|
|
s.extra_rdoc_files = ['README']
|
|
s.test_files = ['spec/server_app_spec.rb', 'spec/spec_helper.rb']
|
|
|
|
s.author = 'Roman Gonzalez'
|
|
s.email = 'romanandreg@gmail.com'
|
|
s.homepage = 'http://github.com/roman'
|
|
s.rubyforge_project = 'rots'
|
|
|
|
s.add_development_dependency 'rspec'
|
|
s.add_development_dependency 'rack'
|
|
s.add_development_dependency 'ruby-openid'
|
|
end
|