exception_notification_server 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbd01a527c32b8014f9f78287c7b5777024169a5
4
- data.tar.gz: 8da81ae05c7cef0d024d90236b82865e3d908d95
3
+ metadata.gz: 8a51a0a20c304374c44e5aad42837084ccd46ece
4
+ data.tar.gz: 320c5fb753c2d6fd9cb6377f3ce71818afc0a9ab
5
5
  SHA512:
6
- metadata.gz: a52250c6773b32fd075aee1a3ae87b37311eab5ce42a6f2d2c9e7b4c6aafee5261574dd7f8fdf872e04a1e9fb6b826a6149d19f0f060648ace5e6f5397a5fbc8
7
- data.tar.gz: a41208fb94bc4c5b1261a8471a3780dcf62c757074351091d52a61d4b4b38587ef035c50a41d7841718957978284f0aef92834ab9794e7f93fe179a1b597fbbb
6
+ metadata.gz: d69fe3ee4f0be1041d1fa3fdb29feab8e486a8272708eb60faa88d4767708addc2a3c7e5c05a81c96be748a4e0474cf9f0ce5bee9521367880e26bdd5c8cb217
7
+ data.tar.gz: 79f4160426952b73a3367c87459825b279ddd1065000e25acbe0ad466f8dab52545db10c14e7c62a0690628229c74f6d310c4ce7e123d48addd5d1e01261e6b5
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.10
1
+ 0.0.11
@@ -7,7 +7,7 @@ module ExceptionNotificationServer
7
7
  serialize :environment, Hash
8
8
 
9
9
  belongs_to :parent, class: ExceptionNotificationServer::Notification
10
- has_many :childrens, ->{select('id, parent_id, status, exception_hash, env, application, server, process, rails_root, exception_class, exception_message, created_at, updated_at')}, class: ExceptionNotificationServer::Notification, foreign_key: :parent_id
10
+ has_many :childrens, -> { select('id, parent_id, status, exception_hash, env, application, server, process, rails_root, exception_class, exception_message, created_at, updated_at') }, class: ExceptionNotificationServer::Notification, foreign_key: :parent_id
11
11
 
12
12
  scope :base_notifications, ->(status = nil) { status.present? ? where(parent: nil, status: status) : where(parent: nil) }
13
13
  STATUSES = [:new, :investigating, :fixed].freeze
@@ -74,5 +74,5 @@
74
74
  - if @similar.to_a.present?
75
75
  %br
76
76
  = render partial: 'exception_notification_server/notifications/notifications', object: @similar, as: :notifications, locals: {count: false, last_time: false, env: true}
77
- = will_paginate @notifications, remote: true
77
+ = will_paginate @similar, remote: true
78
78
  %br
@@ -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.10 ruby lib
5
+ # stub: exception_notification_server 0.0.11 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "exception_notification_server"
9
- s.version = "0.0.10"
9
+ s.version = "0.0.11"
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 = "2016-02-15"
14
+ s.date = "2016-03-25"
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.10'
2
+ VERSION = '0.0.11'
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.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anatoliy Varanitsa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-15 00:00:00.000000000 Z
11
+ date: 2016-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails