stripe-ruby/stripe.gemspec
Ufuk Kayserilioglu 45a650036e
Move executables to exe folder (#1366)
Conventionally `bin` folder is home to scripts that are meant to be run by developers working on the project, whereas the `exe` folder is used for executables that are meant to be exported by the gem.

The guidance from the Bundler team around this has been live since 2015: https://bundler.io/blog/2015/03/20/moving-bins-to-exe.html

This PR simplifies the gemspec and updates the `bin` folder to `exe` in the gemspec and removes some of the unnecessarily cleanup that was introduced previously.
2024-04-05 14:30:23 -07:00

45 lines
1.4 KiB
Ruby

# frozen_string_literal: true
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
require "stripe/version"
Gem::Specification.new do |s|
s.name = "stripe"
s.version = Stripe::VERSION
s.required_ruby_version = ">= 2.3.0"
s.summary = "Ruby bindings for the Stripe API"
s.description = "Stripe is the easiest way to accept payments online. " \
"See https://stripe.com for details."
s.author = "Stripe"
s.email = "support@stripe.com"
s.homepage = "https://stripe.com/docs/api?lang=ruby"
s.license = "MIT"
s.metadata = {
"bug_tracker_uri" => "https://github.com/stripe/stripe-ruby/issues",
"changelog_uri" =>
"https://github.com/stripe/stripe-ruby/blob/master/CHANGELOG.md",
"documentation_uri" => "https://stripe.com/docs/api?lang=ruby",
"github_repo" => "ssh://github.com/stripe/stripe-ruby",
"homepage_uri" => "https://stripe.com/docs/api?lang=ruby",
"source_code_uri" => "https://github.com/stripe/stripe-ruby",
"rubygems_mfa_required" => "false",
}
ignored = Regexp.union(
/\A\.editorconfig/,
/\A\.git/,
/\A\.rubocop/,
/\A\.travis.yml/,
/\A\.vscode/,
/\Abin/,
/\Asorbet/,
/\Atest/
)
s.files = `git ls-files`.split("\n").grep_v(ignored)
s.bindir = "exe"
s.executables = `git ls-files -- exe/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
end