exception_notification_server 0.0.5 → 0.0.6

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: f18f7c744afb1e81f6c3c60a43eb269be34145bf
4
- data.tar.gz: c3445a39e93d37fb457a7214717ec883c846e476
3
+ metadata.gz: 1d91190705296384686a2e365059b1366c1127ff
4
+ data.tar.gz: 410efc3334fc8e7e971e85514cdecc4fb19f04e2
5
5
  SHA512:
6
- metadata.gz: 491e6f38531f0248871a1ebf5d6b66076ca17d4757ca3d859899538ed8d1334aa249455a5738ff1ccff22d531b1bc637f7d781fbcda60455bed2cb54d0bb2f77
7
- data.tar.gz: 47bf66be3e68d22d33aa44599a908c856a245fce4268ac7042cc66add62125fe74987a4804399799faa5b2bedddae7ed5444b9a0c884a3c0e95e0c27e34ecbeb
6
+ metadata.gz: 770675e60f4deaf18c43386fa7e163b82c3930a7a1d355763c0fa3df160aa5e9986fbea57b8ab4064cb82fd8447c8df3357a9cea52fc056fe20c72233d1db240
7
+ data.tar.gz: 6781008c55d638913d83af36dbe5afa1f866e913abdb0768e14fecfe148c1fb72294ec99479e3811397010aa7d568bfb68147d063123af473d56c4d3d5cb7aa7
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 0.0.6
@@ -83,7 +83,8 @@ module ExceptionNotificationServer
83
83
  end
84
84
 
85
85
  def gen_exception_hash
86
- Digest::SHA1.hexdigest("#{application}#{exception_class}#{exception_message.gsub(/#<([a-zA-z]*):([0-9abcdefx]*)>/, '#<\1>')}#{backtrace.to_s.gsub(rails_root, '')}")
86
+ # .gsub(/#<([a-zA-z]*):([0-9abcdefx]*)>/, '#<\1>') doesn't work for #<#<#<Class:0x000000083c5340>:0x000000083c3d60>:0x000000083c3d60> or we should run N times
87
+ Digest::SHA1.hexdigest("#{application}#{exception_class}#{exception_message.gsub(/:([0-9abcdefx]*)>/, '>')}#{backtrace.to_s.gsub(rails_root, '')}")
87
88
  end
88
89
 
89
90
  def base_id
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: exception_notification_server 0.0.5 ruby lib
5
+ # stub: exception_notification_server 0.0.6 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = 'exception_notification_server'
9
- s.version = '0.0.5'
9
+ s.version = '0.0.6'
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ['lib']
13
13
  s.authors = ['Anatoliy Varanitsa']
14
- s.date = '2015-10-21'
14
+ s.date = '2015-10-27'
15
15
  s.description = 'Gem that receive errors from exception_notification gem and show it grouped on pages'
16
16
  s.email = 'Prizrack13@mail.ru'
17
17
  s.extra_rdoc_files = [
@@ -1,3 +1,3 @@
1
1
  module ExceptionNotificationServer
2
- VERSION = '0.0.5'
2
+ VERSION = '0.0.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_notification_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anatoliy Varanitsa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-21 00:00:00.000000000 Z
11
+ date: 2015-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails