Skip to content
Open
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: 1 addition & 3 deletions rolify.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ Gem::Specification.new do |s|
'wellington@wellingtoncordeiro.com'
]

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test_files directive is no longer used by RubyGems.org.

s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files lib`.split($/) + ['CHANGELOG.rdoc', 'LICENSE', 'README.md']
s.require_paths = ['lib']

s.required_ruby_version = '>= 2.5'
Expand Down