sane_patch 0.2.0 → 1.0.0
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/CHANGELOG.md +2 -1
- data/README.md +3 -3
- data/lib/sane_patch/version.rb +1 -1
- data/sane_patch.gemspec +1 -1
- metadata +2 -3
- data/logo.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17e67264f9b8595cd3f00aa1ec2163847d41f0c354b2a4e8d92cf5ff54c04888
|
4
|
+
data.tar.gz: 944d279a68fada4ad36bfc02438a515f1d0f74d2396ed22d69377bc91611919e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d4588c9a8dc027e99aa61704010dabfd9ac1a7c16744bba4d5aab1a0c4a3b1a6b1b296b189c16389900d88ac39861fd1ec1f0d924ce19fe7f623c430a525630
|
7
|
+
data.tar.gz: 5efadc3d60d64b8bbcd7c67c42d6301aa37a9733395a83bd2f93553cbc5d0290dab7cf88f8efbf0d3e15f46535c7350e4922d066bc3907e58907fe26c5eefae6
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
-
## [
|
7
|
+
## [1.0.0] - 2020-02-09
|
8
|
+
No Changes.
|
8
9
|
|
9
10
|
## [0.2.0] - 2019-06-25
|
10
11
|
### Added
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
<img src="https://raw.githubusercontent.com/Jcambass/sane_patch/master/logo.png" width="100" height="100">
|
1
|
+
<img src="https://raw.githubusercontent.com/Jcambass/sane_patch/master/assets/logo.png" width="100" height="100">
|
2
2
|
|
3
|
-
# SanePatch
|
3
|
+
# SanePatch [](https://badge.fury.io/rb/sane_patch) [](https://travis-ci.com/Jcambass/sane_patch)
|
4
4
|
|
5
5
|
SanePatch is a simple and non intrusive helper that aims to make monkey patching a little bit safer.
|
6
6
|
|
@@ -20,7 +20,7 @@ Good reasons to monkey patch a gem could be:
|
|
20
20
|
Add this line to your application's Gemfile:
|
21
21
|
|
22
22
|
```ruby
|
23
|
-
gem 'sane_patch'
|
23
|
+
gem 'sane_patch', '~> 0.2'
|
24
24
|
```
|
25
25
|
|
26
26
|
And then execute:
|
data/lib/sane_patch/version.rb
CHANGED
data/sane_patch.gemspec
CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
# Specify which files should be added to the gem when it is released.
|
28
28
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
29
29
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
30
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
30
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|assets)/}) }
|
31
31
|
end
|
32
32
|
spec.bindir = "exe"
|
33
33
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sane_patch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Ambass
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -72,7 +72,6 @@ files:
|
|
72
72
|
- Rakefile
|
73
73
|
- lib/sane_patch.rb
|
74
74
|
- lib/sane_patch/version.rb
|
75
|
-
- logo.png
|
76
75
|
- sane_patch.gemspec
|
77
76
|
homepage: https://github.com/Jcambass/sane_patch
|
78
77
|
licenses:
|
data/logo.png
DELETED
Binary file
|