-
Notifications
You must be signed in to change notification settings - Fork 17
/
barometer.gemspec
33 lines (27 loc) · 941 Bytes
/
barometer.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'barometer/version'
Gem::Specification.new do |s|
s.name = 'barometer'
s.version = Barometer::VERSION
s.authors = ['Mark Gangl']
s.email = ['[email protected]']
s.description = 'A multi API consuming weather forecasting superstar.'
s.summary = s.description
s.homepage = 'http://github.com/attack/barometer'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
s.rdoc_options = ['--charset=UTF-8']
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'httpclient'
s.add_dependency 'tzinfo', '>= 0.3.14'
s.add_dependency 'nokogiri'
s.add_dependency 'addressable'
s.add_dependency 'nori'
s.add_dependency 'virtus', '>= 1.0.0'
s.add_dependency 'choc_mool'
s.add_development_dependency 'bundler'
end