clayton/consummo

View on GitHub
consummo.gemspec

Summary

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

Gem::Specification.new do |spec|
  spec.name          = "consummo"
  spec.version       = Consummo::VERSION
  spec.authors       = ["Clayton Lengel-Zigich"]
  spec.email         = ["clayton@claytonlz.com"]

  spec.summary       = %q{An engine for producing, consuming and enriching items from RSS Feeds.}
  spec.description   = %q{Consummo is a small ruby library that provides item producers, consumers and enrichers to take items from RSS feeds and turn them into persistable feed items. Consummo was extracted from https://consummo.io where it was used to find and process items in a new curation workflow.}
  spec.homepage      = "https://github.com/clayton/consummo"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "feedjira", "~> 2.0"
  spec.add_runtime_dependency "activesupport", "~> 6"
  spec.add_runtime_dependency "odyssey", "~> 0.3"
  spec.add_runtime_dependency "httparty", "~> 0.18"

  spec.add_development_dependency "bundler", "~> 2"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3"
  spec.add_development_dependency "vcr", "~> 6"
  spec.add_development_dependency "simplecov", "0.17.1"
end