io-watch 0.1.1 → 0.1.2
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/lib/io/watch/version.rb +1 -1
- data/readme.md +1 -1
- data.tar.gz.sig +0 -0
- metadata +1 -6
- metadata.gz.sig +0 -0
- data/ext/Makefile +0 -31
- data/ext/bin/io-watch +0 -0
- data/ext/io/watch/fsevent.o +0 -0
- data/ext/io/watch.o +0 -0
- data/ext/io-watch +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e172b9efc41362e2c6a81d3df86e23fdab53eba5412c50d647360998daa6542f
|
|
4
|
+
data.tar.gz: 4c9a64ed8562bb957f47379e06c3ea8756c6b892638d57291bc83b49e8676efd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e88178762aa10a658567a3e5fbfaca0383cdc6e85d62c9307d719aff96310109067d27ae1334682c7c99591785bde853c8d2914b2406dea9344b3c148a28ca86
|
|
7
|
+
data.tar.gz: 183a4c0a5e0d4aec92b612d0598875085063a0e75af8180eeb46c035196f4e983a0dc7f1f757bfb099f61bc218be4564cda7ffd278ec33e3edcae5873b4c48c4
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/lib/io/watch/version.rb
CHANGED
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
|
|
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.
|
|
4
|
+
version: 0.1.2
|
|
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
|
data/ext/io/watch/fsevent.o
DELETED
|
Binary file
|
data/ext/io/watch.o
DELETED
|
Binary file
|
data/ext/io-watch
DELETED
|
Binary file
|