autowow 0.13.1 → 0.13.2
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/features/gem.rb +1 -5
- 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: a1a6ccd72df2ce542966d7b2a766da1321c4f397987184502d9a7b567b65b755
|
4
|
+
data.tar.gz: 59e90d091887b3a82aad4b2e8abfe27da4a7706f7e93e139172c01acb20b1487
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9feee817631d88fde1b1a2525a99ef6aca90e88fd7373c71a2f7abcf3572db248fc2eaf0cd0eb6a7896d36a5d5171e635c214640c9c464c7c63ebb20ebdd682c
|
7
|
+
data.tar.gz: 7acd185539b4db1ad5ad9f4740ea4dbfcd23c820540c56deab38517c61c69f3765de0f0498f2d65b44c3f42888bf10f1516713470fda2b0dba4379396ba1c64a
|
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.2](https://github.com/thisismydesign/autowow/releases/tag/v0.13.2). 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/features/gem.rb
CHANGED
@@ -30,12 +30,8 @@ module Autowow
|
|
30
30
|
pretty.run("git commit -m \"Bumps version to v#{version}\"")
|
31
31
|
end
|
32
32
|
|
33
|
-
sleep 1
|
34
|
-
|
35
33
|
pretty.run(push)
|
36
34
|
|
37
|
-
sleep 1
|
38
|
-
|
39
35
|
Vcs.on_branch("release") do
|
40
36
|
pretty.run(pull)
|
41
37
|
pretty.run(rebase(start_branch))
|
@@ -108,7 +104,7 @@ module Autowow
|
|
108
104
|
end
|
109
105
|
|
110
106
|
def change_readme_version_information_to_development(version)
|
111
|
-
readme =
|
107
|
+
readme = "README.md"
|
112
108
|
return false unless File.file?(readme)
|
113
109
|
text = File.read(readme)
|
114
110
|
return false unless contains_version_information?(text)
|
data/lib/autowow/version.rb
CHANGED