File: paint-shortcuts.gemspec

package info (click to toggle)
ruby-paint 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 224 kB
  • sloc: ruby: 674; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 782 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
# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/paint/shortcuts_version"

Gem::Specification.new do |s|
  s.name        = "paint-shortcuts"
  s.version     = Paint::SHORTCUTS_VERSION
  s.authors     = ["Jan Lelis"]
  s.email       = ["hi@ruby.consulting"]
  s.homepage    = "https://github.com/janlelis/paint"
  s.summary     = "Terminal painter! Shortcut extension."
  s.description = "Extends the paint gem to support custom color shortcuts."
  s.license = 'MIT'
  s.files = %w[
    paint-shortcuts.gemspec
    lib/paint/shortcuts.rb
    lib/paint/shortcuts_version.rb
  ]
  s.extra_rdoc_files = %w[
    README.md
    SHORTCUTS.md
    CHANGELOG.md
    MIT-LICENSE.txt
  ]

  s.required_ruby_version = '>= 1.9.3'
  s.add_dependency 'paint', '>= 1.0', '< 3.0'
end