-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoottown.gemspec
29 lines (23 loc) · 1.12 KB
/
toottown.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
# frozen_string_literal: true
require_relative "lib/toottown/version"
Gem::Specification.new do |spec|
spec.name = "toottown"
spec.version = Toottown::VERSION
spec.author = "Jared White"
spec.email = "[email protected]"
spec.summary = "Bring comments into your Bridgetown site via Mastodon and the Fediverse"
spec.homepage = "https://github.com/whitefusionhq/toottown"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features|frontend)/!) }
spec.test_files = spec.files.grep(%r!^test/!)
spec.require_paths = ["lib"]
spec.metadata = { "yarn-add" => "toottown@#{Toottown::VERSION}" }
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "bridgetown", ">= 2.0.0.beta2", "< 3.0"
spec.add_dependency "phlex", "~> 1.3"
spec.add_dependency "redis", "~> 5.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", ">= 13.0"
spec.add_development_dependency "rubocop-bridgetown", "~> 0.3"
spec.add_development_dependency "dotenv", "~> 2.8"
end