cosing 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 040ee7054dacb1ad6141f23af73e66a02b4cea59db00b62cba8a74024f9aa172
4
- data.tar.gz: 1be033e088188c64142674029aad1f95882aadc8dec765c89abbc81b6aa0a948
3
+ metadata.gz: 6e6ff99fdd21f10a3da743c0e0bf8c4e007c387e675a337f9c44d65da77973ba
4
+ data.tar.gz: 6573f3907cbc0d186836785e17a098de4e3466a69e7bb69852d97966a59f7fba
5
5
  SHA512:
6
- metadata.gz: 144863d22513abfaf81ca0ce90a0962aad5dcaa67ec2c959881d22cab6febc412698b6ff462f890b07c312b3db6ebf8242582c985691558568634d6edbbc3fca
7
- data.tar.gz: c785be08ec43ecb134cef5aa67270c1f6c1269a1d35065ff5b6237c81c325a7f5782154863a9139f4de9119aa8b4a34799b30d185a0f97c0226ea2c338dab5d9
6
+ metadata.gz: 1cbea93cb3af4880b3fd84ba5ff97ff35086c30c1efa525449f24cdd8a15720898323ce21ce464f33976ef2fdd6e8e4157cb11ee9b987d602b2ee69a9fba5627
7
+ data.tar.gz: 67136335daeae6f94f2c68b05e48f2b8dbe719b955ffbeec730af9b10342f95fc2cc1b0ca75e8e368bcec817aaee46dc6bff02dc2fcfcdd40af55d53ee758b08
data/README.md CHANGED
@@ -126,11 +126,13 @@ The library is fast to load on an SSD. You can run the benchmarks by running
126
126
  `bin/benchmark`
127
127
 
128
128
  ```
129
- user system total real
130
- Cosing.load 1.255882 0.048911 1.304793 ( 1.314068)
131
- Cosing::Annex.load 0.127545 0.003247 0.130792 ( 0.131845)
129
+ user system total real
130
+ Cosing.load 0.676430 0.011551 0.687981 ( 0.688974)
131
+ Cosing::Annex.load 0.065957 0.001479 0.067436 ( 0.067588)
132
132
  ```
133
133
 
134
+ The above benchmark was run on an M3 Pro Macbook.
135
+
134
136
  ## Development
135
137
 
136
138
  After checking out the repo, run `bin/setup` to install dependencies. Then, run
data/cosing.gemspec CHANGED
@@ -19,11 +19,26 @@ Gem::Specification.new do |spec|
19
19
  spec.metadata["changelog_uri"] = spec.homepage
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added
23
+ # into git.
23
24
  spec.files = Dir.chdir(__dir__) do
24
25
  `git ls-files -z`.split("\x0").reject do |f|
25
26
  (File.expand_path(f) == __FILE__) ||
26
- f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
27
+ f.start_with?(
28
+ *%w[
29
+ bin/
30
+ test/
31
+ spec/
32
+ features/
33
+ .git
34
+ appveyor
35
+ Gemfile
36
+ CHANGELOG.md
37
+ Rakefile
38
+ .rubocop.yml
39
+ .rspec
40
+ ]
41
+ )
27
42
  end
28
43
  end
29
44
  spec.bindir = "exe"