forked from sulleh/alexa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalexa.gemspec
27 lines (22 loc) · 1012 Bytes
/
alexa.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/alexa/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Wojciech Wnętrzak"]
gem.email = ["[email protected]"]
gem.description = %q{Alexa Web Information Service library (AWIS)}
gem.summary = %q{Alexa Web Information Service library}
gem.homepage = "https://github.com/morgoth/alexa"
gem.license = "MIT"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "alexa"
gem.require_paths = ["lib"]
gem.version = Alexa::VERSION
gem.required_ruby_version = ">= 1.9.3"
gem.add_dependency "multi_xml", ">= 0.5.0"
gem.add_dependency "faraday", "~> 0.8"
gem.add_development_dependency "minitest", ">= 5.0.0"
gem.add_development_dependency "mocha"
gem.add_development_dependency "webmock"
end