-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 12 additions, 0 deletions.gitignore
- .gitlab-ci.yml 4 additions, 0 deletions.gitlab-ci.yml
- .rubocop.yml 15 additions, 0 deletions.rubocop.yml
- Gemfile 5 additions, 0 deletionsGemfile
- LICENSE.txt 0 additions, 0 deletionsLICENSE.txt
- README.md 17 additions, 0 deletionsREADME.md
- Rakefile 13 additions, 0 deletionsRakefile
- app/controllers/concerns/foreman_concrete/api/base_controller_extensions.rb 22 additions, 0 deletions...ncerns/foreman_concrete/api/base_controller_extensions.rb
- app/controllers/concerns/foreman_concrete/application_controller_extensions.rb 30 additions, 0 deletions...rns/foreman_concrete/application_controller_extensions.rb
- app/controllers/concerns/foreman_concrete/set_raven_context.rb 26 additions, 0 deletions...ontrollers/concerns/foreman_concrete/set_raven_context.rb
- app/lib/foreman_concrete/extensions/foreman/exception.rb 19 additions, 0 deletionsapp/lib/foreman_concrete/extensions/foreman/exception.rb
- app/lib/foreman_concrete/extensions/foreman/logging.rb 30 additions, 0 deletionsapp/lib/foreman_concrete/extensions/foreman/logging.rb
- app/views/api/v2/errors/custom_error.json.rabl 9 additions, 0 deletionsapp/views/api/v2/errors/custom_error.json.rabl
- app/views/api/v2/errors/standard_error.json.rabl 9 additions, 0 deletionsapp/views/api/v2/errors/standard_error.json.rabl
- app/views/foreman_cement/500.html.erb 36 additions, 0 deletionsapp/views/foreman_cement/500.html.erb
- foreman_cement.gemspec 28 additions, 0 deletionsforeman_cement.gemspec
- lib/foreman_cement.rb 6 additions, 0 deletionslib/foreman_cement.rb
- lib/foreman_cement/configure_sentry.rb 25 additions, 0 deletionslib/foreman_cement/configure_sentry.rb
- lib/foreman_cement/engine.rb 31 additions, 0 deletionslib/foreman_cement/engine.rb
- lib/foreman_cement/version.rb 5 additions, 0 deletionslib/foreman_cement/version.rb
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.rubocop.yml
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | ||
source 'https://rubygems.org' | ||
gemspec |
LICENSE.txt
0 → 100644
This diff is collapsed.
README.md
0 → 100644
Rakefile
0 → 100644
app/views/foreman_cement/500.html.erb
0 → 100644
foreman_cement.gemspec
0 → 100644
# frozen_string_literal: true | ||
require_relative 'lib/foreman_cement/version' | ||
Gem::Specification.new do |spec| | ||
spec.name = 'foreman_cement' | ||
spec.version = ForemanCement::VERSION | ||
spec.authors = ['Alexander Olofsson'] | ||
spec.email = ['alexander.olofsson@liu.se'] | ||
spec.summary = 'Send encountered exceptions and tracing to sentry.' | ||
spec.description = spec.summary | ||
spec.homepage = 'https://github.com/ananace/foreman_cement' | ||
spec.license = 'GPL-3.0' | ||
spec.files = Dir['{app,lib}/**/*'] + %w[LICENSE.txt Rakefile README.md] | ||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
spec.add_runtime_dependency 'sentry-rails', '~> 5.8' | ||
spec.add_runtime_dependency 'sentry-ruby', '~> 5.8' | ||
spec.add_runtime_dependency 'sentry-sidekiq', '~> 5.8' | ||
spec.add_development_dependency 'rubocop' | ||
spec.add_development_dependency 'rubocop-minitest' | ||
spec.add_development_dependency 'rubocop-performance' | ||
spec.add_development_dependency 'rubocop-rails' | ||
end |
lib/foreman_cement.rb
0 → 100644
lib/foreman_cement/configure_sentry.rb
0 → 100644
lib/foreman_cement/engine.rb
0 → 100644
lib/foreman_cement/version.rb
0 → 100644
Please register or sign in to comment