best_errors 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/README.md +16 -4
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f8a6e56887430c0fe5874941e247b4aed59418c
|
4
|
+
data.tar.gz: ba0c5d39ce042c8c7a80c2fe20c25f852b888983
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0cc192665ffcfcc17bcadf678581250941a3cb1fafa7e30884ae3618f2cce482644df16efdee13a41b972882ceedee3e13c5d0ed2c5ed73b89e87252af5646f
|
7
|
+
data.tar.gz: acb1093acfc19e2f7a1355cac1a13600de0e3b238967cc95a7336bdbbd5d220bfa461098720f0c2eebff38e22c2cc79897012498448465b53390d7a20044f54d
|
data/README.md
CHANGED
@@ -1,15 +1,27 @@
|
|
1
1
|
# Best_Errors
|
2
2
|
|
3
|
-
##
|
3
|
+
## [better_errors](https://github.com/charliesome/better_errors) and [binding_of_caller](https://github.com/banister/binding_of_caller): together at last!
|
4
4
|
|
5
|
-
Tired of your fingers
|
5
|
+
Tired of wearing your fingers down to a nubbin from requiring **both** `better_errors` and `binding_of_caller` in the Gemfile for **every** Rails project?
|
6
6
|
|
7
7
|
Then this gem is for you!
|
8
8
|
|
9
9
|
# Installation
|
10
10
|
|
11
|
-
|
11
|
+
Put *this* in your Gemfile and bundle it:
|
12
12
|
|
13
|
+
```ruby
|
13
14
|
gem 'best_errors'
|
15
|
+
```
|
14
16
|
|
15
|
-
|
17
|
+
# What is [better_errors](https://github.com/charliesome/better_errors)?
|
18
|
+
|
19
|
+
It's a [beautiful](https://i.imgur.com/6zBGAAb.png) replacement for Rails' default error page.
|
20
|
+
|
21
|
+
# What is [binding_of_caller](https://github.com/banister/binding_of_caller)?
|
22
|
+
|
23
|
+
It's a gem that lets `better_errors` have a REPL on the errors page!
|
24
|
+
|
25
|
+
# O SHI!! THAT'S A WINNING COMBINATION!
|
26
|
+
|
27
|
+
I KNOW!
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: best_errors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Gahan
|
8
|
+
- Charlie Somerville
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
@@ -41,6 +42,7 @@ dependencies:
|
|
41
42
|
description: 'better_errors and binding_of_caller: together at last!'
|
42
43
|
email:
|
43
44
|
- chris@ill-logic.com
|
45
|
+
- charlie@charliesomerville.com
|
44
46
|
executables: []
|
45
47
|
extensions: []
|
46
48
|
extra_rdoc_files:
|
@@ -71,6 +73,7 @@ rubygems_version: 2.4.5
|
|
71
73
|
signing_key:
|
72
74
|
specification_version: 4
|
73
75
|
summary: Tired of your fingers being worn down to a nubbin from having to require
|
74
|
-
both better_errors and binding_of_caller in your Gemfile
|
76
|
+
both better_errors and binding_of_caller in your Gemfile for every Rails project?
|
77
|
+
Then this gem is for you!
|
75
78
|
test_files: []
|
76
79
|
has_rdoc:
|