1
0

rss_agent.gemspec 982 B

12345678910111213141516171819202122232425
  1. # coding: utf-8
  2. lib = File.expand_path('../lib', __FILE__)
  3. $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
  4. Gem::Specification.new do |spec|
  5. spec.name = "rss_agent"
  6. spec.version = '0.1'
  7. spec.authors = ["Andrew Cantino"]
  8. spec.email = ["https://github.com/cantino/huginn"]
  9. spec.summary = %q{The default Huginn RSSAgent for consuming RSS and Atom feeds.}
  10. spec.homepage = "https://github.com/cantino/huginn"
  11. spec.license = "MIT"
  12. spec.files = `git ls-files -z`.split("\x0")
  13. spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  14. spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
  15. spec.require_paths = ["lib"]
  16. spec.add_development_dependency "bundler", "~> 1.7"
  17. spec.add_development_dependency "rake", "~> 10.0"
  18. spec.add_development_dependency "rspec"
  19. spec.add_runtime_dependency "huginn_agent"
  20. spec.add_runtime_dependency "feed-normalizer", "~> 1.5.2"
  21. end