-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkday.gemspec
43 lines (37 loc) · 1.47 KB
/
workday.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
36
37
38
39
40
41
42
43
# frozen_string_literal: true
require_relative "lib/workday/version"
Gem::Specification.new do |spec|
spec.name = "workday"
spec.version = Workday::VERSION
spec.summary = "Start and end your Planning Center work day with this handy CLI tool."
spec.description = <<~DESC
Start and end your Planning Center work day with this handy CLI tool.
DESC
spec.authors = ["Brian Weaver"]
spec.license = "MIT"
spec.email = "brian@planningcenter.com"
spec.homepage = "https://github.com/bweave/workday"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/bweave/workday/issues",
"changelog_uri" => "https://github.com/bweave/workday/blob/master/CHANGELOG.md",
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
}
spec.files = Dir["lib/**/*"]
spec.bindir = "exe"
spec.executables = %w[workday]
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "pastel", "~> 0.8.0"
spec.add_dependency "slack-ruby-client", "~>0.17"
spec.add_dependency "thor", "~>1.1"
spec.add_dependency "tty-command", "~> 0.10.0"
spec.add_dependency "tty-config", "~> 0.4.0"
spec.add_dependency "tty-font", "~> 0.5.0"
spec.add_dependency "tty-prompt", "~> 0.23.0"
spec.add_dependency "tty-pager", "~> 0.14.0"
spec.add_dependency "tty-spinner", "~> 0.9.0"
spec.add_dependency "tty-table", "~> 0.12.0"
spec.add_development_dependency "minitest"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake", "~> 12.3"
end