stockboy 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -15
- data/lib/stockboy/providers/imap.rb +2 -2
- data/lib/stockboy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4970df2dbcf052ef0b526d6eb4df39d0ed8027ff
|
4
|
+
data.tar.gz: 01c8f34e325e371d7575cf77a81968ac83f44841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
174
|
+
@open_client.disconnect
|
175
175
|
@open_client = nil
|
176
176
|
end
|
177
177
|
|
data/lib/stockboy/version.rb
CHANGED