dbmlite3.gemspec in dbmlite3-2.0.0.pre.alpha.3 vs dbmlite3.gemspec in dbmlite3-2.0.0.pre.alpha.4

- old
+ new

@@ -6,20 +6,22 @@ DESC_EXTRA = <<EOF This is the JRuby version of dbmlite3; it is identical to the MRI version except for its dependencies. EOF + SUMMARY_EXTRA = " (JRuby version)" else SUFFIX = '' DESC_EXTRA = '' + SUMMARY_EXTRA = '' end Gem::Specification.new do |s| s.name = "dbmlite3#{SUFFIX}" - s.version = '2.0.0-alpha.3' + s.version = '2.0.0-alpha.4' s.date = '2022-02-21' - s.summary = "A DBM-style key-value store using SQLite3" + 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 for DBM.