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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/malachite/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74395f3bd70b33d34c59da34c3e8cfcf58a6a53f
4
- data.tar.gz: 425ee905e2b18d16bc61e770ab468b0c151f06fc
3
+ metadata.gz: f80b561e83052767e59d258858bb83626dd7f509
4
+ data.tar.gz: c47afca39aba0405a1edf14ffcd6b7e5d415f9b2
5
5
  SHA512:
6
- metadata.gz: ee2075a956557036e812b06a6a8d573204bbace086615343a98f41c614b645b519fe9143558ad75e4626d6c56bfc871f6089b341136c7ee7c81c8d09ac11d76f
7
- data.tar.gz: e396d11d21e26ecafa4df81f0ad19395c7b4eb457661a643e942fa2d0b8ac10b311e7e2a7485d24d28cf3163b59c3c30bce7a092704a623f12a00a4bcb245b19
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 (use [structs](https://github.com/zhubert/malachite/wiki/Structs) for more complexity)
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
 
@@ -1,3 +1,3 @@
1
1
  module Malachite
2
- VERSION = '0.0.9'
2
+ VERSION = '0.0.10'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: malachite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zack Hubert