ramekin 0.1.7 → 0.1.9

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: 8df1425f8986f77501484c31067d29deca4683da46be551bb9af21eb600a02e9
4
- data.tar.gz: c201f6a35161c0e2369212938f1577e02b96c3a4fe036486c9621bb2ec64c912
3
+ metadata.gz: 765b62c41161f9939eccd6a53a5e0d4b32dc3cd3ec83584231d8dd4172655d5e
4
+ data.tar.gz: 1a0c1b59f0c9cc746fbb97f19c11d66c14d5dd535d5618c6542c16c8c69fce63
5
5
  SHA512:
6
- metadata.gz: 6dcf805c978c96e73c552867100243717f35789716058f07e79183172674dc218083ef2200df6a8553a2bfb65b931d33cfec17a7118f4f603b32d386affa42d3
7
- data.tar.gz: 4cf665aa3afde278328d0c59677458df0437886fc21f2692c47ef00ca48b138a16be7169d2f267d38833cb8a70a59690dc4bab0bf1caae2637ea48950200d32f
6
+ metadata.gz: 8a1986e575b290efe80774910bb1fa2c52f1be4f16d9aa9e3888711de7f29252c03fd46fab7a7a454314e7fbd9abbd9408c2229c93d3307fda0059987b94972a
7
+ data.tar.gz: c312388efff73d5953984dd7803e3b6313de634549ef9538606def060cdd191c04ef295876cfb8d61d443693f40057206584bec82bba239ad97b6aa37b4f2a08
@@ -18,7 +18,7 @@ module Ramekin
18
18
  if Ramekin.config.windows?
19
19
  File.exist?("#{Ramekin.config.amk_dir}/AddmusicK.exe")
20
20
  else
21
- Ramekin.config.try_asar_lib && File.executable?("#{Ramekin.config.amk_dir}/Addmusick")
21
+ Ramekin.config.try_asar_lib && File.executable?("#{Ramekin.config.amk_dir}/AddmusicK")
22
22
  end
23
23
  end
24
24
 
@@ -94,7 +94,7 @@ module Ramekin
94
94
  next false if File.symlink?(entry)
95
95
  next true if entry.end_with?('.dylib')
96
96
  next true if entry.end_with?('.dll')
97
- next true if entry =~ /[.]so([.]\d+)*/
97
+ next true if entry =~ /[.]so([.]\d+)*\z/
98
98
  end or error!(
99
99
  "couldn't find a dynamic library in #{Ramekin.config.asar_dir} - did it compile correctly?"
100
100
  )
@@ -100,7 +100,8 @@ module Ramekin
100
100
  Dir.glob('asar/lib/*').find do |f|
101
101
  next unless File.file?(f)
102
102
  next if File.symlink?(f)
103
- f.end_with?(lib_ext)
103
+
104
+ f =~ /[.]#{lib_ext}([.]\d+)*/
104
105
  end
105
106
  end
106
107
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ramekin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - jneen