msgthr.git  about / heads / tags
non-recursive, container-agnostic message threading
blob b27261acab541885384103ec9afee060b214d5a5 917 bytes (raw)
$ git show HEAD:msgthr.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
 
# Copyright (C) 2016 all contributors <msgthr-public@80x24.org>
# License: GPL-2.0+ <https://www.gnu.org/licenses/gpl-2.0.txt>

Gem::Specification.new do |s|
  manifest = File.read('.manifest').split(/\n/)
  manifest << 'NEWS' if File.exist?('NEWS')
  s.name = %q{msgthr}
  s.version = ENV['VERSION'] || '1.2.2'
  s.authors = ['msgthr hackers']
  s.summary = 'container-agnostic, non-recursive message threading'
  s.description = File.read('README').split(/\n\n/)[1].strip
  s.email = %q{msgthr-public@80x24.org}
  s.homepage = 'https://80x24.org/msgthr/'
  s.executables = []
  s.files = manifest
  s.licenses = 'GPL-2.0+'
  s.required_ruby_version = '>= 1.9.3'

  if s.respond_to?(:metadata=)
    s.metadata = {
      'source_code_uri' => 'https://80x24.org/msgthr.git',
      'mailing_list_uri' => 'https://80x24.org/msgthr-public/',
      'bug_tracker_uri' => 'https://80x24.org/msgthr-public/',
    }
  end
end

git clone https://80x24.org/msgthr.git