-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsimple-rss.gemspec
More file actions
15 lines (15 loc) · 873 Bytes
/
simple-rss.gemspec
File metadata and controls
15 lines (15 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Gem::Specification.new do |s|
s.name = "simple-rss"
s.version = "2.2.0"
s.date = "2025-12-28"
s.summary = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
s.email = "lucas@rufy.com"
s.homepage = "https://github.com/cardmagic/simple-rss"
s.description = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
s.authors = ["Lucas Carlson"]
s.files = Dir["lib/**/*", "test/**/*", "LICENSE", "README.md", "Rakefile", "simple-rss.gemspec"]
s.required_ruby_version = ">= 3.1"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
s.add_development_dependency "test-unit"
end