-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcoach.gemspec
More file actions
26 lines (21 loc) · 866 Bytes
/
coach.gemspec
File metadata and controls
26 lines (21 loc) · 866 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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "coach/version"
Gem::Specification.new do |spec|
spec.name = "coach"
spec.version = Coach::VERSION
spec.summary = "Alternative controllers built with middleware"
spec.authors = %w[GoCardless]
spec.homepage = "https://github.com/gocardless/coach"
spec.email = %w[developers@gocardless.com]
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ["lib"]
spec.executables = ["coach"]
spec.add_dependency "actionpack", ">= 7.0"
spec.add_dependency "activesupport", ">= 7.0"
spec.add_dependency "commander", ">= 4.5", "< 6.0"
spec.metadata["rubygems_mfa_required"] = "true"
end