-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstripe-cli-ruby.gemspec
More file actions
29 lines (22 loc) · 989 Bytes
/
stripe-cli-ruby.gemspec
File metadata and controls
29 lines (22 loc) · 989 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
# frozen_string_literal: true
require_relative "lib/stripe_cli/version"
Gem::Specification.new do |spec|
spec.name = "stripe-cli-ruby"
spec.version = StripeCLI::VERSION
spec.authors = [ "Zacharias Knudsen" ]
spec.email = [ "z@chari.as" ]
spec.summary = "A self-contained `stripe` executable."
spec.homepage = "https://github.com/zachasme/stripe-cli-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["lib/**/*", "LICENSE.txt", "LICENSE-DEPENDENCIES", "README.md"]
spec.bindir = "exe"
spec.executables << "stripe"
spec.require_paths = [ "lib" ]
spec.add_development_dependency "puma", "~> 6.0" # see https://github.com/puma/puma/issues/3724
spec.add_development_dependency "stripe"
spec.add_development_dependency "rubocop-rails-omakase"
end