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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35333051f7c7f13fe5604cd40837e5804b954f1d304b5882601f9aa1bab2080b
4
- data.tar.gz: bef6b40c3093b891aebf2dd7a5aeabe251f7e86d912cb6eb78f3bcecf7d82222
3
+ metadata.gz: 60a2ed5407af734ee7418d432a051b2fddc7522698581bce7d35cb2cf40f0a42
4
+ data.tar.gz: 1ed4e19cd74b354e749f03d47f9ee51ad4d24872a849a49c22a6883a7b611831
5
5
  SHA512:
6
- metadata.gz: 04c8409bb932e64f9b48919c873c1ea9f0ccd9111ab6ce1aaa5fff45bb50649f5802978f0d53d5183bbc60ebc29414a3d3b923714991ebc43676f1b41c6c1e7c
7
- data.tar.gz: 9c74bbd94f91f899ac0001eeb227dfca12c540ea872331599b104d9097fd56470dd9d42b47a011714cdd0fbff58a6a9d757b05b6f39cbf0055907afe5ed5a3c4
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
  [![Version](https://img.shields.io/gem/v/autotest-fsevent.svg?style=flat)](https://rubygems.org/gems/autotest-fsevent)
2
- [![Donorbox](https://img.shields.io/badge/donate-on_donorbox-yellow.svg)](https://donorbox.org/bitcetera)
2
+ [![GitHub Sponsors](https://img.shields.io/github/sponsors/svoop.svg)](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:
@@ -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.exists?('/Developer/Applications/Xcode.app')
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.exists?('/Applications/Xcode.app') # Xcode 4.3
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
@@ -1,5 +1,5 @@
1
1
  class Autotest
2
2
  module FSEvent
3
- VERSION = "0.2.20"
3
+ VERSION = "0.2.22"
4
4
  end
5
5
  end
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.20
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
- L0RDPWJpdGNldGVyYS9EQz1jb20wHhcNMjIxMTA2MTIzNjUwWhcNMjMxMTA2MTIz
15
- NjUwWjAjMSEwHwYDVQQDDBhydWJ5L0RDPWJpdGNldGVyYS9EQz1jb20wggEiMA0G
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
- BBYwFIEScnVieUBiaXRjZXRlcmEuY29tMA0GCSqGSIb3DQEBCwUAA4IBAQAYG2na
25
- ye8OE2DANQIFM/xDos/E4DaPWCJjX5xvFKNKHMCeQYPeZvLICCwyw2paE7Otwk6p
26
- uvbg2Ks5ykXsbk5i6vxDoeeOLvmxCqI6m+tHb8v7VZtmwRJm8so0eSX0WvTaKnIf
27
- CAn1bVUggczVdNoBXw9WAILKyw9bvh3Ft740XZrR74sd+m2pGwjCaM8hzLvrVbGP
28
- DyYhlBeRWyQKQ0WDIsiTSRhzK8HwSTUWjvPwx7SEdIU/HZgyrk0ETObKPakVu6bH
29
- kAyiRqgxF4dJviwtqI7mZIomWL63+kXLgjOjMe1SHxfIPo/0ji6+r1p4KYa7o41v
30
- fwIwU1MKlFBdsjkd
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: 2022-11-06 00:00:00.000000000 Z
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.3.25
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