-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathhuginn_agent.gemspec
28 lines (24 loc) · 1.07 KB
/
huginn_agent.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'huginn_agent/version'
Gem::Specification.new do |spec|
spec.name = "huginn_agent"
spec.version = HuginnAgent::VERSION
spec.authors = ["Andrew Cantino"]
spec.email = ["cantino@gmail.com"]
spec.summary = %q{Helpers for making new Huginn Agents}
spec.homepage = "https://github.com/huginn/huginn"
spec.license = "MIT"
spec.files = Dir['CHANGELOG.md', 'LICENSE.txt', 'lib/**/*', 'bin/*']
spec.executables = Dir['bin/*'].map { |p| File.basename(p) }
spec.test_files = Dir['spec/**/*']
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'thor'
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "simplecov", "~> 0.11.2"
spec.add_development_dependency "guard", "~> 2.13.0"
spec.add_development_dependency "guard-rspec", "~> 4.6.5"
end