local-openid.git  about / heads / tags
Single User, Ephemeral OpenID Provider
blob da872b6a621fff10b0f426fdf982e599ea3d0d28 891 bytes (raw)
$ git show v0.4.0:local-openid.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
require 'wrongdoc'
extend Wrongdoc::Gemspec
name, summary, title = readme_metadata

Gem::Specification.new do |s|
  s.name = %q{local-openid}
  s.version = ENV["VERSION"].dup

  s.authors = ["Eric Wong"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = readme_description
  s.email = %q{local.openid@librelist.org}
  s.executables = %w(local-openid)

  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.homepage = Wrongdoc.config[:rdoc_url]
  s.summary = summary
  s.rdoc_options = rdoc_options
  s.rubyforge_project = %q{qrp}
  s.add_dependency(%q<rack>, ["~> 1.3"])
  s.add_dependency(%q<sinatra>, ["~> 1.0"])
  s.add_dependency(%q<ruby-openid>, ["~> 2.1.7"])
  # s.licenses = %w(AGPLv3) # accessor not compatible with older RubyGems
end

git clone https://yhbt.net/local-openid.git