public
Description: An OpenID Consumer plugin for Merb
Homepage:
Clone URL: git://github.com/danwrong/merb_openid.git
merb_openid / merb_openid.gemspec
100644 14 lines (14 sloc) 0.519 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Gem::Specification.new do |s|
  s.name = 'merb_openid'
  s.version = '0.0.4'
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "LICENSE"]
  s.summary = 'A Merb plugin for consuming OpenID'
  s.description = s.summary
  s.author = 'Dan Webb'
  s.email = 'dan@danwebb.net'
  s.add_dependency('ruby-openid', '>= 2.0.3')
  s.require_path = 'lib'
  s.autorequire = s.name
  s.files = %w(LICENSE README Rakefile lib/merb_openid.rb lib/merb_openid/controller_extensions.rb spec/merb_openid_spec.rb spec/spec_helper.rb)
end