-
Notifications
You must be signed in to change notification settings - Fork 68
/
rainbow.gemspec
21 lines (18 loc) · 853 Bytes
/
rainbow.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$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", "Olle Jonsson"]
spec.email = ["[email protected]"]
spec.description = 'Colorize printed text on ANSI terminals'
spec.summary = 'Colorize printed text on ANSI terminals'
spec.homepage = "https://github.com/ku1ik/rainbow"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.4.0'
spec.files = Dir['lib/**/*', 'Changelog.md', 'README.markdown', 'LICENSE']
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", [">= 1.3", "< 3"]
end