safe_pusher 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/safe_pusher/rspec_runner.rb +3 -1
- data/lib/safe_pusher/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aaccf2d4580afb11b6d7f7fa4cb9e8ab9f4ef7d9
|
4
|
+
data.tar.gz: 11d63824b879d801afc5e93d5202890465fc56ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f53e3e4d17458c4fbedb3baa9027c7be47837aa57f0b8f5fcb3a7bc7433f76d22abccb25cea9570caa4b4a442569bd624285cd3ac7b9ea1316459e8dc6be89bc
|
7
|
+
data.tar.gz: 4daec10f29b4a88d9f85c84b5e4075c3f2eb4d10f7d535d7836640a30991169b379a3ecac7a358b996f7d178e52e20d2b5a1198968f74da21e340e3236e92ec0
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org)
|
4
4
|
|
5
|
+
## [0.1.3] - 2018-12-20
|
6
|
+
Bugfix:
|
7
|
+
- Do not take into account deleted files for rspec testing
|
8
|
+
|
5
9
|
## [0.1.2] - 2018-12-18
|
6
10
|
Bugfix:
|
7
11
|
- Remove dev dependency `pronto` to update `thor` version to 20.0
|
data/README.md
CHANGED
@@ -56,7 +56,7 @@ To run specs and pronto before to push on github run:
|
|
56
56
|
|
57
57
|
## Contributing
|
58
58
|
|
59
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
59
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/williampollet/safe_pusher. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
60
60
|
|
61
61
|
## License
|
62
62
|
|
@@ -24,7 +24,9 @@ module SafePusher
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def modified_files
|
27
|
-
|
27
|
+
diff = 'git diff --diff-filter=A --diff-filter=M --name-only'
|
28
|
+
|
29
|
+
`#{diff} $(git merge-base #{branch} master) #{branch}`
|
28
30
|
.split("\n")
|
29
31
|
.uniq
|
30
32
|
end
|
data/lib/safe_pusher/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: safe_pusher
|
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
|
- William Pollet
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-12-
|
11
|
+
date: 2018-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|