File: colorator.gemspec

package info (click to toggle)
ruby-colorator 1.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: ruby: 163; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8

require File.expand_path('lib/colorator.rb', __dir__)

Gem::Specification.new do |spec|
  spec.name        = "colorator"
  spec.summary     = "Colorize your text in the terminal."
  spec.version     = Colorator::VERSION
  spec.authors     = ["Parker Moore", "Brandon Mathis"]
  spec.email       = ["parkrmoore@gmail.com", "brandon@imathis.com"]
  spec.homepage    = "https://github.com/octopress/colorator"
  spec.licenses    = ["MIT"]

  all                = Dir.glob("**/*").select {|f| f !~ /^debian/}
  spec.files         = Dir.glob("spec/**/*.rb")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.extra_rdoc_files = ["README.markdown", "LICENSE"]
  spec.rdoc_options     = ["--charset=UTF-8"]

  spec.add_development_dependency "rspec", "~> 3.1"
end