robustly 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4af8ee25fdac4dc4261e15a3c8607f3d9d0b4e93
4
+ data.tar.gz: 2bc8d4431a28b32890c6e8e13891734e85720c1a
5
+ SHA512:
6
+ metadata.gz: a94cd1beb0d704272d14469042e50ab2c2121efbd572502fad3b454597f51a65bb6bbd9b0297fe4926d8a2a29fb069ba853f195dc031aa1848dd555f64962576
7
+ data.tar.gz: 4e60611345fc061cf2d92269d813c1158ccd98beb583410678adbebcb7c540cf32d0d533e6460a49ce82d150076dace63bcefed4214c872b41009aa9a8e10275
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in robustly.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Andrew Kane
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,56 @@
1
+ # Robustly
2
+
3
+ Don’t let small errors bring down the system
4
+
5
+ ```ruby
6
+ robustly do
7
+ # keep going if this code fails
8
+ end
9
+ ```
10
+
11
+ Raises exceptions in development and test environments and rescues and reports exceptions elsewhere.
12
+
13
+ Also aliased to `yolo`.
14
+
15
+ ```ruby
16
+ yolo do
17
+ # you only live once
18
+ end
19
+ ```
20
+
21
+ Reports exceptions to [Rollbar](https://rollbar.com/), [Honeybadger](https://www.honeybadger.io/), [Airbrake](https://airbrake.io/), [Exceptional](http://www.exceptional.io/), [Exception Notification](http://smartinez87.github.io/exception_notification/), and [Raygun](https://raygun.io/) out of the box thanks to [Errbase](https://github.com/ankane/errbase).
22
+
23
+ Customize reporting with:
24
+
25
+ ```ruby
26
+ Robustly.report_exception_method = proc {|e| Rollbar.report_exception(e) }
27
+ ```
28
+
29
+ And throttle reporting with:
30
+
31
+ ```ruby
32
+ robustly throttle: 1000 do
33
+ # reports ~ 1/1000 errors
34
+ end
35
+ ```
36
+
37
+ ## Installation
38
+
39
+ Add this line to your application’s Gemfile:
40
+
41
+ ```ruby
42
+ gem 'robustly'
43
+ ```
44
+
45
+ ## TODO
46
+
47
+ - ability to catch specific errors
48
+
49
+ ## Contributing
50
+
51
+ Everyone is encouraged to help improve this project. Here are a few ways you can help:
52
+
53
+ - [Report bugs](https://github.com/ankane/robustly/issues)
54
+ - Fix bugs and [submit pull requests](https://github.com/ankane/robustly/pulls)
55
+ - Write, clarify, or fix documentation
56
+ - Suggest or add new features
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ task :default => :test
5
+ Rake::TestTask.new do |t|
6
+ t.libs << "test"
7
+ t.pattern = "test/**/*_test.rb"
8
+ end
@@ -0,0 +1,35 @@
1
+ require "robustly/version"
2
+
3
+ module Robustly
4
+
5
+ class << self
6
+ attr_accessor :env, :report_exception_method
7
+
8
+ def report_exception(e)
9
+ report_exception_method.call(e)
10
+ end
11
+ end
12
+ self.env = ENV["RACK_ENV"] || ENV["RAILS_ENV"] || "development"
13
+ self.report_exception_method = proc do |e|
14
+ Errbase.report(e)
15
+ end
16
+
17
+ module Methods
18
+
19
+ def robustly(options = {}, &block)
20
+ begin
21
+ yield
22
+ rescue => e
23
+ raise e if %w[development test].include?(Robustly.env)
24
+ if options[:throttle] ? rand < 1.0 / options[:throttle] : true
25
+ Robustly.report_exception(e)
26
+ end
27
+ end
28
+ end
29
+ alias_method :yolo, :robustly
30
+
31
+ end
32
+
33
+ end
34
+
35
+ Object.send :include, Robustly::Methods
@@ -0,0 +1,3 @@
1
+ module Robustly
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'robustly/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "robustly"
8
+ spec.version = Robustly::VERSION
9
+ spec.authors = ["Andrew Kane"]
10
+ spec.email = ["andrew@chartkick.com"]
11
+ spec.summary = %q{Don’t let small errors bring down the system}
12
+ spec.description = %q{Don’t let small errors bring down the system}
13
+ spec.homepage = "https://github.com/ankane/robustly"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "errbase"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.6"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "minitest", ">= 5"
26
+ end
@@ -0,0 +1,49 @@
1
+ require_relative "test_helper"
2
+
3
+ class TestRobustly < Minitest::Test
4
+
5
+ def setup
6
+ Robustly.env = "production"
7
+ end
8
+
9
+ def test_robustly_development_environment
10
+ Robustly.env = "development"
11
+ assert_raises(Robustly::TestError) do
12
+ robustly do
13
+ raise Robustly::TestError
14
+ end
15
+ end
16
+ end
17
+
18
+ def test_robustly_test_environment
19
+ Robustly.env = "test"
20
+ assert_raises(Robustly::TestError) do
21
+ robustly do
22
+ raise Robustly::TestError
23
+ end
24
+ end
25
+ end
26
+
27
+ def test_robustly_production_environment
28
+ exception = Robustly::TestError.new
29
+ mock = MiniTest::Mock.new
30
+ mock.expect :report_exception, nil, [exception]
31
+ Robustly.report_exception_method = proc {|e| mock.report_exception(e) }
32
+ robustly do
33
+ raise exception
34
+ end
35
+ assert mock.verify
36
+ end
37
+
38
+ def test_yolo
39
+ exception = Robustly::TestError.new
40
+ mock = MiniTest::Mock.new
41
+ mock.expect :report_exception, nil, [exception]
42
+ Robustly.report_exception_method = proc {|e| mock.report_exception(e) }
43
+ yolo do
44
+ raise exception
45
+ end
46
+ assert mock.verify
47
+ end
48
+
49
+ end
@@ -0,0 +1,8 @@
1
+ require "bundler/setup"
2
+ Bundler.require(:default)
3
+ require "minitest/autorun"
4
+ require "minitest/pride"
5
+
6
+ module Robustly
7
+ class TestError < StandardError; end
8
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: robustly
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Kane
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: errbase
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
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.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
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: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '5'
69
+ description: Don’t let small errors bring down the system
70
+ email:
71
+ - andrew@chartkick.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - lib/robustly.rb
82
+ - lib/robustly/version.rb
83
+ - robustly.gemspec
84
+ - test/robustly_test.rb
85
+ - test/test_helper.rb
86
+ homepage: https://github.com/ankane/robustly
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.2.2
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Don’t let small errors bring down the system
110
+ test_files:
111
+ - test/robustly_test.rb
112
+ - test/test_helper.rb
113
+ has_rdoc: