mincore 0.0.9.1.pre → 0.0.9.2.pre
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/README.md +12 -1
- data/mincore.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bddee12662768ea9bbd4685938b055718e8bdb7f
|
4
|
+
data.tar.gz: 11e864522e9110757cf342eda42f62f7c14eab2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59e5fc56bd3b5fabb00b1b709365be5917c2395e2146fe4f91fe11e12b03f688ae49abdeb5b9a2d89deed07559c96e8a4c0e8286f138b071e7008d0f9359e960
|
7
|
+
data.tar.gz: 4de1b58d37d1bee7a2582ea62843669c4ca712c1baf923327ce7354452202a8216ab6e5da6a0e528b6a60f1707afb9f7fae4eccda61c2bacc69b8118be5adb56
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ This project is heavily inspired from [Feh/nocache](http://github.com/Feh/nocach
|
|
15
15
|
Usage
|
16
16
|
=====
|
17
17
|
|
18
|
-
Currently, `mincore` features are implemented as class methods:
|
18
|
+
Currently, most `mincore` features are implemented as class methods:
|
19
19
|
|
20
20
|
size=File.PAGESIZE
|
21
21
|
# 4096
|
@@ -69,6 +69,17 @@ Also, the tests use a `./writable_tmp_dir/` directory to store the temporary tes
|
|
69
69
|
usually a ramfs, and files will always be in cache, until they're deleted.
|
70
70
|
|
71
71
|
|
72
|
+
Supported systems
|
73
|
+
-----------------
|
74
|
+
|
75
|
+
Linux (on any arch) is supported.
|
76
|
+
|
77
|
+
FreeBSD/OpenBSD/NetBSD should work, but feedback is needed.
|
78
|
+
|
79
|
+
MacOSX requires a different set of headers to properly compile (Testers needed).
|
80
|
+
|
81
|
+
Since Debian/kFreeBSD [doesn't honor](https://github.com/Feh/nocache/issues/12) `posix_fadvise()`, `mincore` won't work.
|
82
|
+
|
72
83
|
|
73
84
|
Contributing
|
74
85
|
============
|
data/mincore.gemspec
CHANGED