This repository has been archived by the owner on Jun 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhg.gemspec
51 lines (42 loc) · 1.81 KB
/
hg.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
50
51
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hg/version'
# rubocop:disable Metrics/BlockLength
Gem::Specification.new do |spec|
spec.name = 'hg'
spec.version = Hg::VERSION
spec.authors = ['Matt Buck']
spec.email = ['[email protected]']
spec.summary = 'A conversational interface framework for Ruby on Rails.'
spec.homepage = 'https://rubygems.org/hg'
# TODO: Add description
# spec.description =
spec.license = 'MIT'
spec.files = Dir[
'{app,bin,config,lib}/**/*', 'LICENSE', 'Rakefile', 'README.md'
]
spec.test_files = Dir['spec/**/*']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'facebook-messenger', '~> 1.0.0'
spec.add_runtime_dependency 'fuzzy_match', '~> 2.1.0'
spec.add_runtime_dependency 'rails', '>= 5.0.0'
# Background Jobs
spec.add_runtime_dependency 'sidekiq', '~> 5.1.1'
# API.ai NLU
# Don't pin to a version for the moment, so we can reference specific commits
# This library doesn't get released very often
spec.add_runtime_dependency 'api-ai-ruby'#, '~> 1.2.3'
# TODO: Drop Hashie
spec.add_runtime_dependency 'hashie', '~> 3.5.4'
spec.add_development_dependency 'bundler', '~> 1.16.1'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.8'
spec.add_development_dependency 'httparty', '~> 0.15.6'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec-rails', '~> 3.7.2'
spec.add_development_dependency 'rubocop', '~> 0.49.1'
spec.add_development_dependency 'simplecov', '~> 0.13.0'
spec.add_development_dependency 'sqlite3', '~> 1.3.11'
end
# rubocop:enable Metrics/BlockLength