Skip to content

Commit

Permalink
Merge branch 'master' into sdk-release/next-major
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-stripe committed Apr 7, 2024
2 parents d734493 + 45a6500 commit e90350c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
File renamed without changes.
9 changes: 4 additions & 5 deletions stripe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ Gem::Specification.new do |s|
/\A\.rubocop/,
/\A\.travis.yml/,
/\A\.vscode/,
%r{\A(bin/tapioca)},
/\Abin/,
/\Asorbet/,
/\Atest/
)
s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
s.executables = `git ls-files -- bin/*`.split("\n")
.map { |f| File.basename(f) }
.reject { |f| f == "tapioca" }
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

0 comments on commit e90350c

Please sign in to comment.