rollbar_logger 1.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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README.md +50 -0
  4. data/lib/rollbar_logger.rb +58 -0
  5. metadata +103 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6e6240175d44bccbe9edcbef022a1e3885986215
4
+ data.tar.gz: 6afb6770b789a0d22bc1651c3d2d51bf5df3cb96
5
+ SHA512:
6
+ metadata.gz: 22a444416f25d6aa43ff5696d9a565d69700e039d609a236711aa250659e57243c2e5f5574bbf523b2a8b3896b8aab3b4ab6891a54a000a1537a0181a9bbd748
7
+ data.tar.gz: e97b9208edc3b815c050d07f0f8d37514dc9d1808f6f06eb49a6251d5533f63058e775a41d723d81362d3082ad7b55e19468ca5594b9c698a130d21bd878a9d9
data/MIT-LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Fernando Tapia Rico
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # RollbarLogger
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rollbar_logger`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ Motivation:
8
+
9
+ Rails.logger = Rollbar # Infinite loop
10
+ Don't want to have Rollbar all over my application (coupling)
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ ```ruby
17
+ gem 'rollbar_logger'
18
+ ```
19
+
20
+ And then execute:
21
+
22
+ $ bundle
23
+
24
+ Or install it yourself as:
25
+
26
+ $ gem install rollbar_logger
27
+
28
+ ## Usage
29
+
30
+ TODO: Write usage instructions here
31
+
32
+ # IMPORTANT
33
+
34
+ Rollbar.configuration.logger points to /dev/null to avoid infinite loops.
35
+
36
+ ## Development
37
+
38
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39
+
40
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
41
+
42
+ ## Contributing
43
+
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rollbar_logger. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
45
+
46
+
47
+ ## License
48
+
49
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
50
+
@@ -0,0 +1,58 @@
1
+ require "logger"
2
+ require "rollbar"
3
+
4
+ class RollbarLogger < Logger
5
+ VERSION = [
6
+ VERSION_MAJOR = 1,
7
+ VERSION_MINOR = 0,
8
+ VERSION_TINY = 1,
9
+ VERSION_PRE = nil
10
+ ].compact.join(".")
11
+
12
+ class Error < RuntimeError; end
13
+ class DatetimeFormatNotSupported < Error; end
14
+ class FormatterNotSupported < Error; end
15
+
16
+ def initialize
17
+ @level = DEBUG
18
+ @logdev = nil
19
+
20
+ Rollbar.configuration.logger = Logger.new("/dev/null")
21
+ end
22
+
23
+ def formatter=(formatter)
24
+ raise(FormatterNotSupported)
25
+ end
26
+
27
+ def formatter
28
+ raise(FormatterNotSupported)
29
+ end
30
+
31
+ def datetime_format=(datetime_format)
32
+ raise(DatetimeFormatNotSupported)
33
+ end
34
+
35
+ def datetime_format
36
+ raise(DatetimeFormatNotSupported)
37
+ end
38
+
39
+ def <<(message)
40
+ error(message)
41
+ end
42
+
43
+ def add(severity, message = nil, progname = nil, &block)
44
+ severity ||= FATAL
45
+ severity = FATAL if severity == UNKNOWN
46
+ message ||= block_given? ? yield : progname
47
+
48
+ return true if severity < @level
49
+
50
+ Rollbar.log(rollbar_level(severity), message)
51
+ end
52
+
53
+ private
54
+
55
+ def rollbar_level(severity)
56
+ [:debug, :info, :warning, :error, :critical, :error][severity] || :error
57
+ end
58
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rollbar_logger
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Fernando Tapia Rico
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-08-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rollbar
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.8'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.8'
69
+ description: Report to Rollbar using the standard Logger interface
70
+ email:
71
+ - fertapric@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - MIT-LICENSE
77
+ - README.md
78
+ - lib/rollbar_logger.rb
79
+ homepage: https://github.com/fertapric/rollbar_logger
80
+ licenses:
81
+ - MIT
82
+ metadata: {}
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.4.5
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: Report to Rollbar using the Logger interface
103
+ test_files: []