]> git.openstreetmap.org Git - rails.git/blob - vendor/gems/rots-0.2.1/rots.gemspec
Removed unused link_to_page from the trace helpers
[rails.git] / vendor / gems / rots-0.2.1 / rots.gemspec
1 # -*- encoding: utf-8 -*-
2
3 Gem::Specification.new do |s|
4   s.name            = "rots"
5   s.version         = '0.2.1'
6   s.platform        = Gem::Platform::RUBY
7   s.summary         = "an OpenID server for making tests of OpenID clients implementations"
8
9   s.description = <<-EOF
10 Ruby OpenID Test Server (ROST) provides a basic OpenID server made in top of the Rack gem.
11 With this small server, you can make dummy OpenID request for testing purposes,
12 the success of the response will depend on a parameter given on the url of the authentication request.
13   EOF
14
15   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"] 
16   s.bindir          = 'bin'
17   s.executables     << 'rots'
18   s.require_path    = 'lib'
19   s.has_rdoc        = true
20   s.extra_rdoc_files = ['README']
21   s.test_files      = ['spec/server_app_spec.rb', 'spec/spec_helper.rb']
22
23   s.author          = 'Roman Gonzalez'
24   s.email           = 'romanandreg@gmail.com'
25   s.homepage        = 'http://github.com/roman'
26   s.rubyforge_project = 'rots'
27
28   s.add_development_dependency 'rspec'
29   s.add_development_dependency 'rack'
30   s.add_development_dependency 'ruby-openid'
31 end