Sha256: e86affb2e38657e4eb93cbc7e85c8a12a0047353edbc304380ce7a6ce57d19f5
Contents?: true
Size: 1.01 KB
Versions: 11
Compression:
Stored size: 1.01 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rainbow/version' Gem::Specification.new do |spec| spec.name = "rainbow" spec.version = Rainbow::VERSION spec.authors = ["Marcin Kulik"] spec.email = ["m@ku1ik.com"] spec.description = %q(Colorize printed text on ANSI terminals) spec.summary = %q(Colorize printed text on ANSI terminals) spec.homepage = "https://github.com/sickill/rainbow" spec.license = "MIT" spec.required_ruby_version = '>= 1.9.2' spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "rake" spec.add_development_dependency "bundler", "~> 1.3" spec.extensions = ["ext/mkrf_conf.rb"] end
Version data entries
11 entries across 11 versions & 4 rubygems