[DRE-commits] [ruby-sentry-raven] 01/05: Merge tag 'upstream/2.1.2'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Tue Nov 1 09:22:41 UTC 2016


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-sentry-raven.

commit 36a7783b0849fb57267b50253ffbfcd358d190e5
Merge: 886bca2 f533da6
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Tue Nov 1 13:02:03 2016 +0530

    Merge tag 'upstream/2.1.2'
    
    Upstream version 2.1.2
    
    # gpg: Signature made Tuesday 01 November 2016 01:02:00 PM IST using RSA key ID CE1F9C674512C22A
    # gpg: Good signature from "Praveen Arimbrathodiyil (piratepin) <praveen at debian.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (pirates.org.in) <praveen at onenetbeyond.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (piratesin) <me at j4v4m4n.in>" [ultimate]
    # gpg:                 aka "Pirate Praveen (PP) <praveen at privacyrequired.com>" [ultimate]
    # gpg:                 aka "Praveen Arimbrathodiyil (j4v4m4n) <pravi.a at gmail.com>" [ultimate]

 .rubocop.yml                                       |  61 +-
 .rubocop_todo.yml                                  | 417 --------------
 .travis.yml                                        |  27 +-
 Gemfile                                            |   4 +
 Makefile                                           |  11 -
 Rakefile                                           |   1 +
 benchmarks/benchmark.rb                            |  19 +-
 benchmarks/json.rb                                 |  22 +
 changelog.md                                       |  86 +++
 docs/breadcrumbs.rst                               |  40 ++
 docs/config.rst                                    |  18 +-
 docs/index.rst                                     |   2 +
 docs/integrations/rails.rst                        |   2 +-
 examples/rails-4.2/Gemfile                         |   1 -
 .../app/controllers/application_controller.rb      |   9 +
 .../rails-4.2/app/controllers/errors_controller.rb |   6 +
 .../views/errors/internal_server_error.html.erb    |  22 +
 .../app/views/layouts/application.html.erb         |   9 +
 examples/rails-4.2/config/application.rb           |  12 +-
 .../rails-4.2/config/environments/development.rb   |   2 -
 examples/rails-4.2/config/routes.rb                |   2 +
 examples/rails-5.0/.gitignore                      |  21 +
 examples/{rails-4.2 => rails-5.0}/Gemfile          |  34 +-
 examples/rails-5.0/README.md                       |  24 +
 examples/rails-5.0/Rakefile                        |   6 +
 .../app/channels/application_cable/channel.rb      |   4 +
 .../app/channels/application_cable/connection.rb   |   4 +
 .../app/controllers/application_controller.rb      |  11 +
 .../rails-5.0/app/controllers/concerns/.keep       |   0
 .../app/controllers/welcome_controller.rb          |  11 +
 examples/rails-5.0/app/jobs/application_job.rb     |   2 +
 .../rails-5.0/app/models/application_record.rb     |   3 +
 .../rails-5.0/app/models/concerns/.keep            |   0
 .../app/views/layouts/application.html.erb         |  20 +
 .../rails-5.0/app/views/layouts/mailer.html.erb    |  13 +
 .../rails-5.0/app/views/layouts/mailer.text.erb    |   1 +
 .../app/views/welcome/report_demo.html.erb         |  22 +
 examples/rails-5.0/bin/bundle                      |   3 +
 examples/rails-5.0/bin/rails                       |   9 +
 examples/rails-5.0/bin/rake                        |   9 +
 examples/rails-5.0/bin/setup                       |  34 ++
 examples/rails-5.0/bin/spring                      |  15 +
 examples/rails-5.0/bin/update                      |  29 +
 examples/rails-5.0/config.ru                       |   5 +
 examples/rails-5.0/config/application.rb           |  27 +
 examples/rails-5.0/config/boot.rb                  |   3 +
 examples/rails-5.0/config/cable.yml                |   9 +
 examples/rails-5.0/config/database.yml             |  25 +
 examples/rails-5.0/config/environment.rb           |   5 +
 .../config/environments/development.rb             |  32 +-
 .../rails-5.0/config/environments/production.rb    |  86 +++
 examples/rails-5.0/config/environments/test.rb     |  42 ++
 .../application_controller_renderer.rb             |   6 +
 examples/rails-5.0/config/initializers/assets.rb   |  11 +
 .../config/initializers/backtrace_silencers.rb     |   7 +
 .../config/initializers/cookies_serializer.rb      |   5 +
 .../initializers/filter_parameter_logging.rb       |   4 +
 .../rails-5.0/config/initializers/inflections.rb   |  16 +
 .../rails-5.0/config/initializers/mime_types.rb    |   4 +
 .../config/initializers/new_framework_defaults.rb  |  24 +
 .../rails-5.0/config/initializers/session_store.rb |   3 +
 .../config/initializers/wrap_parameters.rb         |  14 +
 examples/rails-5.0/config/locales/en.yml           |  23 +
 examples/rails-5.0/config/puma.rb                  |  47 ++
 examples/rails-5.0/config/routes.rb                |   4 +
 examples/rails-5.0/config/secrets.yml              |  22 +
 examples/rails-5.0/config/spring.rb                |   6 +
 examples/rails-5.0/db/seeds.rb                     |   7 +
 .../rails-5.0/log/.keep                            |   0
 .../public/500.html => rails-5.0/public/404.html}  |   7 +-
 .../public/500.html => rails-5.0/public/422.html}  |   7 +-
 .../public/apple-touch-icon-precomposed.png        |   0
 .../rails-5.0/public/apple-touch-icon.png          |   0
 .../rails-5.0/public/favicon.ico                   |   0
 examples/rails-5.0/public/robots.txt               |   5 +
 .../rails-5.0/tmp/.keep                            |   0
 exe/raven                                          |  18 +-
 gemfiles/rails32.gemfile                           |   2 +-
 gemfiles/rails42.gemfile                           |   2 +-
 gemfiles/rails5.gemfile                            |   4 +-
 lib/raven/backtrace.rb                             |   7 +-
 lib/raven/base.rb                                  | 226 ++------
 lib/raven/breadcrumbs.rb                           |  74 +++
 lib/raven/breadcrumbs/activesupport.rb             |  19 +
 lib/raven/breadcrumbs/logger.rb                    |  93 ++++
 lib/raven/cli.rb                                   |  44 +-
 lib/raven/client.rb                                |  23 +-
 lib/raven/configuration.rb                         | 315 ++++++-----
 lib/raven/context.rb                               |  33 +-
 lib/raven/event.rb                                 | 116 ++--
 lib/raven/{base.rb => instance.rb}                 | 176 +++---
 lib/raven/integrations/delayed_job.rb              |  18 +-
 lib/raven/integrations/rack-timeout.rb             |  16 +
 lib/raven/integrations/rack.rb                     |  11 +-
 lib/raven/integrations/rails.rb                    |  30 +-
 lib/raven/integrations/rails/active_job.rb         |   2 +-
 lib/raven/integrations/rake.rb                     |   2 +-
 lib/raven/integrations/sidekiq.rb                  |  91 +--
 lib/raven/integrations/tasks.rb                    |   2 +-
 lib/raven/interface.rb                             |  25 +
 lib/raven/interfaces.rb                            |  34 --
 lib/raven/interfaces/exception.rb                  |  13 +-
 lib/raven/interfaces/http.rb                       |  17 +-
 lib/raven/interfaces/message.rb                    |  16 +-
 lib/raven/interfaces/single_exception.rb           |   6 +-
 lib/raven/interfaces/stack_trace.rb                |  25 +-
 lib/raven/linecache.rb                             |   7 +-
 lib/raven/logger.rb                                |  12 +-
 lib/raven/okjson.rb                                | 614 ---------------------
 lib/raven/processor.rb                             |   4 +
 lib/raven/processor/cookies.rb                     |   4 +-
 lib/raven/processor/http_headers.rb                |  42 ++
 lib/raven/processor/post_data.rb                   |   2 +-
 lib/raven/processor/sanitizedata.rb                |  24 +-
 lib/raven/transports.rb                            |   4 +-
 lib/raven/transports/http.rb                       |   7 +-
 lib/raven/utils/real_ip.rb                         |  62 +++
 lib/raven/version.rb                               |   3 +-
 sentry-raven.gemspec                               |   8 +-
 spec/raven/breadcrumbs_spec.rb                     |  68 +++
 spec/raven/cli_spec.rb                             |  11 +-
 spec/raven/configuration_spec.rb                   | 153 ++---
 spec/raven/event_spec.rb                           | 358 ++++++------
 spec/raven/instance_spec.rb                        | 221 ++++++++
 spec/raven/integration_spec.rb                     |   4 +-
 spec/raven/integrations/rack_spec.rb               |   8 +-
 spec/raven/integrations/rails_spec.rb              |   6 +-
 spec/raven/integrations/rake_spec.rb               |  11 +-
 spec/raven/integrations/sidekiq_spec.rb            |  57 ++
 spec/raven/interface_spec.rb                       |  33 ++
 spec/raven/json_spec.rb                            |  48 ++
 spec/raven/logger_spec.rb                          |  35 +-
 spec/raven/okjson_spec.rb                          |  46 --
 spec/raven/processors/cookies_spec.rb              |   4 +-
 spec/raven/processors/http_headers_spec.rb         |  41 ++
 spec/raven/processors/post_data_spec.rb            |   4 +-
 .../processors/removecirculareferences_spec.rb     |   2 +-
 .../processors/sanitizedata_processor_spec.rb      |  39 +-
 spec/raven/processors/utf8conversion_spec.rb       |   8 +-
 spec/raven/raven_spec.rb                           |  52 +-
 spec/raven/transports/http_spec.rb                 |  30 +-
 spec/raven/utils/real_ip_spec.rb                   |  78 +++
 spec/spec_helper.rb                                |  22 +-
 spec/support/test_rails_app/app.rb                 |   5 +-
 144 files changed, 2857 insertions(+), 2244 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-sentry-raven.git



More information about the Pkg-ruby-extras-commits mailing list