Sha256: cba8ce3dbd97b673ed61e3ac40d17a488e97d53f56439033d664af2499764f31
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# -*- 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 = ['cschum@suse.de'] 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.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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trollolo-0.3.0 | trollolo.gemspec |