forked from gousiosg/github-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghtorrent.gemspec
42 lines (37 loc) · 1.69 KB
/
ghtorrent.gemspec
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
39
40
41
42
require 'rake'
require File.expand_path('../lib/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'ghtorrent'
s.version = GHTorrent::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Mirror and process Github data'
s.description = 'A library and a collection of associated programs
to mirror and process Github data'
s.authors = ['Georgios Gousios', 'Diomidis Spinellis']
s.email = '[email protected]'
s.homepage = 'https://github.com/gousiosg/github-mirror'
s.licenses = ['BSD-2-Clause']
s.require_paths = ['lib']
s.rdoc_options = ['--charset=UTF-8']
s.executables = ['ght-data-retrieval', 'ght-mirror-events', 'ght-load',
'ght-retrieve-repo', 'ght-retrieve-user',
'ght-retrieve-repos', 'ght-retrieve-users',
'ght-mass-harvester', 'ght-webhook', 'ght-mirror-webhooks',
s.files = FileList['lib/**/*.rb',
'bin/*',
'[A-Z]*',
'lib/ghtorrent/country_codes.txt'].to_a
s.required_ruby_version = '~> 2.0'
s.add_runtime_dependency 'mongo', '~> 2.2', '>= 2.2.0'
s.add_runtime_dependency 'trollop', '~> 2.0', '>= 2.0.0'
s.add_runtime_dependency 'sequel', '~> 4.5', '>= 4.5.0'
s.add_runtime_dependency 'bunny', '~> 2.3', '>= 2.3.0'
s.add_runtime_dependency 'sinatra', '~> 1.4', '>= 1.4.7'
s.add_development_dependency 'influxdb', '0.3.5'
begin
require 'changelog'
s.post_install_message = CHANGELOG.new.version_changes
rescue LoadError
warn 'You have to have changelog gem installed for post install message'
end
end