-
Notifications
You must be signed in to change notification settings - Fork 2
/
fireside-finder.gemspec
39 lines (34 loc) · 1.28 KB
/
fireside-finder.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
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fireside-finder/version'
# gem 'nokogiri'
# gem 'pry'
# gem 'geocoder'
# gem 'httparty'
# require 'nokogiri'
# require 'pry'
# require 'geocoder'
# require 'httparty'
Gem::Specification.new do |spec|
spec.name = "fireside-finder"
spec.version = FiresideFinder::VERSION
spec.author = ["reifnotreef"]
spec.authors = ["reifnotreef"]
spec.email = ["[email protected]"]
spec.license = "Apache-2.0"
spec.summary = "Find local Hearthstone Fireside Gatherings."
spec.description = "Put in your address of zip-code to find local Fireside Gatherings!"
spec.homepage = "https://github.com/reifnotreef/fireside-finder"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = ["fireside-finder"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "bundler"
spec.add_runtime_dependency "rake", ">=11.0.0"
spec.add_runtime_dependency "rspec"
spec.add_runtime_dependency "pry"
spec.add_runtime_dependency "nokogiri"
spec.add_runtime_dependency "geocoder"
spec.add_runtime_dependency "httparty"
end