io-watch 0.6.0 → 0.6.1
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.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: 3b3d57b500111de6639098f96580da6ddfc5029f77fc0daf97159e54415ea7c5
|
|
4
|
+
data.tar.gz: 0ee6cfbdb782214fc141b713f7396448e92ae438244939ed48b9681a6e620f7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e4873bbd69789206c2704fe3e20914c7955c79d2310513adcf8dd9371c6773bf9d0a729b19b1de4a18fe852631435184559d98600d7de5b2ecd81a5a633075a
|
|
7
|
+
data.tar.gz: cbc9fdaedb8f1383e36e845cd07341e2427e706c205a94da35b355eb87ae049f9d2a256d30beb3a4616f35fbcf10f66e5022e0653849a3762a01376a7937f003
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/lib/io/watch/version.rb
CHANGED
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.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -48,14 +48,9 @@ extensions:
|
|
|
48
48
|
extra_rdoc_files: []
|
|
49
49
|
files:
|
|
50
50
|
- bin/io-watch
|
|
51
|
-
- ext/Makefile
|
|
52
|
-
- ext/bin/io-watch
|
|
53
51
|
- ext/configure
|
|
54
|
-
- ext/io-watch
|
|
55
52
|
- ext/io/watch.c
|
|
56
|
-
- ext/io/watch.o
|
|
57
53
|
- ext/io/watch/fsevent.c
|
|
58
|
-
- ext/io/watch/fsevent.o
|
|
59
54
|
- ext/io/watch/inotify.c
|
|
60
55
|
- ext/io/watch/watch.h
|
|
61
56
|
- 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
|