malachite 0.0.9 → 0.0.10
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 +1 -1
- data/lib/malachite/version.rb +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: f80b561e83052767e59d258858bb83626dd7f509
|
4
|
+
data.tar.gz: c47afca39aba0405a1edf14ffcd6b7e5d415f9b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd3411c6d20cbf091cf886c2a0df5c795ca5b0b1e86fdfe69a4ed9817f3d7ca145cc8117ef7b8d88980ff044044b5f0745b988dda73017858be605cccc07b820
|
7
|
+
data.tar.gz: 5c93f742248ea257ec71a3b6a8675d30dc428270cda2d494d1e9dc9b19f3d5e373f9ea4c9244c4da87e76328f2ffcef7f52f78d510ae83d816cc867f19e511a0
|
data/README.md
CHANGED
@@ -20,7 +20,7 @@ Everything in ```app/go```will get compiled into one namespace, so to get it to
|
|
20
20
|
Malachite, you need to:
|
21
21
|
|
22
22
|
* name the methods you want exported like: ```HandleFoo```
|
23
|
-
* the Handle methods can only take one argument
|
23
|
+
* the Handle methods can only take one argument, works best with [structs](https://github.com/zhubert/malachite/wiki/Structs)
|
24
24
|
|
25
25
|
For instance, if you wanted to upcase strings more quickly in your Rails app, you'd put the following in the file ```app/go/upcase.go```:
|
26
26
|
|
data/lib/malachite/version.rb
CHANGED