closeio 2.6.9 → 2.6.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/lib/closeio/resources/user.rb +3 -0
- data/lib/closeio/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 100254352e044531a5748dddd76a041f2b3bed8d
|
4
|
+
data.tar.gz: dd86828b1b1ae13d6536f940f374acadd289c0cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39c9e484e920ff5d14a3c064107a7c6d9e2e296ae3e811518d4513111b8f941f3c3776b1c0f0a50cd55c190521cc890a37b8a3cd76d50a2b18aabc5c63d2b364
|
7
|
+
data.tar.gz: db8c63c3a27cb1e39dc47f36b4e2b79260e61844e10db04b84471cc367cb1016a4551a766720c97e38cca56ca12285a5e67477fd489878dee7d9c82722153878
|
data/README.md
CHANGED
@@ -87,6 +87,14 @@ If you're running on Heroku with SSL enabled, you need to pass in the path of th
|
|
87
87
|
client = Closeio::Client.new("api key", true, '/usr/lib/ssl/certs/ca-certificates.crt')
|
88
88
|
```
|
89
89
|
|
90
|
+
Timezone Offsets
|
91
|
+
For requests that include date filters like date_created or date_start, you can use the `utc_offset` named parameter to pass your timezone's UTC offset as part of your request. By default all API calls uses the UTC time.
|
92
|
+
```ruby
|
93
|
+
utc_offset = Time.zone.utc_offset.to_f / 1.hour
|
94
|
+
client = Closeio::Client.new("api key", utc_offset: utc_offset)
|
95
|
+
```
|
96
|
+
|
97
|
+
|
90
98
|
### History
|
91
99
|
|
92
100
|
View the [changelog](https://github.com/taylorbrooks/closeio/blob/master/CHANGELOG.md)
|
data/lib/closeio/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: closeio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Brooks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|