-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpresently.gemspec
More file actions
32 lines (22 loc) · 905 Bytes
/
presently.gemspec
File metadata and controls
32 lines (22 loc) · 905 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
27
28
29
30
31
32
# frozen_string_literal: true
require_relative "lib/presently/version"
Gem::Specification.new do |spec|
spec.name = "presently"
spec.version = Presently::VERSION
spec.summary = "A web-based presentation tool built with Lively."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/presently"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/presently/",
"source_code_uri" => "https://github.com/socketry/presently.git",
}
spec.files = Dir["{bake,bin,lib,public,templates}/**/*", "*.md", base: __dir__]
spec.executables = ["presently"]
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "lively", "~> 0.16"
spec.add_dependency "markly", "~> 0.16"
spec.add_dependency "async-webdriver", "~> 0.12"
end