ramekin 0.1.6 → 0.1.8
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 +4 -4
- data/lib/ramekin/amk_setup.rb +6 -2
- data/lib/ramekin/config.rb +2 -1
- data/lib/ramekin/legato.rb +4 -0
- data/lib/ramekin/note_aggregator.rb +0 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6af04a70eed27652d2144b60c60174351448340d5a64c0898ca7efed200c6c1
|
4
|
+
data.tar.gz: 6321af5b66c6f4f0b6eb80587b471e715b03965c842d971b5e9e0f815b55ba84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4623fb99a8931a16e012ab222b5c3adc35ff4e593b51cef486a5adca0fd869fee64eba71f5f4f48852b91b2f48bc1dbacccacdef62c30018c151469df7a2227
|
7
|
+
data.tar.gz: c5b8612c7c252336de639a5af80b8abc6b068961712c928a929eec536d99cfd926b89967f3defcafd46af396a21b13061846b5fc3ca9e12264dd7d51367d9ab3
|
data/lib/ramekin/amk_setup.rb
CHANGED
@@ -92,8 +92,12 @@ module Ramekin
|
|
92
92
|
lib_file = Dir.glob('asar/lib/*').find do |entry|
|
93
93
|
next false unless File.file?(entry)
|
94
94
|
next false if File.symlink?(entry)
|
95
|
-
|
96
|
-
|
95
|
+
next true if entry.end_with?('.dylib')
|
96
|
+
next true if entry.end_with?('.dll')
|
97
|
+
next true if entry =~ /[.]so([.]\d+)*\z/
|
98
|
+
end or error!(
|
99
|
+
"couldn't find a dynamic library in #{Ramekin.config.asar_dir} - did it compile correctly?"
|
100
|
+
)
|
97
101
|
|
98
102
|
@asar_lib_file = File.expand_path(lib_file, Ramekin.config.asar_dir)
|
99
103
|
end
|
data/lib/ramekin/config.rb
CHANGED
data/lib/ramekin/legato.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ramekin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jneen
|
8
8
|
bindir: gembin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: strscan
|