forked from dylanandrews/weatherfetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweatherfetch.gemspec
More file actions
24 lines (21 loc) · 813 Bytes
/
weatherfetch.gemspec
File metadata and controls
24 lines (21 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative 'lib/weatherfetch/version'
Gem::Specification.new do |s|
s.name = 'weatherfetch'
s.version = WeatherFetch::VERSION
s.date = '2020-06-19'
s.summary = 'CLI tool for fetching weather data'
s.homepage = 'https://github.com/DylanAndrews/weatherfetch'
s.authors = ['Dylan Andrews']
s.email = ['dylanandr@gmail.com']
s.files = ['lib/weatherfetch.rb']
s.files = Dir.glob('{bin,lib}/**/*')
s.license = 'MIT'
s.executables = 'weatherfetch'
s.add_dependency 'httparty', '~> 0.17'
s.add_dependency 'thor', '~> 1.0.1'
s.add_dependency 'rainbow', '~> 3.0'
s.add_dependency 'geocoder', '~> 1.6.3'
s.add_dependency 'terminal-table', '~> 1.8.0'
s.add_development_dependency 'pry', '~> 0.13'
end