publish_my_data 0.0.9 → 0.0.10

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.
@@ -12,6 +12,7 @@ module PublishMyData
12
12
 
13
13
  def handle_uncaught_error(e)
14
14
  @e = e
15
+ Raven.capture_exception(e) if defined?(Raven) # TODO: move this out of the CE.
15
16
  Rails.logger.info "***UNCAUGHT ERROR***"
16
17
  Rails.logger.info e.class.name
17
18
  Rails.logger.info e.message
@@ -1,3 +1,3 @@
1
1
  module PublishMyData
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end