local-openid.git  about / heads / tags
Single User, Ephemeral OpenID Provider
blob d42b90854c0089285622c73fbd1658e073aece94 756 bytes (raw)
$ git show HEAD: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
 
manifest = File.exist?('.manifest') ?
  IO.readlines('.manifest').map!(&:chomp!) : `git ls-files`.split("\n")

Gem::Specification.new do |s|
  s.name = %q{local-openid}
  s.version = (ENV['VERSION'] || '0.4.2').dup
  s.authors = ["Eric Wong"]
  s.description = File.read('README').split("\n\n")[1]
  s.email = %q{e@80x24.org}
  s.executables = %w(local-openid)
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.files = manifest
  s.homepage = 'https://yhbt.net/local-openid'
  s.summary = 'Single User, Ephemeral OpenID Provider'
  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(AGPL-3.0+)
end

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