exception_notification_server 0.0.1
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 +7 -0
 - data/.document +5 -0
 - data/.gitignore +51 -0
 - data/.ruby-gemset +1 -0
 - data/.ruby-version +1 -0
 - data/Gemfile +23 -0
 - data/Gemfile.lock +162 -0
 - data/LICENSE.txt +20 -0
 - data/README.rdoc +19 -0
 - data/Rakefile +59 -0
 - data/VERSION +1 -0
 - data/app/assets/images/exception_notification_server/.keep +0 -0
 - data/app/assets/javascripts/exception_notification_server/application.js.coffee +8 -0
 - data/app/assets/javascripts/exception_notification_server/flot/excanvas.js +1428 -0
 - data/app/assets/javascripts/exception_notification_server/flot/jquery.flot.js +3168 -0
 - data/app/assets/javascripts/exception_notification_server/flot/jquery.flot.resize.js +59 -0
 - data/app/assets/javascripts/exception_notification_server/flot/jquery.flot.time.js +432 -0
 - data/app/assets/javascripts/exception_notification_server/jquery.sparkline.js +3054 -0
 - data/app/assets/javascripts/exception_notification_server/main.js.coffee +6 -0
 - data/app/assets/javascripts/exception_notification_server/pages/notifications.js.coffee +15 -0
 - data/app/assets/stylesheets/exception_notification_server/application.css.sass +4 -0
 - data/app/assets/stylesheets/exception_notification_server/layout.css.sass +97 -0
 - data/app/assets/stylesheets/exception_notification_server/notifications.css.sass +19 -0
 - data/app/controllers/exception_notification_server/application_controller.rb +20 -0
 - data/app/controllers/exception_notification_server/notifications_controller.rb +97 -0
 - data/app/helpers/exception_notification_server/application_helper.rb +46 -0
 - data/app/models/exception_notification_server/notification.rb +69 -0
 - data/app/views/exception_notification_server/notifications/_notifications.html.haml +37 -0
 - data/app/views/exception_notification_server/notifications/index.html.haml +7 -0
 - data/app/views/exception_notification_server/notifications/index.js.haml +2 -0
 - data/app/views/exception_notification_server/notifications/show.html.haml +76 -0
 - data/app/views/layouts/exception_notification_server/application.html.haml +17 -0
 - data/config/routes.rb +10 -0
 - data/exception_notification_server.gemspec +162 -0
 - data/lib/exception_notification_server/engine.rb +10 -0
 - data/lib/exception_notification_server/version.rb +3 -0
 - data/lib/exception_notification_server.rb +21 -0
 - data/lib/generators/exception_notification_server/install_generator.rb +33 -0
 - data/lib/generators/exception_notification_server/templates/exception_notification_server.rb +5 -0
 - data/lib/generators/exception_notification_server/templates/migration.rb +26 -0
 - data/lib/tasks/exception_notification_server_tasks.rake +4 -0
 - data/readme.md +5 -0
 - data/test/dummy/README.rdoc +28 -0
 - data/test/dummy/Rakefile +6 -0
 - data/test/dummy/app/assets/images/.keep +0 -0
 - data/test/dummy/app/assets/javascripts/application.js +13 -0
 - data/test/dummy/app/assets/stylesheets/application.css +15 -0
 - data/test/dummy/app/controllers/application_controller.rb +5 -0
 - data/test/dummy/app/controllers/concerns/.keep +0 -0
 - data/test/dummy/app/helpers/application_helper.rb +2 -0
 - data/test/dummy/app/mailers/.keep +0 -0
 - data/test/dummy/app/models/.keep +0 -0
 - data/test/dummy/app/models/concerns/.keep +0 -0
 - data/test/dummy/app/views/layouts/application.html.erb +14 -0
 - data/test/dummy/bin/bundle +3 -0
 - data/test/dummy/bin/rails +4 -0
 - data/test/dummy/bin/rake +4 -0
 - data/test/dummy/config/application.rb +22 -0
 - data/test/dummy/config/boot.rb +5 -0
 - data/test/dummy/config/database.yml +25 -0
 - data/test/dummy/config/environment.rb +5 -0
 - data/test/dummy/config/environments/development.rb +37 -0
 - data/test/dummy/config/environments/production.rb +82 -0
 - data/test/dummy/config/environments/test.rb +39 -0
 - data/test/dummy/config/initializers/assets.rb +8 -0
 - data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
 - data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
 - data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
 - data/test/dummy/config/initializers/inflections.rb +16 -0
 - data/test/dummy/config/initializers/mime_types.rb +4 -0
 - data/test/dummy/config/initializers/session_store.rb +3 -0
 - data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
 - data/test/dummy/config/locales/en.yml +23 -0
 - data/test/dummy/config/routes.rb +3 -0
 - data/test/dummy/config/secrets.yml +22 -0
 - data/test/dummy/config.ru +4 -0
 - data/test/dummy/db/test.sqlite3 +0 -0
 - data/test/dummy/lib/assets/.keep +0 -0
 - data/test/dummy/log/.keep +0 -0
 - data/test/dummy/public/404.html +67 -0
 - data/test/dummy/public/422.html +67 -0
 - data/test/dummy/public/500.html +66 -0
 - data/test/dummy/public/favicon.ico +0 -0
 - data/test/exception_notification_server_test.rb +7 -0
 - data/test/integration/navigation_test.rb +9 -0
 - data/test/test_helper.rb +15 -0
 - metadata +357 -0
 
| 
         @@ -0,0 +1,66 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>We're sorry, but something went wrong (500)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <meta name="viewport" content="width=device-width,initial-scale=1">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 7 
     | 
    
         
            +
              body {
         
     | 
| 
      
 8 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 9 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 10 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 11 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 12 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 13 
     | 
    
         
            +
              }
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 16 
     | 
    
         
            +
                width: 95%;
         
     | 
| 
      
 17 
     | 
    
         
            +
                max-width: 33em;
         
     | 
| 
      
 18 
     | 
    
         
            +
                margin: 4em auto 0;
         
     | 
| 
      
 19 
     | 
    
         
            +
              }
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              div.dialog > div {
         
     | 
| 
      
 22 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 23 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 24 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 25 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 26 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 27 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 28 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 29 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 30 
     | 
    
         
            +
                padding: 7px 12% 0;
         
     | 
| 
      
 31 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 32 
     | 
    
         
            +
              }
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 35 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 36 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 37 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 38 
     | 
    
         
            +
              }
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              div.dialog > p {
         
     | 
| 
      
 41 
     | 
    
         
            +
                margin: 0 0 1em;
         
     | 
| 
      
 42 
     | 
    
         
            +
                padding: 1em;
         
     | 
| 
      
 43 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 44 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 45 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 46 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 47 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 48 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 49 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 50 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 51 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 52 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 53 
     | 
    
         
            +
              }
         
     | 
| 
      
 54 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 55 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 58 
     | 
    
         
            +
              <!-- This file lives in public/500.html -->
         
     | 
| 
      
 59 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 60 
     | 
    
         
            +
                <div>
         
     | 
| 
      
 61 
     | 
    
         
            +
                  <h1>We're sorry, but something went wrong.</h1>
         
     | 
| 
      
 62 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
                <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 64 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 65 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 66 
     | 
    
         
            +
            </html>
         
     | 
| 
         
            File without changes
         
     | 
    
        data/test/test_helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,15 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Configure Rails Environment
         
     | 
| 
      
 2 
     | 
    
         
            +
            ENV['RAILS_ENV'] = 'test'
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            require File.expand_path('../dummy/config/environment.rb', __FILE__)
         
     | 
| 
      
 5 
     | 
    
         
            +
            require 'rails/test_help'
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            Rails.backtrace_cleaner.remove_silencers!
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            # Load support files
         
     | 
| 
      
 10 
     | 
    
         
            +
            Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            # Load fixtures from the engine
         
     | 
| 
      
 13 
     | 
    
         
            +
            if ActiveSupport::TestCase.method_defined?(:fixture_path=)
         
     | 
| 
      
 14 
     | 
    
         
            +
              ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
         
     | 
| 
      
 15 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,357 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: exception_notification_server
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.1
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Anatoliy Varanitsa
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2015-10-15 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: rails
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '4.1'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '4.1'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: coderay
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '1.1'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '1.1'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: jquery-rails
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 55 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 56 
     | 
    
         
            +
              name: jquery-ui-rails
         
     | 
| 
      
 57 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 62 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 63 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 64 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: will_paginate
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 72 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 73 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 74 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 75 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 76 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 77 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 78 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 79 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 80 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 83 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 84 
     | 
    
         
            +
              name: haml
         
     | 
| 
      
 85 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 86 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 87 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 89 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 90 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 91 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 92 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 93 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 94 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 95 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 96 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 97 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 98 
     | 
    
         
            +
              name: sqlite3
         
     | 
| 
      
 99 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 100 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 101 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 102 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 103 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 104 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 105 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 106 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 107 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 108 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 109 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 110 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 111 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 112 
     | 
    
         
            +
              name: shoulda
         
     | 
| 
      
 113 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 114 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 115 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 116 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 117 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 118 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 119 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 120 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 121 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 122 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 123 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 124 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 125 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 126 
     | 
    
         
            +
              name: rdoc
         
     | 
| 
      
 127 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 128 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 129 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 130 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 131 
     | 
    
         
            +
                    version: '3.12'
         
     | 
| 
      
 132 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 133 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 134 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 135 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 136 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 137 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 138 
     | 
    
         
            +
                    version: '3.12'
         
     | 
| 
      
 139 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 140 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 141 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 142 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 143 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 145 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 146 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 147 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 148 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 149 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 150 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 151 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 152 
     | 
    
         
            +
                    version: '1.0'
         
     | 
| 
      
 153 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 154 
     | 
    
         
            +
              name: jeweler
         
     | 
| 
      
 155 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 156 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 157 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 158 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 159 
     | 
    
         
            +
                    version: 2.0.1
         
     | 
| 
      
 160 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 161 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 162 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 163 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 164 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 165 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 166 
     | 
    
         
            +
                    version: 2.0.1
         
     | 
| 
      
 167 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 168 
     | 
    
         
            +
              name: simplecov
         
     | 
| 
      
 169 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 170 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 171 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 172 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 173 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 174 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 175 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 176 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 177 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 178 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 179 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 180 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 181 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 182 
     | 
    
         
            +
              name: rubocop
         
     | 
| 
      
 183 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 184 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 185 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 186 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 187 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 188 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 189 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 190 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 191 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 192 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 193 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 194 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 195 
     | 
    
         
            +
            description: Gem that receive errors from exception_notification gem and show it grouped
         
     | 
| 
      
 196 
     | 
    
         
            +
              on pages
         
     | 
| 
      
 197 
     | 
    
         
            +
            email: Prizrack13@mail.ru
         
     | 
| 
      
 198 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 199 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 200 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
      
 201 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 202 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 203 
     | 
    
         
            +
            files:
         
     | 
| 
      
 204 
     | 
    
         
            +
            - ".document"
         
     | 
| 
      
 205 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 206 
     | 
    
         
            +
            - ".ruby-gemset"
         
     | 
| 
      
 207 
     | 
    
         
            +
            - ".ruby-version"
         
     | 
| 
      
 208 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 209 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
      
 210 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 211 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 212 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 213 
     | 
    
         
            +
            - VERSION
         
     | 
| 
      
 214 
     | 
    
         
            +
            - app/assets/images/exception_notification_server/.keep
         
     | 
| 
      
 215 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/application.js.coffee
         
     | 
| 
      
 216 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/flot/excanvas.js
         
     | 
| 
      
 217 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/flot/jquery.flot.js
         
     | 
| 
      
 218 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/flot/jquery.flot.resize.js
         
     | 
| 
      
 219 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/flot/jquery.flot.time.js
         
     | 
| 
      
 220 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/jquery.sparkline.js
         
     | 
| 
      
 221 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/main.js.coffee
         
     | 
| 
      
 222 
     | 
    
         
            +
            - app/assets/javascripts/exception_notification_server/pages/notifications.js.coffee
         
     | 
| 
      
 223 
     | 
    
         
            +
            - app/assets/stylesheets/exception_notification_server/application.css.sass
         
     | 
| 
      
 224 
     | 
    
         
            +
            - app/assets/stylesheets/exception_notification_server/layout.css.sass
         
     | 
| 
      
 225 
     | 
    
         
            +
            - app/assets/stylesheets/exception_notification_server/notifications.css.sass
         
     | 
| 
      
 226 
     | 
    
         
            +
            - app/controllers/exception_notification_server/application_controller.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - app/controllers/exception_notification_server/notifications_controller.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - app/helpers/exception_notification_server/application_helper.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - app/models/exception_notification_server/notification.rb
         
     | 
| 
      
 230 
     | 
    
         
            +
            - app/views/exception_notification_server/notifications/_notifications.html.haml
         
     | 
| 
      
 231 
     | 
    
         
            +
            - app/views/exception_notification_server/notifications/index.html.haml
         
     | 
| 
      
 232 
     | 
    
         
            +
            - app/views/exception_notification_server/notifications/index.js.haml
         
     | 
| 
      
 233 
     | 
    
         
            +
            - app/views/exception_notification_server/notifications/show.html.haml
         
     | 
| 
      
 234 
     | 
    
         
            +
            - app/views/layouts/exception_notification_server/application.html.haml
         
     | 
| 
      
 235 
     | 
    
         
            +
            - config/routes.rb
         
     | 
| 
      
 236 
     | 
    
         
            +
            - exception_notification_server.gemspec
         
     | 
| 
      
 237 
     | 
    
         
            +
            - lib/exception_notification_server.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            - lib/exception_notification_server/engine.rb
         
     | 
| 
      
 239 
     | 
    
         
            +
            - lib/exception_notification_server/version.rb
         
     | 
| 
      
 240 
     | 
    
         
            +
            - lib/generators/exception_notification_server/install_generator.rb
         
     | 
| 
      
 241 
     | 
    
         
            +
            - lib/generators/exception_notification_server/templates/exception_notification_server.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - lib/generators/exception_notification_server/templates/migration.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - lib/tasks/exception_notification_server_tasks.rake
         
     | 
| 
      
 244 
     | 
    
         
            +
            - readme.md
         
     | 
| 
      
 245 
     | 
    
         
            +
            - test/dummy/README.rdoc
         
     | 
| 
      
 246 
     | 
    
         
            +
            - test/dummy/Rakefile
         
     | 
| 
      
 247 
     | 
    
         
            +
            - test/dummy/app/assets/images/.keep
         
     | 
| 
      
 248 
     | 
    
         
            +
            - test/dummy/app/assets/javascripts/application.js
         
     | 
| 
      
 249 
     | 
    
         
            +
            - test/dummy/app/assets/stylesheets/application.css
         
     | 
| 
      
 250 
     | 
    
         
            +
            - test/dummy/app/controllers/application_controller.rb
         
     | 
| 
      
 251 
     | 
    
         
            +
            - test/dummy/app/controllers/concerns/.keep
         
     | 
| 
      
 252 
     | 
    
         
            +
            - test/dummy/app/helpers/application_helper.rb
         
     | 
| 
      
 253 
     | 
    
         
            +
            - test/dummy/app/mailers/.keep
         
     | 
| 
      
 254 
     | 
    
         
            +
            - test/dummy/app/models/.keep
         
     | 
| 
      
 255 
     | 
    
         
            +
            - test/dummy/app/models/concerns/.keep
         
     | 
| 
      
 256 
     | 
    
         
            +
            - test/dummy/app/views/layouts/application.html.erb
         
     | 
| 
      
 257 
     | 
    
         
            +
            - test/dummy/bin/bundle
         
     | 
| 
      
 258 
     | 
    
         
            +
            - test/dummy/bin/rails
         
     | 
| 
      
 259 
     | 
    
         
            +
            - test/dummy/bin/rake
         
     | 
| 
      
 260 
     | 
    
         
            +
            - test/dummy/config.ru
         
     | 
| 
      
 261 
     | 
    
         
            +
            - test/dummy/config/application.rb
         
     | 
| 
      
 262 
     | 
    
         
            +
            - test/dummy/config/boot.rb
         
     | 
| 
      
 263 
     | 
    
         
            +
            - test/dummy/config/database.yml
         
     | 
| 
      
 264 
     | 
    
         
            +
            - test/dummy/config/environment.rb
         
     | 
| 
      
 265 
     | 
    
         
            +
            - test/dummy/config/environments/development.rb
         
     | 
| 
      
 266 
     | 
    
         
            +
            - test/dummy/config/environments/production.rb
         
     | 
| 
      
 267 
     | 
    
         
            +
            - test/dummy/config/environments/test.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - test/dummy/config/initializers/assets.rb
         
     | 
| 
      
 269 
     | 
    
         
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         
     | 
| 
      
 270 
     | 
    
         
            +
            - test/dummy/config/initializers/cookies_serializer.rb
         
     | 
| 
      
 271 
     | 
    
         
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         
     | 
| 
      
 272 
     | 
    
         
            +
            - test/dummy/config/initializers/inflections.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - test/dummy/config/initializers/mime_types.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - test/dummy/config/initializers/session_store.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - test/dummy/config/locales/en.yml
         
     | 
| 
      
 277 
     | 
    
         
            +
            - test/dummy/config/routes.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - test/dummy/config/secrets.yml
         
     | 
| 
      
 279 
     | 
    
         
            +
            - test/dummy/db/test.sqlite3
         
     | 
| 
      
 280 
     | 
    
         
            +
            - test/dummy/lib/assets/.keep
         
     | 
| 
      
 281 
     | 
    
         
            +
            - test/dummy/log/.keep
         
     | 
| 
      
 282 
     | 
    
         
            +
            - test/dummy/public/404.html
         
     | 
| 
      
 283 
     | 
    
         
            +
            - test/dummy/public/422.html
         
     | 
| 
      
 284 
     | 
    
         
            +
            - test/dummy/public/500.html
         
     | 
| 
      
 285 
     | 
    
         
            +
            - test/dummy/public/favicon.ico
         
     | 
| 
      
 286 
     | 
    
         
            +
            - test/exception_notification_server_test.rb
         
     | 
| 
      
 287 
     | 
    
         
            +
            - test/integration/navigation_test.rb
         
     | 
| 
      
 288 
     | 
    
         
            +
            - test/test_helper.rb
         
     | 
| 
      
 289 
     | 
    
         
            +
            homepage: http://github.com/prizrack13/exception_notification_server
         
     | 
| 
      
 290 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 291 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 292 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 293 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 294 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 295 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 296 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 297 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 298 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 299 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 300 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 301 
     | 
    
         
            +
                  version: 1.9.2
         
     | 
| 
      
 302 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 303 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 304 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 305 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 306 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 307 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 308 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 309 
     | 
    
         
            +
            rubygems_version: 2.2.2
         
     | 
| 
      
 310 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 311 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 312 
     | 
    
         
            +
            summary: Exception Notifiaction Server
         
     | 
| 
      
 313 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 314 
     | 
    
         
            +
            - test/dummy/README.rdoc
         
     | 
| 
      
 315 
     | 
    
         
            +
            - test/dummy/Rakefile
         
     | 
| 
      
 316 
     | 
    
         
            +
            - test/dummy/app/assets/images/.keep
         
     | 
| 
      
 317 
     | 
    
         
            +
            - test/dummy/app/assets/javascripts/application.js
         
     | 
| 
      
 318 
     | 
    
         
            +
            - test/dummy/app/assets/stylesheets/application.css
         
     | 
| 
      
 319 
     | 
    
         
            +
            - test/dummy/app/controllers/application_controller.rb
         
     | 
| 
      
 320 
     | 
    
         
            +
            - test/dummy/app/controllers/concerns/.keep
         
     | 
| 
      
 321 
     | 
    
         
            +
            - test/dummy/app/helpers/application_helper.rb
         
     | 
| 
      
 322 
     | 
    
         
            +
            - test/dummy/app/mailers/.keep
         
     | 
| 
      
 323 
     | 
    
         
            +
            - test/dummy/app/models/.keep
         
     | 
| 
      
 324 
     | 
    
         
            +
            - test/dummy/app/models/concerns/.keep
         
     | 
| 
      
 325 
     | 
    
         
            +
            - test/dummy/app/views/layouts/application.html.erb
         
     | 
| 
      
 326 
     | 
    
         
            +
            - test/dummy/bin/bundle
         
     | 
| 
      
 327 
     | 
    
         
            +
            - test/dummy/bin/rails
         
     | 
| 
      
 328 
     | 
    
         
            +
            - test/dummy/bin/rake
         
     | 
| 
      
 329 
     | 
    
         
            +
            - test/dummy/config.ru
         
     | 
| 
      
 330 
     | 
    
         
            +
            - test/dummy/config/application.rb
         
     | 
| 
      
 331 
     | 
    
         
            +
            - test/dummy/config/boot.rb
         
     | 
| 
      
 332 
     | 
    
         
            +
            - test/dummy/config/database.yml
         
     | 
| 
      
 333 
     | 
    
         
            +
            - test/dummy/config/environment.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - test/dummy/config/environments/development.rb
         
     | 
| 
      
 335 
     | 
    
         
            +
            - test/dummy/config/environments/production.rb
         
     | 
| 
      
 336 
     | 
    
         
            +
            - test/dummy/config/environments/test.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - test/dummy/config/initializers/assets.rb
         
     | 
| 
      
 338 
     | 
    
         
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         
     | 
| 
      
 339 
     | 
    
         
            +
            - test/dummy/config/initializers/cookies_serializer.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         
     | 
| 
      
 341 
     | 
    
         
            +
            - test/dummy/config/initializers/inflections.rb
         
     | 
| 
      
 342 
     | 
    
         
            +
            - test/dummy/config/initializers/mime_types.rb
         
     | 
| 
      
 343 
     | 
    
         
            +
            - test/dummy/config/initializers/session_store.rb
         
     | 
| 
      
 344 
     | 
    
         
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         
     | 
| 
      
 345 
     | 
    
         
            +
            - test/dummy/config/locales/en.yml
         
     | 
| 
      
 346 
     | 
    
         
            +
            - test/dummy/config/routes.rb
         
     | 
| 
      
 347 
     | 
    
         
            +
            - test/dummy/config/secrets.yml
         
     | 
| 
      
 348 
     | 
    
         
            +
            - test/dummy/db/test.sqlite3
         
     | 
| 
      
 349 
     | 
    
         
            +
            - test/dummy/lib/assets/.keep
         
     | 
| 
      
 350 
     | 
    
         
            +
            - test/dummy/log/.keep
         
     | 
| 
      
 351 
     | 
    
         
            +
            - test/dummy/public/404.html
         
     | 
| 
      
 352 
     | 
    
         
            +
            - test/dummy/public/422.html
         
     | 
| 
      
 353 
     | 
    
         
            +
            - test/dummy/public/500.html
         
     | 
| 
      
 354 
     | 
    
         
            +
            - test/dummy/public/favicon.ico
         
     | 
| 
      
 355 
     | 
    
         
            +
            - test/exception_notification_server_test.rb
         
     | 
| 
      
 356 
     | 
    
         
            +
            - test/integration/navigation_test.rb
         
     | 
| 
      
 357 
     | 
    
         
            +
            - test/test_helper.rb
         
     |