failbot_rails 0.3.1 → 0.3.2
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.
- data/README.md +5 -3
- data/failbot_rails.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
|
@@ -12,17 +12,19 @@ Add it to the app's Gemfile manifest. The gem is publicly available but **keep
|
|
|
12
12
|
this repository private.**
|
|
13
13
|
|
|
14
14
|
```ruby
|
|
15
|
-
gem "failbot_rails", "~>0.
|
|
15
|
+
gem "failbot_rails", "~>0.3.1"
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
19
19
|
|
|
20
|
-
Require `failbot_rails`
|
|
21
|
-
loading `
|
|
20
|
+
Require `failbot_rails` the very top of `config/application.rb` right after
|
|
21
|
+
loading `rails/all`:
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
24
|
require File.expand_path('../boot', __FILE__)
|
|
25
25
|
|
|
26
|
+
require 'rails/all'
|
|
27
|
+
|
|
26
28
|
# report exceptions to Haystack using Failbot
|
|
27
29
|
require "failbot_rails"
|
|
28
30
|
FailbotRails.setup("my_app")
|
data/failbot_rails.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "failbot_rails"
|
|
5
|
-
s.version = "0.3.
|
|
5
|
+
s.version = "0.3.2"
|
|
6
6
|
s.platform = Gem::Platform::RUBY
|
|
7
7
|
s.authors = %w[@sr]
|
|
8
8
|
s.email = ["sr@github.com"]
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
|
|
13
13
|
s.required_rubygems_version = ">= 1.3.6"
|
|
14
14
|
|
|
15
|
-
s.add_runtime_dependency "failbot", "~>0.9.
|
|
15
|
+
s.add_runtime_dependency "failbot", "~>0.9.1"
|
|
16
16
|
|
|
17
17
|
s.files = `git ls-files`.split("\n") - %w[Gemfile Gemfile.lock]
|
|
18
18
|
s.test_files = `git ls-files -- test`.split("\n").select { |f| f =~ /_test.rb$/ }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: failbot_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-08-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: failbot
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.9.
|
|
21
|
+
version: 0.9.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.9.
|
|
29
|
+
version: 0.9.1
|
|
30
30
|
description: Glue code for using Failbot in a Rails app
|
|
31
31
|
email:
|
|
32
32
|
- sr@github.com
|