I tried to follow documentation on README, but it seems to be missing something.
I'm trying to do the modifications inside the Juwelier::Tasks.new do |gem| block:
Juwelier::Tasks.new do |gem|
# gem.name ...
gem.files.exclude('folder')
end
I still get files inside that folder in the generated gemspec.
After I tried:
Juwelier::Tasks.new do |gem|
# gem.name ...
gem.files = Rake::FileList[]
gem.files.include('lib')
gem.files.exclude('benchmark')
end
But then no files are added at all.
What I'm missing here?
I tried to follow documentation on README, but it seems to be missing something.
I'm trying to do the modifications inside the
Juwelier::Tasks.new do |gem|block:I still get files inside that folder in the generated gemspec.
After I tried:
But then no files are added at all.
What I'm missing here?