Sha256: 01d8c4bd235140d47bb51d73e6ca783d3de083194cb40c4a3ffb7233b559d455

Contents?: true

Size: 1.39 KB

Versions: 3

Compression:

Stored size: 1.39 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wiki_on_this_day/version'

Gem::Specification.new do |s|
  s.name          = 'wiki_on_this_day'
  s.version       = WikiOnThisDay::VERSION
  s.date          = "2016-03-25"
  s.summary       = "Find out what happened on this day in the past, using Wikipedia!"
  s.description   = "This gem scrapes the English Wikipedia Homepage (https://en.wikipedia.org/wiki/Main_Page) and obtains the list of significant historical events (and their abstracts) available there. Optionally, users may select one of the historical events and request the text of the first paragraph of the linked article."
  s.authors       = ["Ed Karabinus"]
  s.email         = 'karabinus@uchicago.edu'
  s.files         = `git ls-files`.split($\)
  s.executables   = ["wiki_on_this_day"]
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ["lib", "lib/wiki_on_this_day"]
  s.homepage      = 'http://rubygems.org/gems/wiki_on_this_day'
  s.license       = 'MIT'

  s.add_development_dependency "bundler", "~> 1.10"
  s.add_development_dependency "rake", "~> 10.0"
  s.add_development_dependency "rspec", "~> 3.0"
  s.add_development_dependency "pry", "~> 0.10"
  s.add_development_dependency "vcr", "~> 3.0"
  s.add_development_dependency "webmock", "~> 1.0"
  s.add_dependency "nokogiri", "~> 1.6"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wiki_on_this_day-0.2.2 wiki_on_this_day.gemspec
wiki_on_this_day-0.2.1 wiki_on_this_day.gemspec
wiki_on_this_day-0.2.0 wiki_on_this_day.gemspec