forked from ruby/rss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.gemspec
More file actions
26 lines (22 loc) · 804 Bytes
/
rss.gemspec
File metadata and controls
26 lines (22 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require_relative "lib/rss/version"
Gem::Specification.new do |spec|
spec.name = "rss"
spec.version = RSS::VERSION
spec.authors = ["Kouhei Sutou"]
spec.email = ["kou@cozmixng.org"]
spec.summary = %q{Family of libraries that support various formats of XML "feeds".}
spec.description = %q{Family of libraries that support various formats of XML "feeds".}
spec.homepage = "https://github.com/ruby/rss"
spec.license = "BSD-2-Clause"
spec.files = [
"LICENSE.txt",
"NEWS.md",
"README.md",
]
spec.files += Dir.glob("lib/**/*.rb")
spec.require_paths = ["lib"]
spec.add_dependency "rexml"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
end