1# -*- encoding: utf-8 -*-
2lib = File.expand_path('../lib/', __FILE__)
3$:.unshift lib unless $:.include?(lib)
4
5require 'anystyle/cli/version'
6
7Gem::Specification.new do |s|
8 s.name = 'anystyle-cli'
9 s.version = AnyStyle::CLI::VERSION.dup
10 s.platform = Gem::Platform::RUBY
11 s.authors = ['Sylvester Keil']
12 s.email = ['http://sylvester.keil.or.at']
13 s.homepage = 'http://anystyle.io'
14 s.summary = 'AnyStyle CLI'
15 s.description = 'A command line interface to the AnyStyle Parser and Finder.'
16 s.license = 'BSD-2-Clause'
17 s.require_path = 'lib'
18 s.bindir = 'bin'
19 s.executables = ['anystyle']
20 s.required_ruby_version = '>= 2.3'
21
22 s.add_runtime_dependency('anystyle', '~>1.6')
23 s.add_runtime_dependency('gli', '~>2.17')
24
25 s.files = `git ls-files`.split("\n") - %w{
26 .gitignore
27 Gemfile
28 anystyle-cli.gemspec
29 }
30end
31
32# vim: syntax=ruby