dispatch-rider 1.4.0 → 1.4.2

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.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +20 -0
  3. data/.hound.yml +2 -0
  4. data/.rubocop.yml +50 -0
  5. data/.travis.yml +6 -0
  6. data/CHANGELOG.md +363 -0
  7. data/Gemfile +25 -0
  8. data/LICENSE.txt +1 -1
  9. data/README.md +32 -3
  10. data/Rakefile +38 -0
  11. data/dispatch-rider.gemspec +46 -0
  12. data/lib/dispatch-rider/notification_services/aws_sns.rb +9 -0
  13. data/lib/dispatch-rider/version.rb +1 -1
  14. data/spec/fixtures/handlers/another_test_handler.rb +2 -0
  15. data/spec/fixtures/handlers/test_handler.rb +2 -0
  16. data/spec/lib/dispatch-rider/airbrake_error_handler_spec.rb +16 -0
  17. data/spec/lib/dispatch-rider/callbacks/access_spec.rb +62 -0
  18. data/spec/lib/dispatch-rider/callbacks/storage_spec.rb +43 -0
  19. data/spec/lib/dispatch-rider/configuration_spec.rb +74 -0
  20. data/spec/lib/dispatch-rider/default_error_handler_spec.rb +14 -0
  21. data/spec/lib/dispatch-rider/demultiplexer_spec.rb +117 -0
  22. data/spec/lib/dispatch-rider/dispatcher_spec.rb +69 -0
  23. data/spec/lib/dispatch-rider/handlers/base_spec.rb +81 -0
  24. data/spec/lib/dispatch-rider/handlers/inheritance_tracking_spec.rb +27 -0
  25. data/spec/lib/dispatch-rider/message_spec.rb +59 -0
  26. data/spec/lib/dispatch-rider/notification_services/aws_sns_spec.rb +28 -0
  27. data/spec/lib/dispatch-rider/notification_services/base_spec.rb +65 -0
  28. data/spec/lib/dispatch-rider/notification_services/file_system/channel_spec.rb +28 -0
  29. data/spec/lib/dispatch-rider/notification_services/file_system/notifier_spec.rb +14 -0
  30. data/spec/lib/dispatch-rider/notification_services/file_system_spec.rb +23 -0
  31. data/spec/lib/dispatch-rider/notification_services_spec.rb +4 -0
  32. data/spec/lib/dispatch-rider/publisher/base_spec.rb +79 -0
  33. data/spec/lib/dispatch-rider/publisher/configuration/destination_spec.rb +100 -0
  34. data/spec/lib/dispatch-rider/publisher/configuration/notification_service_spec.rb +53 -0
  35. data/spec/lib/dispatch-rider/publisher/configuration_reader_spec.rb +129 -0
  36. data/spec/lib/dispatch-rider/publisher/configuration_spec.rb +149 -0
  37. data/spec/lib/dispatch-rider/publisher/configuration_support_spec.rb +89 -0
  38. data/spec/lib/dispatch-rider/publisher_spec.rb +123 -0
  39. data/spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb +193 -0
  40. data/spec/lib/dispatch-rider/queue_services/base_spec.rb +147 -0
  41. data/spec/lib/dispatch-rider/queue_services/file_system_spec.rb +88 -0
  42. data/spec/lib/dispatch-rider/queue_services/received_message_spec.rb +23 -0
  43. data/spec/lib/dispatch-rider/queue_services/simple_spec.rb +63 -0
  44. data/spec/lib/dispatch-rider/queue_services_spec.rb +6 -0
  45. data/spec/lib/dispatch-rider/registrars/base_spec.rb +68 -0
  46. data/spec/lib/dispatch-rider/registrars/file_system_channel_spec.rb +12 -0
  47. data/spec/lib/dispatch-rider/registrars/handler_spec.rb +16 -0
  48. data/spec/lib/dispatch-rider/registrars/notification_service_spec.rb +13 -0
  49. data/spec/lib/dispatch-rider/registrars/publishing_destination_spec.rb +11 -0
  50. data/spec/lib/dispatch-rider/registrars/queue_service_spec.rb +13 -0
  51. data/spec/lib/dispatch-rider/registrars/sns_channel_spec.rb +14 -0
  52. data/spec/lib/dispatch-rider/registrars_spec.rb +4 -0
  53. data/spec/lib/dispatch-rider/runner_spec.rb +25 -0
  54. data/spec/lib/dispatch-rider/subscriber_spec.rb +140 -0
  55. data/spec/lib/dispatch-rider_spec.rb +27 -0
  56. data/spec/spec_helper.rb +21 -0
  57. metadata +107 -86
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7515c83c76326bef152d103f113bc44469a4bfed
4
- data.tar.gz: 2c47da3f04cceacfd72f39b4d90b423082a52706
3
+ metadata.gz: 9b32920c369aed2de065140f1cc20e1439b3f056
4
+ data.tar.gz: 97ba8bb2ae852f9866fc2f3ad04e2f9875185846
5
5
  SHA512:
6
- metadata.gz: 66b625e6cc5c36b69542df68fda697348718f39e913226abc2a951a55af498cfc733fb58650d5cf37e2f09c8ec74c6227c78c33f47506caeef6b1f97f66c8e46
7
- data.tar.gz: 80e307a4094cd0e2ec5be5a844c18b4279c54ba484ea99d867ef96808a0b920fda1e9ffb589a7dd5afcd280f602189094aa43894352ef044ac8bc1074c2f3327
6
+ metadata.gz: 8ca1417742a7976a1587aeb0e1a2d0fa9d8d2d2e913657313fc01e9fc4f0104b0406b331103f140fed89f53fd53bdc37349fec5a8223cf587fe1f1ee12c965ee
7
+ data.tar.gz: a700595da036062545ff6bbd8fa69232b0ad12c993af8d8182e2a0f2367df96caff88159c5078ee6ab9e5a7bde3e76f8c507176f9021170bdadd79669615cc7e
@@ -0,0 +1,20 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ log
19
+ .rvmrc
20
+ .ruby*
@@ -0,0 +1,2 @@
1
+ ruby:
2
+ config_file: .rubocop.yml
@@ -0,0 +1,50 @@
1
+ # Older version
2
+ Style/EmptyLinesAroundBody:
3
+ Enabled: false
4
+
5
+ # Newer version (3 for the 1 above)
6
+ Style/EmptyLinesAroundClassBody:
7
+ Enabled: false
8
+
9
+ Style/EmptyLinesAroundModuleBody:
10
+ Enabled: false
11
+
12
+ Style/EmptyLinesAroundMethodBody:
13
+ Enabled: false
14
+
15
+ # Other
16
+
17
+ Style/StringLiterals:
18
+ Enabled: false
19
+
20
+ Style/FileName:
21
+ Enabled: false
22
+
23
+ Style/RedundantException:
24
+ Enabled: false
25
+
26
+ Style/SignalException:
27
+ Enabled: false
28
+
29
+ # PH Coding Rules
30
+ Style/Blocks:
31
+ Enabled: false
32
+
33
+ Style/CollectionMethods:
34
+ PreferredMethods:
35
+ detect: find
36
+
37
+ # Github's PR width is 120 characters
38
+ Metrics/LineLength:
39
+ Max: 120
40
+ AllowURI: true
41
+
42
+ # Align with the style guide, we don't prefer anything
43
+ Style/CollectionMethods:
44
+ Enabled: false
45
+
46
+ Metrics/AbcSize:
47
+ Description: A calculated magnitude based on number of assignments, branches, and
48
+ conditions.
49
+ Enabled: true
50
+ Max: 30
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.0.0"
4
+ - "2.1.5"
5
+ - "2.2.1"
6
+ script: "bundle exec rspec"
@@ -0,0 +1,363 @@
1
+ # Change Log
2
+
3
+ ## [v1.4.1](https://github.com/payrollhero/dispatch-rider/tree/v1.4.1) (2015-04-10)
4
+
5
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.4.0...v1.4.1)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Cleanup [\#53](https://github.com/payrollhero/dispatch-rider/pull/53) ([piotrb](https://github.com/piotrb))
10
+
11
+ - Adding retries when publishing messages via SNS. [\#52](https://github.com/payrollhero/dispatch-rider/pull/52) ([vincentpaca](https://github.com/vincentpaca))
12
+
13
+ - Fix Rspec warnings: deprecated use of "its" \(use a separate gem instead\)... [\#48](https://github.com/payrollhero/dispatch-rider/pull/48) ([mykola-kyryk](https://github.com/mykola-kyryk))
14
+
15
+ ## [v1.4.0](https://github.com/payrollhero/dispatch-rider/tree/v1.4.0) (2015-03-10)
16
+
17
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.6...v1.4.0)
18
+
19
+ **Merged pull requests:**
20
+
21
+ - Moving message id code to Publisher itself \(not publisher base\) to make it happen simply every time [\#47](https://github.com/payrollhero/dispatch-rider/pull/47) ([piotrb](https://github.com/piotrb))
22
+
23
+ ## [v1.3.6](https://github.com/payrollhero/dispatch-rider/tree/v1.3.6) (2014-11-15)
24
+
25
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.5...v1.3.6)
26
+
27
+ **Merged pull requests:**
28
+
29
+ - Loading all files in the handler\_path to allow proper namespacing [\#46](https://github.com/payrollhero/dispatch-rider/pull/46) ([piotrb](https://github.com/piotrb))
30
+
31
+ ## [v1.3.5](https://github.com/payrollhero/dispatch-rider/tree/v1.3.5) (2014-11-06)
32
+
33
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.4...v1.3.5)
34
+
35
+ **Merged pull requests:**
36
+
37
+ - Add GUID in logging. Remove the GUID from message body. [\#45](https://github.com/payrollhero/dispatch-rider/pull/45) ([vincentpaca](https://github.com/vincentpaca))
38
+
39
+ ## [v1.3.4](https://github.com/payrollhero/dispatch-rider/tree/v1.3.4) (2014-11-06)
40
+
41
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.3...v1.3.4)
42
+
43
+ **Merged pull requests:**
44
+
45
+ - Add the GUID to the process ID [\#44](https://github.com/payrollhero/dispatch-rider/pull/44) ([vincentpaca](https://github.com/vincentpaca))
46
+
47
+ ## [v1.3.3](https://github.com/payrollhero/dispatch-rider/tree/v1.3.3) (2014-10-22)
48
+
49
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.2...v1.3.3)
50
+
51
+ ## [v1.3.2](https://github.com/payrollhero/dispatch-rider/tree/v1.3.2) (2014-10-02)
52
+
53
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.1...v1.3.2)
54
+
55
+ ## [v1.3.1](https://github.com/payrollhero/dispatch-rider/tree/v1.3.1) (2014-10-01)
56
+
57
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.3.0...v1.3.1)
58
+
59
+ ## [v1.3.0](https://github.com/payrollhero/dispatch-rider/tree/v1.3.0) (2014-10-01)
60
+
61
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.11...v1.3.0)
62
+
63
+ ## [v1.2.11](https://github.com/payrollhero/dispatch-rider/tree/v1.2.11) (2014-10-01)
64
+
65
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.10...v1.2.11)
66
+
67
+ ## [v1.2.10](https://github.com/payrollhero/dispatch-rider/tree/v1.2.10) (2014-10-01)
68
+
69
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.9...v1.2.10)
70
+
71
+ ## [v1.2.9](https://github.com/payrollhero/dispatch-rider/tree/v1.2.9) (2014-09-30)
72
+
73
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.8...v1.2.9)
74
+
75
+ ## [v1.2.8](https://github.com/payrollhero/dispatch-rider/tree/v1.2.8) (2014-07-22)
76
+
77
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.7...v1.2.8)
78
+
79
+ ## [v1.2.7](https://github.com/payrollhero/dispatch-rider/tree/v1.2.7) (2014-07-22)
80
+
81
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.6...v1.2.7)
82
+
83
+ ## [v1.2.6](https://github.com/payrollhero/dispatch-rider/tree/v1.2.6) (2014-07-22)
84
+
85
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.5...v1.2.6)
86
+
87
+ ## [v1.2.5](https://github.com/payrollhero/dispatch-rider/tree/v1.2.5) (2014-07-22)
88
+
89
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.4...v1.2.5)
90
+
91
+ ## [v1.2.4](https://github.com/payrollhero/dispatch-rider/tree/v1.2.4) (2014-07-21)
92
+
93
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.3...v1.2.4)
94
+
95
+ ## [v1.2.3](https://github.com/payrollhero/dispatch-rider/tree/v1.2.3) (2014-07-21)
96
+
97
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.2...v1.2.3)
98
+
99
+ ## [v1.2.2](https://github.com/payrollhero/dispatch-rider/tree/v1.2.2) (2014-07-21)
100
+
101
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.1...v1.2.2)
102
+
103
+ ## [v1.2.1](https://github.com/payrollhero/dispatch-rider/tree/v1.2.1) (2014-07-21)
104
+
105
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.2.0...v1.2.1)
106
+
107
+ ## [v1.2.0](https://github.com/payrollhero/dispatch-rider/tree/v1.2.0) (2014-07-21)
108
+
109
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.1.7...v1.2.0)
110
+
111
+ **Merged pull requests:**
112
+
113
+ - Add appsignal support [\#43](https://github.com/payrollhero/dispatch-rider/pull/43) ([piotrb](https://github.com/piotrb))
114
+
115
+ - moved the generator from payrollhero to the gem [\#42](https://github.com/payrollhero/dispatch-rider/pull/42) ([piotrb](https://github.com/piotrb))
116
+
117
+ ## [v1.1.7](https://github.com/payrollhero/dispatch-rider/tree/v1.1.7) (2014-02-06)
118
+
119
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.1.6...v1.1.7)
120
+
121
+ ## [v1.1.6](https://github.com/payrollhero/dispatch-rider/tree/v1.1.6) (2014-02-06)
122
+
123
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.1.5...v1.1.6)
124
+
125
+ ## [v1.1.5](https://github.com/payrollhero/dispatch-rider/tree/v1.1.5) (2014-02-06)
126
+
127
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.1.4...v1.1.5)
128
+
129
+ ## [v1.1.4](https://github.com/payrollhero/dispatch-rider/tree/v1.1.4) (2014-02-04)
130
+
131
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.0.3...v1.1.4)
132
+
133
+ **Merged pull requests:**
134
+
135
+ - This adds retry via SNS timeouts to dispatch rider. [\#41](https://github.com/payrollhero/dispatch-rider/pull/41) ([bramski](https://github.com/bramski))
136
+
137
+ ## [v1.0.3](https://github.com/payrollhero/dispatch-rider/tree/v1.0.3) (2014-01-15)
138
+
139
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.0.2...v1.0.3)
140
+
141
+ ## [v1.0.2](https://github.com/payrollhero/dispatch-rider/tree/v1.0.2) (2014-01-14)
142
+
143
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.0.1...v1.0.2)
144
+
145
+ ## [v1.0.1](https://github.com/payrollhero/dispatch-rider/tree/v1.0.1) (2013-12-13)
146
+
147
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.0.0...v1.0.1)
148
+
149
+ ## [v1.0.0](https://github.com/payrollhero/dispatch-rider/tree/v1.0.0) (2013-12-13)
150
+
151
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.7...v1.0.0)
152
+
153
+ **Merged pull requests:**
154
+
155
+ - Rejigged the SQS handler so that its able to wrap around the execution cleanly and detect jobs that run too long [\#40](https://github.com/payrollhero/dispatch-rider/pull/40) ([piotrb](https://github.com/piotrb))
156
+
157
+ ## [v0.2.7](https://github.com/payrollhero/dispatch-rider/tree/v0.2.7) (2013-12-10)
158
+
159
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.6...v0.2.7)
160
+
161
+ **Merged pull requests:**
162
+
163
+ - Added Logger to Subscriber and Runner to allow more lifecycle logging [\#39](https://github.com/payrollhero/dispatch-rider/pull/39) ([piotrb](https://github.com/piotrb))
164
+
165
+ ## [v0.2.6](https://github.com/payrollhero/dispatch-rider/tree/v0.2.6) (2013-12-05)
166
+
167
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.5...v0.2.6)
168
+
169
+ **Merged pull requests:**
170
+
171
+ - Making SNS properly multi-region safe [\#38](https://github.com/payrollhero/dispatch-rider/pull/38) ([piotrb](https://github.com/piotrb))
172
+
173
+ ## [v0.2.5](https://github.com/payrollhero/dispatch-rider/tree/v0.2.5) (2013-12-04)
174
+
175
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.4...v0.2.5)
176
+
177
+ **Merged pull requests:**
178
+
179
+ - Trap process quit and termination [\#37](https://github.com/payrollhero/dispatch-rider/pull/37) ([more-ron](https://github.com/more-ron))
180
+
181
+ ## [v0.2.4](https://github.com/payrollhero/dispatch-rider/tree/v0.2.4) (2013-12-03)
182
+
183
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.3...v0.2.4)
184
+
185
+ ## [v0.2.3](https://github.com/payrollhero/dispatch-rider/tree/v0.2.3) (2013-11-25)
186
+
187
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.2...v0.2.3)
188
+
189
+ ## [v0.2.2](https://github.com/payrollhero/dispatch-rider/tree/v0.2.2) (2013-11-22)
190
+
191
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.1...v0.2.2)
192
+
193
+ **Merged pull requests:**
194
+
195
+ - Added Queue URL support to SQS [\#36](https://github.com/payrollhero/dispatch-rider/pull/36) ([piotrb](https://github.com/piotrb))
196
+
197
+ ## [v0.2.1](https://github.com/payrollhero/dispatch-rider/tree/v0.2.1) (2013-11-20)
198
+
199
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.2.0...v0.2.1)
200
+
201
+ **Merged pull requests:**
202
+
203
+ - Catch only standard error exceptions. [\#35](https://github.com/payrollhero/dispatch-rider/pull/35) ([link664](https://github.com/link664))
204
+
205
+ - Add start up script and generator [\#34](https://github.com/payrollhero/dispatch-rider/pull/34) ([link664](https://github.com/link664))
206
+
207
+ ## [v0.2.0](https://github.com/payrollhero/dispatch-rider/tree/v0.2.0) (2013-11-13)
208
+
209
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.1.2...v0.2.0)
210
+
211
+ **Merged pull requests:**
212
+
213
+ - Add DispatchRider::Publisher::Base [\#33](https://github.com/payrollhero/dispatch-rider/pull/33) ([link664](https://github.com/link664))
214
+
215
+ - Bug fix for global configuration. [\#32](https://github.com/payrollhero/dispatch-rider/pull/32) ([link664](https://github.com/link664))
216
+
217
+ - Add proper publisher config [\#31](https://github.com/payrollhero/dispatch-rider/pull/31) ([link664](https://github.com/link664))
218
+
219
+ ## [v0.1.2](https://github.com/payrollhero/dispatch-rider/tree/v0.1.2) (2013-11-01)
220
+
221
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.1.1.1...v0.1.2)
222
+
223
+ ## [v0.1.1.1](https://github.com/payrollhero/dispatch-rider/tree/v0.1.1.1) (2013-10-25)
224
+
225
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.1.1...v0.1.1.1)
226
+
227
+ ## [v0.1.1](https://github.com/payrollhero/dispatch-rider/tree/v0.1.1) (2013-10-25)
228
+
229
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.1.0...v0.1.1)
230
+
231
+ **Merged pull requests:**
232
+
233
+ - Add around message hook support [\#30](https://github.com/payrollhero/dispatch-rider/pull/30) ([piotrb](https://github.com/piotrb))
234
+
235
+ - Added around callback support [\#29](https://github.com/payrollhero/dispatch-rider/pull/29) ([piotrb](https://github.com/piotrb))
236
+
237
+ ## [v0.1.0](https://github.com/payrollhero/dispatch-rider/tree/v0.1.0) (2013-10-24)
238
+
239
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.6...v0.1.0)
240
+
241
+ ## [v0.0.6](https://github.com/payrollhero/dispatch-rider/tree/v0.0.6) (2013-09-23)
242
+
243
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.5...v0.0.6)
244
+
245
+ **Merged pull requests:**
246
+
247
+ - Fail job after running error handler. [\#28](https://github.com/payrollhero/dispatch-rider/pull/28) ([link664](https://github.com/link664))
248
+
249
+ - Add runner [\#26](https://github.com/payrollhero/dispatch-rider/pull/26) ([link664](https://github.com/link664))
250
+
251
+ - Added airbrake support. [\#25](https://github.com/payrollhero/dispatch-rider/pull/25) ([link664](https://github.com/link664))
252
+
253
+ - Clean up error handling [\#24](https://github.com/payrollhero/dispatch-rider/pull/24) ([link664](https://github.com/link664))
254
+
255
+ - Added process naming to dispatcher. [\#23](https://github.com/payrollhero/dispatch-rider/pull/23) ([link664](https://github.com/link664))
256
+
257
+ - Fail job after running error handler. [\#27](https://github.com/payrollhero/dispatch-rider/pull/27) ([link664](https://github.com/link664))
258
+
259
+ ## [v0.0.5](https://github.com/payrollhero/dispatch-rider/tree/v0.0.5) (2013-08-20)
260
+
261
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/2013-06-06-13-08-PST...v0.0.5)
262
+
263
+ **Merged pull requests:**
264
+
265
+ - Assume successful process when there is no error [\#22](https://github.com/payrollhero/dispatch-rider/pull/22) ([more-ron](https://github.com/more-ron))
266
+
267
+ - Add proper worker support [\#19](https://github.com/payrollhero/dispatch-rider/pull/19) ([piotrb](https://github.com/piotrb))
268
+
269
+ ## [2013-06-06-13-08-PST](https://github.com/payrollhero/dispatch-rider/tree/2013-06-06-13-08-PST) (2013-06-06)
270
+
271
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/2013-06-05-14-37+08-00...2013-06-06-13-08-PST)
272
+
273
+ **Merged pull requests:**
274
+
275
+ - Silence SQS spam since its very verbose by default [\#21](https://github.com/payrollhero/dispatch-rider/pull/21) ([piotrb](https://github.com/piotrb))
276
+
277
+ ## [2013-06-05-14-37+08-00](https://github.com/payrollhero/dispatch-rider/tree/2013-06-05-14-37+08-00) (2013-06-06)
278
+
279
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.4...2013-06-05-14-37+08-00)
280
+
281
+ ## [v0.0.4](https://github.com/payrollhero/dispatch-rider/tree/v0.0.4) (2013-06-06)
282
+
283
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/2013-06-05-09-15-PST...v0.0.4)
284
+
285
+ **Implemented enhancements:**
286
+
287
+ - Error handling when the message handler fails [\#8](https://github.com/payrollhero/dispatch-rider/issues/8)
288
+
289
+ **Merged pull requests:**
290
+
291
+ - Error handling hooks [\#20](https://github.com/payrollhero/dispatch-rider/pull/20) ([more-ron](https://github.com/more-ron))
292
+
293
+ - Add hooks for handling error [\#18](https://github.com/payrollhero/dispatch-rider/pull/18) ([more-ron](https://github.com/more-ron))
294
+
295
+ ## [2013-06-05-09-15-PST](https://github.com/payrollhero/dispatch-rider/tree/2013-06-05-09-15-PST) (2013-06-05)
296
+
297
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/2013-05-28-15-13+08-00...2013-06-05-09-15-PST)
298
+
299
+ **Merged pull requests:**
300
+
301
+ - Make configuration hash indifferent [\#17](https://github.com/payrollhero/dispatch-rider/pull/17) ([more-ron](https://github.com/more-ron))
302
+
303
+ - Fix double serialize on file system bug [\#15](https://github.com/payrollhero/dispatch-rider/pull/15) ([more-ron](https://github.com/more-ron))
304
+
305
+ - Add publisher configure method [\#16](https://github.com/payrollhero/dispatch-rider/pull/16) ([more-ron](https://github.com/more-ron))
306
+
307
+ - Initial implementation of hash based configuration to satisfy issue \#10 [\#11](https://github.com/payrollhero/dispatch-rider/pull/11) ([jimbomt](https://github.com/jimbomt))
308
+
309
+ ## [2013-05-28-15-13+08-00](https://github.com/payrollhero/dispatch-rider/tree/2013-05-28-15-13+08-00) (2013-05-28)
310
+
311
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/2013-05-28...2013-05-28-15-13+08-00)
312
+
313
+ **Implemented enhancements:**
314
+
315
+ - Hash based configuration [\#10](https://github.com/payrollhero/dispatch-rider/issues/10)
316
+
317
+ **Merged pull requests:**
318
+
319
+ - Make DispatchRider::Publisher\#configure indifferent to string or symbol ... [\#14](https://github.com/payrollhero/dispatch-rider/pull/14) ([more-ron](https://github.com/more-ron))
320
+
321
+ ## [2013-05-28](https://github.com/payrollhero/dispatch-rider/tree/2013-05-28) (2013-05-28)
322
+
323
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.2...2013-05-28)
324
+
325
+ **Merged pull requests:**
326
+
327
+ - Bug fix for file system notifications being serialized twice [\#13](https://github.com/payrollhero/dispatch-rider/pull/13) ([more-ron](https://github.com/more-ron))
328
+
329
+ - Another stab at the initial implementation for issue \#10 [\#12](https://github.com/payrollhero/dispatch-rider/pull/12) ([piotrb](https://github.com/piotrb))
330
+
331
+ ## [v0.0.2](https://github.com/payrollhero/dispatch-rider/tree/v0.0.2) (2013-05-22)
332
+
333
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.3...v0.0.2)
334
+
335
+ ## [v0.0.3](https://github.com/payrollhero/dispatch-rider/tree/v0.0.3) (2013-05-22)
336
+
337
+ [Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v0.0.1...v0.0.3)
338
+
339
+ **Merged pull requests:**
340
+
341
+ - Update Documentations [\#9](https://github.com/payrollhero/dispatch-rider/pull/9) ([more-ron](https://github.com/more-ron))
342
+
343
+ - Fix message contruction when raw head is nil [\#7](https://github.com/payrollhero/dispatch-rider/pull/7) ([more-ron](https://github.com/more-ron))
344
+
345
+ ## [v0.0.1](https://github.com/payrollhero/dispatch-rider/tree/v0.0.1) (2013-05-16)
346
+
347
+ **Merged pull requests:**
348
+
349
+ - Add support for SNS published message received in SQS [\#6](https://github.com/payrollhero/dispatch-rider/pull/6) ([more-ron](https://github.com/more-ron))
350
+
351
+ - Added FileSystem Notifier Support [\#5](https://github.com/payrollhero/dispatch-rider/pull/5) ([piotrb](https://github.com/piotrb))
352
+
353
+ - Adapting to multiple queues [\#4](https://github.com/payrollhero/dispatch-rider/pull/4) ([more-ron](https://github.com/more-ron))
354
+
355
+ - Add AWS::SNS to DispatchRider::QueueServices [\#3](https://github.com/payrollhero/dispatch-rider/pull/3) ([more-ron](https://github.com/more-ron))
356
+
357
+ - Add FileSystem as a queue system [\#2](https://github.com/payrollhero/dispatch-rider/pull/2) ([more-ron](https://github.com/more-ron))
358
+
359
+ - Modify QueueServices\#pop to be able to properly dequeue the item [\#1](https://github.com/payrollhero/dispatch-rider/pull/1) ([more-ron](https://github.com/more-ron))
360
+
361
+
362
+
363
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*