-
Notifications
You must be signed in to change notification settings - Fork 2
/
lahar.gemspec
26 lines (21 loc) · 893 Bytes
/
lahar.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lahar/version'
Gem::Specification.new do |spec|
spec.name = "lahar"
spec.version = Lahar::VERSION
spec.authors = ["Daniel Docki"]
spec.email = ["[email protected]"]
spec.summary = "Ruby API wrapper for Lahar"
spec.description = "Ruby API wrapper for Lahar"
spec.homepage = "http://www.lahar.com.br"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "httparty", "~> 0.12"
spec.add_development_dependency "bundler", "~> 1.9"
spec.add_development_dependency "rake", "~> 13.0"
end