-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsemantic_crawler.gemspec
More file actions
39 lines (33 loc) · 1.89 KB
/
semantic_crawler.gemspec
File metadata and controls
39 lines (33 loc) · 1.89 KB
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "semantic_crawler/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "semantic-crawler"
s.version = SemanticCrawler::VERSION
s.authors = ["Alex Oberhauser"]
s.email = ["alex.oberhauser@sigimera.org"]
s.licenses = ["MIT"]
s.homepage = "https://github.com/obale/semantic_crawler"
s.summary = "SemanticCrawler is a ruby library that encapsulates data gathering from different sources, e.g. microdata from websites."
s.description = "SemanticCrawler is a ruby library that encapsulates data gathering from different sources. Currently microdata from websites, country information from Freebase, Factbook and FAO (Food and Agriculture Organization of the United Nations), crisis information from GDACS.org and geo data from LinkedGeoData are supported. Additional the GeoNames module allows to get Factbook and FAO country information from GPS coordinates."
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) }
s.test_files = Dir["{test,spec}/**/*"]
s.require_paths = ['lib']
s.add_dependency "httparty"
s.add_dependency "json"
#s.add_dependency "google-api-client" # Freebase API access
s.add_dependency "nokogiri" # XML Parsing
s.add_dependency "geonames" # Use for the GeoNames module
s.add_dependency "microdata"
s.add_development_dependency "yard"
s.add_development_dependency "grit"
s.add_development_dependency "rails", "~> 3.2"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec"
s.add_development_dependency "simplecov"
s.add_development_dependency "simplecov-rcov"
s.add_development_dependency "pry"
s.add_development_dependency "awesome_print"
end