Skip to content

Commit

Permalink
Remove binstubs from shipped version of gem
Browse files Browse the repository at this point in the history
As far as I can see they are not part of gem, but rather development-related.

The problem is that when adding to a project, they conflict with real binstubs coming from these libraries, resulting in a warning from Bundler:

```
The `rspec` executable in the `omniauth-sageone` gem is being loaded, but it's also present in other gems (rspec-core)
...
```
  • Loading branch information
michalbugno authored and jaredmoody committed Jul 6, 2023
1 parent a351f7e commit 617f875
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion omniauth-sageone.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/jetbuilt/omniauth-sageone'
gem.licenses = 'MIT'

gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.name = 'omniauth-sageone'
gem.require_paths = ['lib']
Expand Down

0 comments on commit 617f875

Please sign in to comment.