betaface 0.3.1 → 0.3.2
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 +3 -1
- data/lib/betaface/api.rb +1 -1
- data/lib/betaface/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: d22cbaa6025afd708cbf66784cfcdac12b7270f0
|
4
|
+
data.tar.gz: 9a646b3a530cb6aac3afef3f78830c852665ee2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 375e54e11cd95ce9f977a7f95508062557b9bee6e02275f369cbf2e478709254994981929135a40d1ce353e874ec045221824ef289562ce9d7443fb71713d961
|
7
|
+
data.tar.gz: cbcd1c932fbd1a21a0f15adbc089911c9dddf0e0912dd516f2c8c39f769e0a571aad8c35fe93e4690458410de1a290648a84634830ec9184fad4270975768c78
|
data/README.md
CHANGED
@@ -46,7 +46,7 @@ api.get_image_info("2bdcd1ad-47a6-45f8-ba74-86c765272422")
|
|
46
46
|
|
47
47
|
## Supported Ruby Versions
|
48
48
|
|
49
|
-
This library supports and is
|
49
|
+
This library supports and is test for the following Ruby
|
50
50
|
implementations:
|
51
51
|
|
52
52
|
- Ruby 2.2.0
|
@@ -63,6 +63,8 @@ There are more detailed examples in the included [examples][examples]
|
|
63
63
|
[bundler]: http://bundler.io
|
64
64
|
[rubygems]: http://rubygems.org
|
65
65
|
[examples]: https://github.com/jrm2194/betaface/tree/master/examples
|
66
|
+
[jruby]: http://www.jruby.org
|
67
|
+
[rubinius]: http://rubini.us
|
66
68
|
|
67
69
|
## License
|
68
70
|
|
data/lib/betaface/api.rb
CHANGED
@@ -109,7 +109,7 @@ module Betaface
|
|
109
109
|
##
|
110
110
|
# https://www.betafaceapi.com/service_json_ssl.svc/SetPerson
|
111
111
|
# Assign person name (John Doe@mynamespace.com) to one or more face ids
|
112
|
-
def set_person(
|
112
|
+
def set_person(faces_uids, person_id)
|
113
113
|
@client.post "/service_json_ssl.svc/SetPerson", {faces_uids:faces_uids,person_id:person_id}
|
114
114
|
end
|
115
115
|
|
data/lib/betaface/version.rb
CHANGED