-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexpando.gemspec
49 lines (44 loc) · 2.01 KB
/
expando.gemspec
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
38
39
40
41
42
43
44
45
46
47
48
49
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'expando/version'
Gem::Specification.new do |spec|
spec.name = 'expando'
spec.version = Expando::VERSION
spec.authors = ['Matt Buck']
spec.email = ['matt@voxable.io']
spec.summary = 'The Expando reference implementation.'
spec.description = 'A translation language for defining user utterance examples in conversational interfaces.'
spec.homepage = 'http://voxable.io'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.9'
spec.add_development_dependency 'rake', '~> 10.0'
# Testing
spec.add_development_dependency 'rspec', '~> 3.5.0'
# Formatting test results for Travis CI
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.2.2'
# Measuring code coverage
spec.add_development_dependency 'simplecov', '~> 0.13.0'
# Push coverage results to Code Climate
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.8'
# Code style checking
spec.add_development_dependency 'rubocop', '~> 0.49.1'
# API.ai integration
spec.add_runtime_dependency 'voxable-api-ai-ruby', '~> 2.1.2'
# CLI framework
spec.add_runtime_dependency 'gli', '~> 2.16.0'
# Colorizing output for CLI (TODO: drop for pastel)
spec.add_runtime_dependency 'colorize', '~> 0.8.1'
# Pretty-printing hashes for CLI
spec.add_runtime_dependency 'awesome_print', '~> 1.7.0'
# Parsing arbitrary front-matter metadata for CLI
spec.add_runtime_dependency 'front_matter_parser', '~> 0.0.4'
# Outputting intent lists for CLI
spec.add_runtime_dependency 'tty-table', '~> 0.8.0'
# dry-rb framework
spec.add_runtime_dependency 'dry-initializer', '~> 1.3.0'
spec.add_runtime_dependency 'dry-types', '0.9.4'
end