forked from openSUSE/trollolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trollolo.gemspec
29 lines (24 loc) · 1.08 KB
/
trollolo.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'trollolo'
s.version = Trollolo::VERSION
s.license = 'GPL-3.0'
s.platform = Gem::Platform::RUBY
s.authors = ['Cornelius Schumacher']
s.email = ['[email protected]']
s.homepage = 'https://github.com/openSUSE/trollolo'
s.summary = 'Trello command line client'
s.description = 'Trollolo is a command line tool to access Trello and support tasks like generation of burndown charts.'
s.required_ruby_version = '>= 2.2.0'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'trollolo'
s.add_dependency 'thor', '~> 0.19'
s.add_dependency 'ruby-trello', '~> 2.0'
s.add_dependency 'activemodel', '~> 5.1.5'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ %r{^bin/(.*)} ? Regexp.last_match(1) : nil}.compact
s.require_path = 'lib'
s.files += Dir['man/*.?'] # UNIX man pages
s.files += Dir['man/*.{html,css,js}'] # HTML man pages
end