dead_end 1.1.2 → 1.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/.circleci/config.yml +9 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/lib/dead_end/auto.rb +2 -0
- data/lib/dead_end/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00641720122b144830e8eccf13485745712d861158a7b928969cfcbadb52d53e
|
|
4
|
+
data.tar.gz: b9f874797083cca9ac2925023890553f1af3cbafbd52e6719a073de9b236bad7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9cfe06766beb27cc43a7197a665e9245c2b1de0343679699c98f047afb207ad64a52855102e9fda5071c7ad7ca767fc2b29f986eb6f030250e9613c0615d879
|
|
7
|
+
data.tar.gz: c19544c98f18954a5166c88bcc2987ee9e30db2344753f8aa1cc85645e4328bcc2442fd0b495c5c4bbd19af094760cfa180a1c4f017f395941cd844c3274ad70
|
data/.circleci/config.yml
CHANGED
|
@@ -32,6 +32,14 @@ jobs:
|
|
|
32
32
|
- ruby/install-deps
|
|
33
33
|
- <<: *unit
|
|
34
34
|
|
|
35
|
+
"ruby-3-0":
|
|
36
|
+
docker:
|
|
37
|
+
- image: circleci/ruby:3.0
|
|
38
|
+
steps:
|
|
39
|
+
- checkout
|
|
40
|
+
- ruby/install-deps
|
|
41
|
+
- <<: *unit
|
|
42
|
+
|
|
35
43
|
workflows:
|
|
36
44
|
version: 2
|
|
37
45
|
build:
|
|
@@ -39,3 +47,4 @@ workflows:
|
|
|
39
47
|
- "ruby-2-5"
|
|
40
48
|
- "ruby-2-6"
|
|
41
49
|
- "ruby-2-7"
|
|
50
|
+
- "ruby-3-0"
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/lib/dead_end/auto.rb
CHANGED
|
@@ -5,6 +5,8 @@ require_relative "../dead_end/internals"
|
|
|
5
5
|
# Monkey patch kernel to ensure that all `require` calls call the same
|
|
6
6
|
# method
|
|
7
7
|
module Kernel
|
|
8
|
+
module_function
|
|
9
|
+
|
|
8
10
|
alias_method :dead_end_original_require, :require
|
|
9
11
|
alias_method :dead_end_original_require_relative, :require_relative
|
|
10
12
|
alias_method :dead_end_original_load, :load
|
data/lib/dead_end/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dead_end
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- schneems
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: When you get an "unexpected end" in your syntax this gem helps you find
|
|
14
14
|
it
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
|
-
rubygems_version: 3.
|
|
79
|
+
rubygems_version: 3.2.3
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: Find syntax errors in your source in a snap
|