openapply 0.2.4 → 0.2.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64954bcbf3fc679a31c6bf6bd1ca661f03d592cb070ec3950c29c161f0af35da
4
- data.tar.gz: 9d18998d1f43f23d4b95ac06f2728c740379497762c99fbb36adb33c2511ba47
3
+ metadata.gz: 3872e2dedfcbd01e190fb4c073ac522bb8545f99882f7c1aa285b3b296dc710f
4
+ data.tar.gz: efa557cc12d363955f77aa6721473ca19047a2be001275784fd4933980668c85
5
5
  SHA512:
6
- metadata.gz: e47ea0252dd955498ee453746404b76c15d35d950cd4cb01c25ebfe03275d6a331fd853fb7705c733ea64e3accb637f6d1a2f4150f292aabe4181ec91ce16119
7
- data.tar.gz: 3326b12158e1c250e9c2598cf98de6634fefacd113c4f7d8185b8e02c60cb54da19b877c002d5a673d966b0eb37f488551e9b20d72e92c9db160b71c02b48dd7
6
+ metadata.gz: defd9685cf5e837645cb986cdf6d06d2ebf9449ecc75d86c4660219e8f7d31b1b564c1c9a87593f2cb45d091f280f8f9eed2152d2c1687df9d985e1489edc494
7
+ data.tar.gz: 5f363bfc6ad605d3931528bdf35c428cbc04906a57b98bfb3a3cc7d319c4bb60e2b0947be648b07a027760e2558e2760f06f3716678d48867dcc3b00ef494dc9
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- openapply (0.2.4)
4
+ openapply (0.2.5)
5
5
  httparty (~> 0.15)
6
6
  json (~> 2.1)
7
7
  net-scp (~> 1.2)
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.4** - compatible with 0.2.x - 2017-11-23
18
- - 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
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
@@ -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
- # convert Axlsx object into a SteamIO - "FILE" like object
311
- xfer = data.to_stream() if data.is_a? Axlsx::Package
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)
@@ -1,3 +1,3 @@
1
1
  module Openapply
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openapply
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bill Tihen