-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmiasma.gemspec
24 lines (24 loc) · 957 Bytes
/
miasma.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
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__)) + "/lib/"
require "miasma/version"
Gem::Specification.new do |s|
s.name = "miasma"
s.version = Miasma::VERSION.version
s.summary = "Smoggy API"
s.author = "Chris Roberts"
s.email = "[email protected]"
s.homepage = "https://github.com/miasma-rb/miasma"
s.description = "Smoggy API"
s.license = "Apache 2.0"
s.require_path = "lib"
s.add_runtime_dependency "http", ">= 0.8.12", "< 4.0"
s.add_runtime_dependency "multi_json"
s.add_runtime_dependency "multi_xml"
s.add_runtime_dependency "xml-simple"
s.add_runtime_dependency "bogo", ">= 0.2.12", "< 1.0"
s.add_development_dependency "pry"
s.add_development_dependency "minitest"
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rake", "~> 10"
s.add_development_dependency "rufo", "~> 0.3.0"
s.files = Dir["{bin,lib}/**/*"] + %w(miasma.gemspec README.md CHANGELOG.md LICENSE)
end