-
Notifications
You must be signed in to change notification settings - Fork 0
/
most_haunted.gemspec
26 lines (20 loc) · 1.06 KB
/
most_haunted.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
#lib = File.expand_path("../lib", __FILE__)
#$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative './lib/most_haunted/version'
Gem::Specification.new do |spec|
spec.name = "most_haunted"
spec.version = MostHauntedCli::VERSION
spec.authors = ["jamiegiuliano"]
spec.email = ["[email protected]"]
spec.summary = "Most Haunted Places in America"
spec.description = "Top 10 Haunted Locations in America and Top Haunted Locations in Every State."
spec.homepage = "https://github.com/jamiegiuliano/most_haunted_cli_gem"
spec.license = "MIT"
spec.executables = ["most_haunted"]
spec.files = ["lib/most_haunted/america.rb", "lib/most_haunted/cli.rb", "lib/most_haunted/scraper.rb", "lib/most_haunted/version.rb", "lib/most_haunted.rb", "config/environment.rb"]
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_runtime_dependency "nokogiri",
[">= 1.8.1"]
end