openapply 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +6 -2
- data/lib/openapply/convert.rb +3 -2
- data/lib/openapply/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3872e2dedfcbd01e190fb4c073ac522bb8545f99882f7c1aa285b3b296dc710f
|
4
|
+
data.tar.gz: efa557cc12d363955f77aa6721473ca19047a2be001275784fd4933980668c85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: defd9685cf5e837645cb986cdf6d06d2ebf9449ecc75d86c4660219e8f7d31b1b564c1c9a87593f2cb45d091f280f8f9eed2152d2c1687df9d985e1489edc494
|
7
|
+
data.tar.gz: 5f363bfc6ad605d3931528bdf35c428cbc04906a57b98bfb3a3cc7d319c4bb60e2b0947be648b07a027760e2558e2760f06f3716678d48867dcc3b00ef494dc9
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -5,6 +5,7 @@ This gem allows ruby access to the OpenApply API v1 - and supports the GET featu
|
|
5
5
|
|
6
6
|
### Still TODO
|
7
7
|
|
8
|
+
* make tests for scp / ssh (at least data type conversions)
|
8
9
|
* allow csv and xlsx reports with default summary info only?
|
9
10
|
* write PUTS methods - *currently api only allows status update*
|
10
11
|
* allow flattening and reject to work at any depth (with recursion?)
|
@@ -14,8 +15,11 @@ This gem allows ruby access to the OpenApply API v1 - and supports the GET featu
|
|
14
15
|
|
15
16
|
### CHANGE LOG
|
16
17
|
|
17
|
-
* **v0.2.
|
18
|
-
-
|
18
|
+
* **v0.2.5** - compatible with 0.2.x - 2017-11-30
|
19
|
+
- removed a reference to AXLSX in scp transfers *(haven't figured out how to test that yet!)*
|
20
|
+
|
21
|
+
* **v0.2.4** - compatible with 0.2.x - 2017-11-30
|
22
|
+
- rubyzip 1.1.7 - has a serious security flaw - Axlsx and Roo cannot use rubyzip 1.2.1 -- YET (which doesn't have the flaw) - so xlsx features are disabled until rubyzip 1.2.1 can be used by both roo and axlsx. **CSV** conversions are still usable. **BIG THANKS TO GitHub for the notification!**
|
19
23
|
|
20
24
|
* **v0.2.3** - compatible with 0.2.x - 2017-11-23
|
21
25
|
- allow detailed queries *(_by_id & _by_status)* to skip payment information
|
data/lib/openapply/convert.rb
CHANGED
@@ -307,8 +307,9 @@ module Convert
|
|
307
307
|
xfer = data if data.is_a? StringIO
|
308
308
|
# convert string into a SteamIO - "FILE" like object
|
309
309
|
xfer = StringIO.new( data ) if data.is_a? String
|
310
|
-
#
|
311
|
-
|
310
|
+
# disabled until AXLSX can use rubyzip 1.2.1
|
311
|
+
# # convert Axlsx object into a SteamIO - "FILE" like object
|
312
|
+
# xfer = data.to_stream() if data.is_a? Axlsx::Package
|
312
313
|
|
313
314
|
# be sure its a file type that can be sent
|
314
315
|
return "Unrecognized Object" unless known_transfer_object?(data)
|
data/lib/openapply/version.rb
CHANGED