File: colorize.gemspec

package info (click to toggle)
ruby-colorize 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: ruby: 581; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,032 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

require File.expand_path('lib/colorize/version', File.dirname(__FILE__))

Gem::Specification.new do |s|
  s.name = 'colorize'
  s.version = Colorize::VERSION
  s.required_ruby_version = '>= 2.6'

  s.authors = ['MichaƂ Kalbarczyk']
  s.email = 'fazibear@gmail.com'

  s.homepage = 'http://github.com/fazibear/colorize'
  s.description = 'Extends String class or add a ColorizedString with methods to set text color, background color and text effects.'
  s.summary = 'Ruby gem for colorizing text using ANSI escape sequences.'
  s.license = 'GPL-2.0'

  s.require_paths = ['lib']

  s.files = [
    'LICENSE',
    'CHANGELOG.md',
    'README.md',
    'Rakefile',
    'colorize.gemspec',
    'lib/colorize.rb',
    'lib/colorized_string.rb',
    'lib/colorize/errors.rb',
    'lib/colorize/class_methods.rb',
    'lib/colorize/instance_methods.rb',
    'lib/colorize/version.rb',
    'test/test_colorize.rb',
    'test/test_colorized_string.rb',
  ]

  s.metadata['rubygems_mfa_required'] = 'true'
end