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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5113f6fcbc7bf8b34aab3bff299fb3791b4d2a7f9e7f3079638e981a5ee38bb
4
- data.tar.gz: d1be7dc5df735c9cb11e7502299a01116c035e477cd3f63805a8560f2c83cc27
3
+ metadata.gz: 568385d41ee6116a69769e93aef3da2540dd504313956a521938d5e8c85114dc
4
+ data.tar.gz: 6728276075074f49d08860f254d09a71e5a4adc24346c218cb5f9961a85c81da
5
5
  SHA512:
6
- metadata.gz: 41cc2f8f88c9f9b4e630c679469aecb73980d96d1c52cb2b72ce190fa101d7d7288596d717167c4893aa4fade2612409bb4b50b3137df38d44c9a23a3c5c27ac
7
- data.tar.gz: 67a9a575c7c65e682f90d0216abb8302ab7489baa52d23e7cc3c61407e8da74fa9e8a5fa9b27e872780822f6a188379ae7966b3641174ba4191399146227df01
6
+ metadata.gz: 06c70b6311b152a7725c200da4760678c2ba5bc12a3dc4a127a3e91a32be762df5e9717678973c9aeddfe054afdec4345911400d2aa7b221302af6437c9e7ce7
7
+ data.tar.gz: 40c6951774cc3de8106a5e96a9a75823fb0d9aebcd990b1db32d156474d85a1fb844ed6fc1f8ce85f3385a1d4768a4d5642fcc3a11bb16abfa2cbf8433fc2b2d
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /Gemfile.lock
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
  [![CircleCI](https://circleci.com/gh/tongueroo/render_me_pretty.svg?style=svg)](https://circleci.com/gh/tongueroo/render_me_pretty)
4
4
 
5
+ [![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
6
+
5
7
  Let's say you have an error in your ERB template:
6
8
 
7
9
  ```
@@ -1,3 +1,3 @@
1
1
  module RenderMePretty
2
- VERSION = "0.8.3"
2
+ VERSION = "0.8.4"
3
3
  end
@@ -1,6 +1,7 @@
1
1
  require "render_me_pretty/version"
2
+ require "active_support"
2
3
  require "active_support/core_ext/string"
3
- require 'rainbow/ext/string'
4
+ require "rainbow/ext/string"
4
5
 
5
6
  module RenderMePretty
6
7
  autoload :Erb, 'render_me_pretty/erb'
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.3
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: 2019-08-30 00:00:00.000000000 Z
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.0.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