summaryrefslogtreecommitdiff
path: root/pkgs/tools/misc/anystyle-cli/anystyle-cli.gemspec
blob: 51c9f782a75a68ff68fad8da72e1fd016b955ec1 (plain)
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'anystyle/cli/version'

Gem::Specification.new do |s|
  s.name         = 'anystyle-cli'
  s.version      = AnyStyle::CLI::VERSION.dup
  s.platform     = Gem::Platform::RUBY
  s.authors      = ['Sylvester Keil']
  s.email        = ['http://sylvester.keil.or.at']
  s.homepage     = 'http://anystyle.io'
  s.summary      = 'AnyStyle CLI'
  s.description  = 'A command line interface to the AnyStyle Parser and Finder.'
  s.license      = 'BSD-2-Clause'
  s.require_path = 'lib'
  s.bindir       = 'bin'
  s.executables  = ['anystyle']
  s.required_ruby_version = '>= 2.3'

  s.add_runtime_dependency('anystyle', '~>1.6')
  s.add_runtime_dependency('gli', '~>2.17')

  s.files = `git ls-files`.split("\n") - %w{
    .gitignore
    Gemfile
    anystyle-cli.gemspec
  }
end

# vim: syntax=ruby