-
Notifications
You must be signed in to change notification settings - Fork 16
/
tco.gemspec
28 lines (24 loc) · 1.03 KB
/
tco.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "tco/version"
Gem::Specification.new do |s|
s.name = "tco"
s.version = Tco::VERSION
s.authors = ["Radek Pazdera"]
s.email = ["radek@pazdera.co.uk"]
s.summary = %q{A tool and a library for terminal output colouring}
s.description = %q{tco is a commandline tool and also a Ruby module that
allows its users to easily colourize the terminal
output of their bash scripts as well as Ruby programs.}
s.homepage = "https://github.com/pazdera/tco"
s.license = "MIT"
s.rubyforge_project = "tco"
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_development_dependency 'bundler', '~> 1.5'
s.add_development_dependency 'rake', '>= 0'
s.add_development_dependency 'rspec', '>= 0'
end