io-watch 0.1.1 → 0.2.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: 76f5c7a3703e675f762cbebe938285e34a1fe3f70d472f33bf04e5a713070d0c
4
- data.tar.gz: 0effe0ae87058c7cf9da2e714673a7b42df74856f29e0b845a132982ccdf04cb
3
+ metadata.gz: efa7c983d78d6c1d68fa71e376a13b2ed2db99ce1fcef3d8210bebc96b186db4
4
+ data.tar.gz: c810f3f37cc027965dd6a5076b794f4131e758481c6e7171e1eec1c671292d06
5
5
  SHA512:
6
- metadata.gz: adc9cb9e8a99469a2bd170148347d167971d7e4ff6aeda1c2d0f39c8c47439f46a0fa8ee513102d9a002ab95e9ff391a68094be6a382b83d4236b7b2efc283df
7
- data.tar.gz: 2c7e38ad27b69b80598eb8d26f2a0d0599fd07215f8e0321c1f9fd9d51ddefc419d451ce92ff3671bca0b21930fe9e6d5c70a83b80cd661d8c5ee8b4d46e6299
6
+ metadata.gz: 986d7995fe323c601b30927c3f098e602102b836719a938d218de2453d0493c9bd02835252e535a20e76f2c121429e14d97b8e22f50a5c63f1944904ad99c95b
7
+ data.tar.gz: 11a66c4f726382a9738c624b87fba567875fcdac9034985e3ebf9d0f8da635a20a3859861d86029f3d6967009707a5ca315859cf4d9771f77b9d0062eb472be8
checksums.yaml.gz.sig CHANGED
Binary file
@@ -5,6 +5,6 @@
5
5
 
6
6
  class IO
7
7
  module Watch
8
- VERSION = '0.1.1'
8
+ VERSION = '0.2.0'
9
9
  end
10
10
  end
data/readme.md CHANGED
@@ -22,7 +22,7 @@ We welcome contributions to this project.
22
22
 
23
23
  ### Developer Certificate of Origin
24
24
 
25
- In order to protect users of this project, we require all contributions to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed. All contributors must agree to this document for their contributions to be accepted.
25
+ In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
26
26
 
27
27
  ### Community Guidelines
28
28
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: io-watch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -46,14 +46,9 @@ extensions:
46
46
  - ext/configure
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - ext/Makefile
50
- - ext/bin/io-watch
51
49
  - ext/configure
52
- - ext/io-watch
53
50
  - ext/io/watch.c
54
- - ext/io/watch.o
55
51
  - ext/io/watch/fsevent.c
56
- - ext/io/watch/fsevent.o
57
52
  - ext/io/watch/inotify.c
58
53
  - ext/io/watch/watch.h
59
54
  - lib/io/watch.rb
metadata.gz.sig CHANGED
Binary file
data/ext/Makefile DELETED
@@ -1,31 +0,0 @@
1
- TARGET = io-watch
2
- CC = cc
3
- CFLAGS = -Wall -Wextra
4
- LDFLAGS = -framework CoreServices
5
- SOURCES = io/watch.c io/watch/fsevent.c
6
- OBJECTS = $(SOURCES:.c=.o)
7
- PREFIX = /Users/samuel/Developer/socketry/io-watch/ext
8
-
9
- all: $(TARGET)
10
-
11
- $(TARGET): $(OBJECTS)
12
- $(CC) $(LDFLAGS) -o $@ $^
13
-
14
- # To create object files
15
- %.o: %.c
16
- $(CC) $(CFLAGS) -c $< -o $@
17
-
18
- # Clean Target
19
- clean:
20
- rm -f $(TARGET) $(OBJECTS)
21
-
22
- install: $(TARGET)
23
- @echo "Installing $(TARGET) to $(PREFIX)/bin"
24
- mkdir -p $(PREFIX)/bin
25
- install -m 755 $(TARGET) $(PREFIX)/bin
26
-
27
- uninstall:
28
- @echo "Removing $(TARGET) from $(PREFIX)/bin"
29
- rm -f $(PREFIX)/bin/$(TARGET)
30
-
31
- .PHONY: all clean install uninstall
data/ext/bin/io-watch DELETED
Binary file
Binary file
data/ext/io/watch.o DELETED
Binary file
data/ext/io-watch DELETED
Binary file