Sha256: 80d69d1577452f8b2dc7656b5a4d37cb7b8e4db1e92432a0ab6b59d41ea6dcd8

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 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', '< 2.4.2']
  s.required_rubygems_version = '>= 1.3.6'
  s.rubyforge_project         = 'trollolo'

  s.add_dependency 'thor', '~> 0.19'
  s.add_dependency 'ruby-trello', '~> 1.5.0'

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").map{|f| f =~ /^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.2.0 trollolo.gemspec