render_me_pretty 0.8.3 → 0.8.4
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/.gitignore +1 -0
- data/CHANGELOG.md +3 -0
- data/README.md +2 -0
- data/lib/render_me_pretty/version.rb +1 -1
- data/lib/render_me_pretty.rb +2 -1
- metadata +3 -4
- data/Gemfile.lock +0 -52
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 568385d41ee6116a69769e93aef3da2540dd504313956a521938d5e8c85114dc
|
|
4
|
+
data.tar.gz: 6728276075074f49d08860f254d09a71e5a4adc24346c218cb5f9961a85c81da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06c70b6311b152a7725c200da4760678c2ba5bc12a3dc4a127a3e91a32be762df5e9717678973c9aeddfe054afdec4345911400d2aa7b221302af6437c9e7ce7
|
|
7
|
+
data.tar.gz: 40c6951774cc3de8106a5e96a9a75823fb0d9aebcd990b1db32d156474d85a1fb844ed6fc1f8ce85f3385a1d4768a4d5642fcc3a11bb16abfa2cbf8433fc2b2d
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.8.4] - 2021-12-28
|
|
7
|
+
- fix activesupport require
|
|
8
|
+
|
|
6
9
|
## [0.8.3]
|
|
7
10
|
- add .circleci/config.yml
|
|
8
11
|
- show full backtrace when error not found within users layout or project path
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://circleci.com/gh/tongueroo/render_me_pretty)
|
|
4
4
|
|
|
5
|
+
[](https://www.boltops.com)
|
|
6
|
+
|
|
5
7
|
Let's say you have an error in your ERB template:
|
|
6
8
|
|
|
7
9
|
```
|
data/lib/render_me_pretty.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: render_me_pretty
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -106,7 +106,6 @@ files:
|
|
|
106
106
|
- ".rspec"
|
|
107
107
|
- CHANGELOG.md
|
|
108
108
|
- Gemfile
|
|
109
|
-
- Gemfile.lock
|
|
110
109
|
- README.md
|
|
111
110
|
- Rakefile
|
|
112
111
|
- bin/console
|
|
@@ -137,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
136
|
- !ruby/object:Gem::Version
|
|
138
137
|
version: '0'
|
|
139
138
|
requirements: []
|
|
140
|
-
rubygems_version: 3.
|
|
139
|
+
rubygems_version: 3.2.32
|
|
141
140
|
signing_key:
|
|
142
141
|
specification_version: 4
|
|
143
142
|
summary: Render ERB template and provide more useful message pointing out the line
|
data/Gemfile.lock
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
render_me_pretty (0.8.2)
|
|
5
|
-
activesupport
|
|
6
|
-
rainbow
|
|
7
|
-
tilt
|
|
8
|
-
|
|
9
|
-
GEM
|
|
10
|
-
remote: https://rubygems.org/
|
|
11
|
-
specs:
|
|
12
|
-
activesupport (5.2.2)
|
|
13
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
-
i18n (>= 0.7, < 2)
|
|
15
|
-
minitest (~> 5.1)
|
|
16
|
-
tzinfo (~> 1.1)
|
|
17
|
-
concurrent-ruby (1.1.4)
|
|
18
|
-
diff-lcs (1.3)
|
|
19
|
-
i18n (1.5.3)
|
|
20
|
-
concurrent-ruby (~> 1.0)
|
|
21
|
-
minitest (5.11.3)
|
|
22
|
-
rainbow (3.0.0)
|
|
23
|
-
rake (12.3.2)
|
|
24
|
-
rspec (3.8.0)
|
|
25
|
-
rspec-core (~> 3.8.0)
|
|
26
|
-
rspec-expectations (~> 3.8.0)
|
|
27
|
-
rspec-mocks (~> 3.8.0)
|
|
28
|
-
rspec-core (3.8.0)
|
|
29
|
-
rspec-support (~> 3.8.0)
|
|
30
|
-
rspec-expectations (3.8.2)
|
|
31
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
32
|
-
rspec-support (~> 3.8.0)
|
|
33
|
-
rspec-mocks (3.8.0)
|
|
34
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
35
|
-
rspec-support (~> 3.8.0)
|
|
36
|
-
rspec-support (3.8.0)
|
|
37
|
-
thread_safe (0.3.6)
|
|
38
|
-
tilt (2.0.9)
|
|
39
|
-
tzinfo (1.2.5)
|
|
40
|
-
thread_safe (~> 0.1)
|
|
41
|
-
|
|
42
|
-
PLATFORMS
|
|
43
|
-
ruby
|
|
44
|
-
|
|
45
|
-
DEPENDENCIES
|
|
46
|
-
bundler
|
|
47
|
-
rake
|
|
48
|
-
render_me_pretty!
|
|
49
|
-
rspec
|
|
50
|
-
|
|
51
|
-
BUNDLED WITH
|
|
52
|
-
1.17.2
|