-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss_together.gemspec
35 lines (30 loc) · 1.4 KB
/
rss_together.gemspec
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
27
28
29
30
31
32
33
34
35
require_relative "lib/rss_together/version"
Gem::Specification.new do |spec|
spec.name = "rss_together"
spec.version = RssTogether::VERSION
spec.authors = ["Jaryl Sim"]
spec.email = ["jaryl.sim@me.com"]
spec.homepage = "https://github.com/jaryl/rss-together"
spec.summary = "Lorem ipsum."
spec.description = "Lorem ipsum."
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# to allow pushing to a single host or delete this section to allow pushing to any host.
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/jaryl/rss-together"
spec.metadata["changelog_uri"] = "https://github.com/jaryl/rss-together"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.0.2"
spec.add_dependency "rodauth-rails", "~> 1.2"
spec.add_dependency "after_commit_everywhere"
spec.add_dependency "email_validator"
spec.add_dependency "validate_url"
spec.add_dependency "addressable"
spec.add_dependency "faraday"
spec.add_dependency "faraday-retry"
spec.add_dependency "faraday-follow_redirects"
spec.add_dependency "pundit"
spec.add_dependency "counter_culture", "~> 2.0"
end