dbmlite3 2.0.0.pre.alpha.3 → 2.0.0.pre.alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc6777e1faeaa79a0ec9b34c5bd5d12cc7568949eea71ae18845f8ff24045796
4
- data.tar.gz: 909bc62a04f0585355b867af912660b65926665ebbb9b69404d7d461aea6b5d4
3
+ metadata.gz: ab0be7881425078c239893c85abbc7d90c90080d22199ba32b90374881c7da74
4
+ data.tar.gz: 07ac1be8a7477203df27b774421845cee2860a0193e10b5984592e891038a007
5
5
  SHA512:
6
- metadata.gz: d388662969b8f9cf2d44fe697ee54bd0f58e1feba77bfafeb0061341c03b048d05fa6e877cedf56cc545e98678f02016142a0b1ccfae477abce2ccd53ebbe787
7
- data.tar.gz: 98ecd13107c15f3db41b0093c4acdfb81f23caa2424d5163ddd2d7e626e08b5cedf7cefb01589ec19717ba14275b94d6825fb87525b7bf270104eca14f5e147c
6
+ metadata.gz: 6ebf5bf6deefa36c6a9e350beb6bc6f89ac838f6bba30a6325c7173503a7e5934665a4f2cf008960656639fbcf956836e6e2c7c613b2e66c9945e08e6c12dfaa
7
+ data.tar.gz: 6220cf63ff404034f1ec1a81e470ca0af5508e412af46ace4b6209b091237c476d4708383639f2b9ba3d1d6f9ef639185a44a563066c07457d9fcfeb2fbbd32a
data/dbmlite3.gemspec CHANGED
@@ -8,17 +8,19 @@ if JRUBY_GEM
8
8
  This is the JRuby version of dbmlite3; it is identical to the MRI
9
9
  version except for its dependencies.
10
10
  EOF
11
+ SUMMARY_EXTRA = " (JRuby version)"
11
12
  else
12
13
  SUFFIX = ''
13
14
  DESC_EXTRA = ''
15
+ SUMMARY_EXTRA = ''
14
16
  end
15
17
 
16
18
 
17
19
  Gem::Specification.new do |s|
18
20
  s.name = "dbmlite3#{SUFFIX}"
19
- s.version = '2.0.0-alpha.3'
21
+ s.version = '2.0.0-alpha.6'
20
22
  s.date = '2022-02-21'
21
- s.summary = "A DBM-style key-value store using SQLite3"
23
+ s.summary = "A DBM-style key-value store using SQLite3#{SUMMARY_EXTRA}"
22
24
  s.description = <<-EOF + DESC_EXTRA
23
25
  Lite3::DBM is an object that behaves like a Ruby Hash but stores
24
26
  its data in a SQLite3 database table. It is a drop-in replacement
@@ -34,10 +36,11 @@ EOF
34
36
 
35
37
  # I'm just going to add everything so that if you've got the gem,
36
38
  # you've also got the source distribution. Yay! Open source!
37
- s.files = `git ls-files`
38
- .split
39
- .reject {|f| f =~ /\.org$/} # Skip local developer notes
39
+ s.files =
40
+ Dir.glob('doc/**/*') +
41
+ `git ls-files`.split.reject {|f| f =~ /\.org$/}
40
42
 
43
+
41
44
  s.required_ruby_version = '>= 2.7.0'
42
45
  s.requirements << (JRUBY_GEM ?
43
46
  "Sequel, jdbc-sqlite3, JRuby" :