metropolis.git  about / heads / tags
key-value store for Rack
blob 1dd563c0319c150c2a2b223e6710a979bfaf1adc 1171 bytes (raw)
$ git show HEAD:metropolis.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
28
29
30
31
32
33
34
35
36
37
38
 
# -*- encoding: binary -*-

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

# don't bother with tests that fork, not worth our time to get working
# with `gem check -t` ... (of course we care for them when testing with
# GNU make when they can run in parallel)
test_files = manifest.grep(%r{\Atest/test_.*\.rb\z})

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

  s.authors = ["The Sleeper"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = readme_description.delete('\\')
  s.email = %q{metropolis@librelist.org}
  s.executables = []

  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.homepage = %q{http://metropolis.bogomips.org/}

  s.rdoc_options = rdoc_options
  s.require_paths = %w(lib)
  s.rubyforge_project = %q{rainbows}
  s.summary = summary

  s.test_files = test_files
  s.add_dependency(%q<rack>)
  s.add_development_dependency('wrongdoc', '~> 1.3')

  # s.licenses = %w(AGPL) # licenses= method is not in older RubyGems
end

git clone https://yhbt.net/metropolis.git