autowow 0.13.0 → 0.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/autowow/commands/vcs.rb +1 -1
- data/lib/autowow/features/gem.rb +6 -2
- data/lib/autowow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48b9dcd128e7124a4239b77f9cf02d289f652f8f3aa13cfab1a6c525f9ffc8a2
|
4
|
+
data.tar.gz: 162427e7950474317bf41ade736b843b6afb2d2df722f81a166d9a0187075546
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2229e37fff50e3a1fa7873f69f5495aa63d414757fa0a543fa66dfe6c60af5d06885d6ca738d650250b6a13f03d7ed7d50f2ab576826842c018b255e1e082615
|
7
|
+
data.tar.gz: fbac872f20efba9f65cabd1790cdb948ffc017e763e3073014dd65765e924b719117c883055da3dc96bcb1cbcf84810458051066ab7e155e6badd97ccc62bb4e
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
#### Set of commands to [auto]mate [w]ay [o]f [w]orking
|
4
4
|
|
5
5
|
<!--- Version informartion -->
|
6
|
-
*You are viewing the README of version [v0.13.
|
6
|
+
*You are viewing the README of version [v0.13.1](https://github.com/thisismydesign/autowow/releases/tag/v0.13.1). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
|
7
7
|
<!--- Version informartion end -->
|
8
8
|
|
9
9
|
| Branch | Status |
|
data/lib/autowow/commands/vcs.rb
CHANGED
data/lib/autowow/features/gem.rb
CHANGED
@@ -30,8 +30,12 @@ module Autowow
|
|
30
30
|
pretty.run("git commit -m \"Bumps version to v#{version}\"")
|
31
31
|
end
|
32
32
|
|
33
|
+
sleep 1
|
34
|
+
|
33
35
|
pretty.run(push)
|
34
36
|
|
37
|
+
sleep 1
|
38
|
+
|
35
39
|
Vcs.on_branch("release") do
|
36
40
|
pretty.run(pull)
|
37
41
|
pretty.run(rebase(start_branch))
|
@@ -81,8 +85,8 @@ module Autowow
|
|
81
85
|
end
|
82
86
|
|
83
87
|
def bump_readme_version_information(version)
|
84
|
-
readme =
|
85
|
-
return unless File.
|
88
|
+
readme = "README.md"
|
89
|
+
return unless File.exists?(readme)
|
86
90
|
text = File.read(readme)
|
87
91
|
return unless contains_version_information?(text)
|
88
92
|
|
data/lib/autowow/version.rb
CHANGED