Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#459] Remove schema.rb from .gitattributes linguist-generated #468

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# See https://git-scm.com/docs/gitattributes for more about git attribute files.

# Mark any vendored files as having been vendored.
vendor/* linguist-vendored
5 changes: 5 additions & 0 deletions .template/spec/base/template_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@
it 'creates Reek configuration files' do
expect(file('.reek.yml')).to exist
end

it 'creates the .gitattributes without schema.db' do
expect(file('.gitattributes')).to exist
expect(file('.gitattributes')).not_to contain('db/schema.rb')
end
end
1 change: 1 addition & 0 deletions template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def apply_template!(template_root)
apply 'bin/template.rb'
apply 'config/template.rb'
apply '.gitignore.rb'
copy_file '.gitattributes', force: true

after_bundle do
use_source_path template_root
Expand Down