cruise 0.1.0 → 0.2.0
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
- data/Cargo.lock +827 -0
- data/README.md +223 -0
- data/Rakefile +12 -5
- data/cruise.gemspec +11 -5
- data/ext/cruise/Cargo.toml +12 -6
- data/ext/cruise/build.rs +15 -0
- data/ext/cruise/cbindgen.toml +23 -0
- data/ext/cruise/cruise.c +158 -0
- data/ext/cruise/extconf.rb +109 -2
- data/ext/cruise/src/ffi.rs +124 -0
- data/ext/cruise/src/lib.rs +9 -211
- data/ext/cruise/src/watcher.rs +196 -0
- data/lib/cruise/event.rb +20 -0
- data/lib/cruise/version.rb +1 -1
- data/lib/cruise/watcher.rb +34 -0
- data/lib/cruise.rb +37 -6
- metadata +14 -19
metadata
CHANGED
|
@@ -1,30 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cruise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Roth
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
-
dependencies:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
requirement: !ruby/object:Gem::Requirement
|
|
15
|
-
requirements:
|
|
16
|
-
- - ">="
|
|
17
|
-
- !ruby/object:Gem::Version
|
|
18
|
-
version: '0'
|
|
19
|
-
type: :runtime
|
|
20
|
-
prerelease: false
|
|
21
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
-
requirements:
|
|
23
|
-
- - ">="
|
|
24
|
-
- !ruby/object:Gem::Version
|
|
25
|
-
version: '0'
|
|
26
|
-
description: Cruise is a Rust-powered file system watcher with native OS integration.
|
|
27
|
-
Uses FSEvents on macOS and inotify on Linux.
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Cruise is a file system watcher built on native OS events. Uses FSEvents
|
|
13
|
+
on macOS and inotify on Linux.
|
|
28
14
|
email:
|
|
29
15
|
- marco.roth@intergga.ch
|
|
30
16
|
executables: []
|
|
@@ -32,15 +18,24 @@ extensions:
|
|
|
32
18
|
- ext/cruise/extconf.rb
|
|
33
19
|
extra_rdoc_files: []
|
|
34
20
|
files:
|
|
21
|
+
- Cargo.lock
|
|
35
22
|
- Cargo.toml
|
|
36
23
|
- LICENSE.txt
|
|
24
|
+
- README.md
|
|
37
25
|
- Rakefile
|
|
38
26
|
- cruise.gemspec
|
|
39
27
|
- ext/cruise/Cargo.toml
|
|
28
|
+
- ext/cruise/build.rs
|
|
29
|
+
- ext/cruise/cbindgen.toml
|
|
30
|
+
- ext/cruise/cruise.c
|
|
40
31
|
- ext/cruise/extconf.rb
|
|
32
|
+
- ext/cruise/src/ffi.rs
|
|
41
33
|
- ext/cruise/src/lib.rs
|
|
34
|
+
- ext/cruise/src/watcher.rs
|
|
42
35
|
- lib/cruise.rb
|
|
36
|
+
- lib/cruise/event.rb
|
|
43
37
|
- lib/cruise/version.rb
|
|
38
|
+
- lib/cruise/watcher.rb
|
|
44
39
|
homepage: https://github.com/marcoroth/cruise
|
|
45
40
|
licenses:
|
|
46
41
|
- MIT
|
|
@@ -67,5 +62,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
62
|
requirements: []
|
|
68
63
|
rubygems_version: 4.0.3
|
|
69
64
|
specification_version: 4
|
|
70
|
-
summary: A fast, native file watcher for Ruby
|
|
65
|
+
summary: A fast, OS-native file watcher for Ruby
|
|
71
66
|
test_files: []
|