opencpu 0.8.0 → 0.8.1
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/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/opencpu/client.rb +2 -2
- data/lib/opencpu/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88037686835b9b292b033d75fca578ac6b33f174
|
4
|
+
data.tar.gz: 60b810089bd227a4bb014e23364018ac84681c04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82396fdb3696759b0da4b696733d37b5b088404905eac244ec8ca4625a82a031d62ca7d4aa35322c0cf5d80ea0195a791611ccb76fc798837ec3c557f40f0a39
|
7
|
+
data.tar.gz: 9e10c0e186b596150122ceeec17b8114c5a3081f5cc70d4b7584dbd0cdf0242ed3735bdaed7eb70f9865937f5b3b033f89065c387e5f9e611a209d77726e107d
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -44,7 +44,7 @@ By default we send data using the json format. This format is efficient and safe
|
|
44
44
|
If you want to send R code argument, you'll need to specify format: :urlencoded in your request. Note that you need to enclose your string parameters in quotes in that case, since they will be seen as variables otherwise:
|
45
45
|
|
46
46
|
```Ruby
|
47
|
-
client.execute :digest, :hmac, data: { key: "'foo'", object: "'bar'"
|
47
|
+
client.execute :digest, :hmac, data: { key: "'foo'", object: "'bar'" }, format: :urlencoded
|
48
48
|
```
|
49
49
|
|
50
50
|
### One-step call
|
data/lib/opencpu/client.rb
CHANGED
data/lib/opencpu/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opencpu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Malykh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yajl-ruby
|
@@ -238,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
238
|
version: '0'
|
239
239
|
requirements: []
|
240
240
|
rubyforge_project:
|
241
|
-
rubygems_version: 2.3
|
241
|
+
rubygems_version: 2.4.3
|
242
242
|
signing_key:
|
243
243
|
specification_version: 4
|
244
244
|
summary: Wrapper around OpenCPU REST API
|