autowow 0.9.2 → 0.9.3
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/gem.rb +9 -4
- data/lib/autowow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d49aa6913b86fa938c73addb935897a158f5e9b
|
4
|
+
data.tar.gz: 61aa000900c16dd4231dd87ed373786ceb26975b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c58d772c2b16edc9b57b65c0724bc00510450c65e538974f97a758bc1c83322e9534fd3fbe59af4386b799962d4b11ec49481a6265ed8eba71aee12285ca111
|
7
|
+
data.tar.gz: 13cb9ccf373e4aff6fee56f54302c4c8f18faaf1b87e2d0befabfd7363d701090f4b893542afdfe392edc75da078c112ee02bc2dbe6f9bc39ad2bdd7628019c4
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
#### Set of commands to [auto]mate [w]ay [o]f [w]orking
|
4
4
|
|
5
|
-
*You are viewing the README of version [v0.9.
|
5
|
+
*You are viewing the README of version [v0.9.3](https://github.com/thisismydesign/autowow/releases/tag/v0.9.3). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
|
6
6
|
|
7
7
|
| Branch | Status |
|
8
8
|
| ------ | ------ |
|
data/lib/autowow/commands/gem.rb
CHANGED
@@ -2,7 +2,7 @@ module Autowow
|
|
2
2
|
module Commands
|
3
3
|
module Gem
|
4
4
|
def release
|
5
|
-
["rake", "release"]
|
5
|
+
be + ["rake", "release"]
|
6
6
|
end
|
7
7
|
|
8
8
|
def clean
|
@@ -10,17 +10,22 @@ module Autowow
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def rubocop_parallel
|
13
|
-
["rubocop", "--parallel"]
|
13
|
+
be + ["rubocop", "--parallel"]
|
14
14
|
end
|
15
15
|
|
16
16
|
def rubocop_autocorrect(files)
|
17
|
+
cmd = be + ["rubocop", "--auto-correct"]
|
17
18
|
if files.kind_of?(Array)
|
18
|
-
|
19
|
+
cmd + files
|
19
20
|
else
|
20
|
-
|
21
|
+
cmd + files.split(" ")
|
21
22
|
end
|
22
23
|
end
|
23
24
|
|
25
|
+
def be
|
26
|
+
["bundle", "exec"]
|
27
|
+
end
|
28
|
+
|
24
29
|
include ReflectionUtils::CreateModuleFunctions
|
25
30
|
end
|
26
31
|
end
|
data/lib/autowow/version.rb
CHANGED