Sha256: c16a99ac3ffed6da711ea1b4fd2e014cfcd27d63646c3022a53da94ce29d1b24

Contents?: true

Size: 1.89 KB

Versions: 2

Compression:

Stored size: 1.89 KB

Contents

$:.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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
semantic-crawler-0.7.1 semantic_crawler.gemspec
semantic-crawler-0.7.0 semantic_crawler.gemspec