stockboy 0.5.3 → 0.5.4

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
  SHA1:
3
- metadata.gz: eb1f195ac3153a82bc10d4985f7cac06ad7c97fb
4
- data.tar.gz: 94b96d6c65df45a757c399bb3334785c0f6da5b9
3
+ metadata.gz: 4970df2dbcf052ef0b526d6eb4df39d0ed8027ff
4
+ data.tar.gz: 01c8f34e325e371d7575cf77a81968ac83f44841
5
5
  SHA512:
6
- metadata.gz: 4e7d3de6209e842789170672068eea7c30d36d321e40c0f0fbab964200dd5d9c554d2823e08fa34a74475d1fbc1ecee9e841759f4f28e3f3c4cad4c3ec6c761f
7
- data.tar.gz: 85bf156a0d0b8b3a3c3b4901d2ade3e7b8a960ae80f255dfbd2dd4d608d7471299b6c6f7c05300a587e62607eb7c8ac1b56287eb98c5123b48997b7e9a536706
6
+ metadata.gz: d6810492ff48e3e9774f318023de30e4ddec26dd8fe3b14a0674b9e7b4ae50bec5743538289f4b0fa1c84e115e786ead9eacf6d5da701d21e26667af92d4c523
7
+ data.tar.gz: f629334d14fca2a21bcf5c05841744976605084607b38e1aa1cb63e7bd136436bbc9c5330534be51bc9f07be5dd01a90a535267fe140106d404bfc0985ede4c2
data/CHANGELOG.md CHANGED
@@ -1,37 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.4 / 2013-12-04
4
+
5
+ * [BUGFIX] Fixed broken IMAP client
6
+
3
7
  ## 0.5.3 / 2013-12-04
4
8
 
5
- [BUGFIX] Fix broken encoding option in fixed-width reader
6
- [BUGFIX] Fix missing IMAP attachment validation DSL options
9
+ * [BUGFIX] Fix broken encoding option in fixed-width reader
10
+ * [BUGFIX] Fix missing IMAP attachment validation DSL options
7
11
 
8
12
  ## 0.5.2 / 2013-12-04
9
13
 
10
- [BUGFIX] Registered :string translation that was missed
11
- [BUGFIX] All date translators handle String / Date / Time correctly
14
+ * [BUGFIX] Registered :string translation that was missed
15
+ * [BUGFIX] All date translators handle String / Date / Time correctly
12
16
 
13
17
  ## 0.5.1 / 2013-12-03
14
18
 
15
- [ENHANCEMENT] Link to full documentation and license
16
- [ENHANCEMENT] Add CI test environment and code metrics
19
+ * [ENHANCEMENT] Link to full documentation and license
20
+ * [ENHANCEMENT] Add CI test environment and code metrics
17
21
 
18
22
  ## 0.5.0 / 2013-12-03
19
23
 
20
- [FEATURE] YARD documentation throughout
21
- [FEATURE] Triggers for invoking actions in job context
22
- [FEATURE] Add generic `delete_data` method for cleanup of matched files
23
- [ENHANCEMENT] Expose provider `client` for reuse
24
- [ENHANCEMENT] Expose provider `matching_file` for reuse
25
- [BUGFIX] Add missing file validations
24
+ * [FEATURE] YARD documentation throughout
25
+ * [FEATURE] Triggers for invoking actions in job context
26
+ * [FEATURE] Add generic `delete_data` method for cleanup of matched files
27
+ * [ENHANCEMENT] Expose provider `client` for reuse
28
+ * [ENHANCEMENT] Expose provider `matching_file` for reuse
29
+ * [BUGFIX] Add missing file validations
26
30
 
27
31
  ## 0.4.3 / 2013-11-22
28
32
 
29
- [ENHANCEMENT] Optimize CSV memory usage with shared hash keys
30
- [BUGFIX] Missed a required file for SOAP/XML
33
+ * [ENHANCEMENT] Optimize CSV memory usage with shared hash keys
34
+ * [BUGFIX] Missed a required file for SOAP/XML
31
35
 
32
36
  ## 0.4.2 / 2013-11-21
33
37
 
34
- [ENHANCEMENT] Use consistent conversion for XML hash keys
38
+ * [ENHANCEMENT] Use consistent conversion for XML hash keys
35
39
 
36
40
  ## 0.4.1 / 2013-11-19
37
41
 
@@ -167,11 +167,11 @@ module Stockboy::Providers
167
167
  i.examine(mailbox)
168
168
  end
169
169
  yield @open_client
170
- client.disconnect
170
+ @open_client.disconnect
171
171
  @open_client = nil
172
172
  rescue ::Net::IMAP::Error => e
173
173
  errors.add :response, "IMAP connection error"
174
- client.disconnect
174
+ @open_client.disconnect
175
175
  @open_client = nil
176
176
  end
177
177
 
@@ -1,3 +1,3 @@
1
1
  module Stockboy
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stockboy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Vit