forked from programmiersportgruppe/jira-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jirasync.gemspec
33 lines (25 loc) · 1.09 KB
/
jirasync.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jirasync/version'
Gem::Specification.new do |s|
s.name = 'jirasync'
s.summary = 'jirasync synchronises jira projects to the local file system'
s.description = 'jirasync synchronises tickets from a jira project to the local
file system. It supports a complete fetch operation as well as
an incremental update.
Each ticket is stored in a simple, pretty printed JSON file.'
s.version = JiraSync::VERSION
s.platform = Gem::Platform::RUBY
s.files = ['bin/jira-sync']
s.bindir = 'bin'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.author = 'Felix Leipold'
s.email = ''
s.homepage = 'https://github.com/programmiersportgruppe/jira-sync'
s.add_dependency('trollop')
s.add_dependency('httparty')
s.add_dependency('parallel')
s.add_dependency('ruby-progressbar')
end