Skip to content

Commit

Permalink
Move convert_to_shoulda_syntax to exe/
Browse files Browse the repository at this point in the history
We plan on adding a setup script in bin/, and we don't want to include
bin/ in the bundled gem. It's more common these days to store
executables in exe/, so move the existing executable there (see RSpec).
  • Loading branch information
mcmire committed Feb 18, 2019
1 parent 225eb4b commit 5b8e955
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion shoulda-context.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.executables = `git ls-files -- exe/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_development_dependency("appraisal", "~> 0.5")
Expand Down

0 comments on commit 5b8e955

Please sign in to comment.