dbmlite3.gemspec in dbmlite3-2.0.0.pre.alpha.4 vs dbmlite3.gemspec in dbmlite3-2.0.0.pre.alpha.6
- old
+ new
@@ -16,11 +16,11 @@
end
Gem::Specification.new do |s|
s.name = "dbmlite3#{SUFFIX}"
- s.version = '2.0.0-alpha.4'
+ s.version = '2.0.0-alpha.6'
s.date = '2022-02-21'
s.summary = "A DBM-style key-value store using SQLite3#{SUMMARY_EXTRA}"
s.description = <<-EOF + DESC_EXTRA
Lite3::DBM is an object that behaves like a Ruby Hash but stores
its data in a SQLite3 database table. It is a drop-in replacement
@@ -34,13 +34,14 @@
s.authors = ["Chris Reuter"]
s.email = 'chris@isplitonyourgrave.com'
# I'm just going to add everything so that if you've got the gem,
# you've also got the source distribution. Yay! Open source!
- s.files = `git ls-files`
- .split
- .reject {|f| f =~ /\.org$/} # Skip local developer notes
+ s.files =
+ Dir.glob('doc/**/*') +
+ `git ls-files`.split.reject {|f| f =~ /\.org$/}
+
s.required_ruby_version = '>= 2.7.0'
s.requirements << (JRUBY_GEM ?
"Sequel, jdbc-sqlite3, JRuby" :
"Sequel, sqlite3, Ruby MRI")