autotest-fsevent 0.2.20 → 0.2.22
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +11 -0
- data/README.md +3 -1
- data/ext/fsevent/extconf.rb +2 -2
- data/lib/autotest-fsevent/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +12 -14
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60a2ed5407af734ee7418d432a051b2fddc7522698581bce7d35cb2cf40f0a42
|
4
|
+
data.tar.gz: 1ed4e19cd74b354e749f03d47f9ee51ad4d24872a849a49c22a6883a7b611831
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c074cdd4ccf9f22f747b8f0ecea6f74122e108a73060563d9641d5cce0cddb7215847ea22efd873b14bbbbae4c7a28225442d10e1439347bcf6fbd46e89752f2
|
7
|
+
data.tar.gz: 0cf97ea279d07d073c0d87d4b0ebd8cdb7010c488dadb28cbdb20be53e65e203a76b5df988e9308053fe41e97ed6077aa0ad3d7557d6bebccde4e22ee2686326
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
Nothing so far
|
4
4
|
|
5
|
+
## 0.2.22
|
6
|
+
|
7
|
+
#### Changes
|
8
|
+
* Update Ruby to 3.4
|
9
|
+
* Remove and ignore gems.locked
|
10
|
+
|
11
|
+
## 0.2.21
|
12
|
+
|
13
|
+
#### Fixes
|
14
|
+
* Use `File#exist?` ([@dskecse](https://github.com/svoop/autotest-fsevent/pull/14))
|
15
|
+
|
5
16
|
## 0.2.20
|
6
17
|
|
7
18
|
#### Changes
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
[](https://rubygems.org/gems/autotest-fsevent)
|
2
|
-
[](https://github.com/sponsors/svoop)
|
3
3
|
|
4
4
|
# autotest-fsevent
|
5
5
|
|
@@ -10,6 +10,8 @@ Apple has introduced FSEvent with Mac OS X 10.5 which is a very efficient way to
|
|
10
10
|
* [Homepage](https://github.com/svoop/autotest-fsevent)
|
11
11
|
* Author: [Sven Schwyn - Bitcetera](http://www.bitcetera.com)
|
12
12
|
|
13
|
+
Thank you for supporting free and open-source software by sponsoring on [GitHub](https://github.com/sponsors/svoop) or on [Donorbox](https://donorbox.com/bitcetera). Any gesture is appreciated, from a single Euro for a ☕️ cup of coffee to 🍹 early retirement.
|
14
|
+
|
13
15
|
## Install
|
14
16
|
|
15
17
|
This gem is [cryptographically signed](https://guides.rubygems.org/security/#using-gems) in order to assure it hasn't been tampered with. Unless already done, please add the author's public key as a trusted certificate now:
|
data/ext/fsevent/extconf.rb
CHANGED
@@ -26,10 +26,10 @@ if `uname -s`.chomp == 'Darwin'
|
|
26
26
|
require 'fileutils'
|
27
27
|
FileUtils.cp(ENV['FSEVENT_SLEEP'], "#{gem_root}/bin/fsevent_sleep", :preserve => true)
|
28
28
|
fail "Installation of fsevent_sleep binary failed - see README for assistance" unless File.executable?("#{gem_root}/bin/fsevent_sleep")
|
29
|
-
elsif File.
|
29
|
+
elsif File.exist?('/Developer/Applications/Xcode.app')
|
30
30
|
`CFLAGS='-isysroot /Developer/SDKs/MacOSX#{sdk_version}.sdk -mmacosx-version-min=#{sdk_version}' /usr/bin/gcc -framework CoreServices -o "#{gem_root}/bin/fsevent_sleep" fsevent_sleep.c`
|
31
31
|
fail "Compilation of fsevent_sleep binary failed - see README for assistance" unless File.executable?("#{gem_root}/bin/fsevent_sleep")
|
32
|
-
elsif File.
|
32
|
+
elsif File.exist?('/Applications/Xcode.app') # Xcode 4.3
|
33
33
|
`CFLAGS='-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX#{sdk_version}.sdk -mmacosx-version-min=#{sdk_version}' /usr/bin/gcc -framework CoreServices -o "#{gem_root}/bin/fsevent_sleep" fsevent_sleep.c`
|
34
34
|
fail "Compilation of fsevent_sleep binary failed - see README for assistance" unless File.executable?("#{gem_root}/bin/fsevent_sleep")
|
35
35
|
else
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,18 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autotest-fsevent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain:
|
11
10
|
- |
|
12
11
|
-----BEGIN CERTIFICATE-----
|
13
12
|
MIIDODCCAiCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhydWJ5
|
14
|
-
|
15
|
-
|
13
|
+
L0RDPWJpdGNldGVyYS9EQz1jb20wHhcNMjQxMTIwMjExMDIwWhcNMjUxMTIwMjEx
|
14
|
+
MDIwWjAjMSEwHwYDVQQDDBhydWJ5L0RDPWJpdGNldGVyYS9EQz1jb20wggEiMA0G
|
16
15
|
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDcLg+IHjXYaUlTSU7R235lQKD8ZhEe
|
17
16
|
KMhoGlSUonZ/zo1OT3KXcqTCP1iMX743xYs6upEGALCWWwq+nxvlDdnWRjF3AAv7
|
18
17
|
ikC+Z2BEowjyeCCT/0gvn4ohKcR0JOzzRaIlFUVInlGSAHx2QHZ2N8ntf54lu7nd
|
@@ -21,15 +20,15 @@ cert_chain:
|
|
21
20
|
PVa0i729A4IhroNnFNmw4wOC93ARNbM1+LW36PLMmKjKudf5Exg8VmDVAgMBAAGj
|
22
21
|
dzB1MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSfK8MtR62mQ6oN
|
23
22
|
yoX/VKJzFjLSVDAdBgNVHREEFjAUgRJydWJ5QGJpdGNldGVyYS5jb20wHQYDVR0S
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
23
|
+
BBYwFIEScnVieUBiaXRjZXRlcmEuY29tMA0GCSqGSIb3DQEBCwUAA4IBAQDSeB1x
|
24
|
+
8QK8F/ML37isgvwGiQxovDUqu6Sq14cQ1qE9y5prUBmL2AsDuCBpXXctcvamFqNC
|
25
|
+
PgfJtj7ZZcXmY0SfKCog7T1btkr6zYxPXpxwUqB45n0I6v5qc0UCNvMEfBzxlak5
|
26
|
+
VW7UMNlKD9qukeN55hxuLF2F/sLldMcHUo/ATgdV4zk1t3sK6A9+02wz5K5qfWdM
|
27
|
+
Mi+XWXmGd57uojk3RcIXNwBRRP4DTKcKgVXhuyHb7q1vjTXrS6bw1Ortu0KmWOIk
|
28
|
+
jTyRsT1gymASS2KHe+BaCTwD74GqO8q4woYLZgXnJ/PvgcFgY2FEi2Kn/sXLp4JE
|
29
|
+
boIgxQCMT+nxBHCD
|
31
30
|
-----END CERTIFICATE-----
|
32
|
-
date:
|
31
|
+
date: 2024-12-25 00:00:00.000000000 Z
|
33
32
|
dependencies:
|
34
33
|
- !ruby/object:Gem::Dependency
|
35
34
|
name: sys-uname
|
@@ -147,8 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
146
|
- !ruby/object:Gem::Version
|
148
147
|
version: '0'
|
149
148
|
requirements: []
|
150
|
-
rubygems_version: 3.
|
151
|
-
signing_key:
|
149
|
+
rubygems_version: 3.6.2
|
152
150
|
specification_version: 4
|
153
151
|
summary: Use FSEvent instead of filesystem polling
|
154
152
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|