autowow 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4b3309f619ca4baf499219fd8e1e04d8e8247004
4
- data.tar.gz: 438a31345e2e097e5d761873d8a6c59b73b259b7
2
+ SHA256:
3
+ metadata.gz: 0bce380bd0aa38446396ee3af9e6605bc5ae9c559e0270e18439d28c6746ea62
4
+ data.tar.gz: 63127f7f4a9d5e64d165df80925b9d4815ab646216dad972004e73a5d1030cac
5
5
  SHA512:
6
- metadata.gz: 50ac03ebad0a1874e197830b08450edddbd8ffec1019a8de7394531b57dfa938e7d3f129bc3173ddf09b8dde629387f63c30b2b258218c2ccfa44a2b0d61d0d0
7
- data.tar.gz: 474a4fd4be7b9acf1dd33b938c40a627cda7a3ac846e7af17ceefa5f85569314e9e14fdc61e0cc7791e68e185a5da6a8b3eb9bf12768be0bc1153d78d70407b8
6
+ metadata.gz: de67e3705ec4e6fd6718a15038e93d62726636b62ef4eefc6a38e2277f89c85e936dfe97b30baec4d66d515bfc9e72037056bd3c3319b7378788cf81828b0795
7
+ data.tar.gz: fffb08eaf7af7c139494d8a579b6a69634ccc98faa30f9584a2b462479e31f7f7af3eaae12e3839ce4e98dec04b7cc0480f117282bb09b642032d4932c02b637
data/.gitignore CHANGED
@@ -1,14 +1,14 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
-
11
- # rspec failure tracking
12
- .rspec_status
13
-
14
- .idea
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+
14
+ .idea
data/.rspec CHANGED
@@ -1,2 +1,2 @@
1
- --format documentation
2
- --color
1
+ --format documentation
2
+ --color
data/.rubocop.yml CHANGED
@@ -1,117 +1,119 @@
1
- AllCops:
2
- DisabledByDefault: true
3
- DisplayCopNames: true
4
- Exclude:
5
- - doc/**/*
6
- - vendor/**/*
7
- - spec/fixtures/**/*
8
- TargetRubyVersion: 2.3
9
- Layout/CaseIndentation:
10
- Enabled: true
11
- IndentOneStep: false
12
- Layout/EmptyLineBetweenDefs:
13
- Enabled: true
14
- AllowAdjacentOneLineDefs: true
15
- Layout/EmptyLines:
16
- Enabled: true
17
- Layout/EmptyLinesAroundBeginBody:
18
- Enabled: true
19
- Layout/EmptyLinesAroundBlockBody:
20
- Enabled: true
21
- EnforcedStyle: no_empty_lines
22
- Layout/EmptyLinesAroundClassBody:
23
- Enabled: true
24
- Layout/EmptyLinesAroundMethodBody:
25
- Enabled: true
26
- Layout/EmptyLinesAroundModuleBody:
27
- Enabled: true
28
- Layout/ExtraSpacing:
29
- Exclude:
30
- - Gemfile
31
- Layout/FirstParameterIndentation:
32
- Enabled: true
33
- Layout/IndentationConsistency:
34
- Enabled: true
35
- Layout/IndentationWidth:
36
- Enabled: true
37
- Exclude:
38
- - spec/**/*
39
- Layout/MultilineMethodCallIndentation:
40
- EnforcedStyle: indented_relative_to_receiver
41
- IndentationWidth: 2
42
- Layout/MultilineOperationIndentation:
43
- EnforcedStyle: indented
44
- Layout/SpaceAfterColon:
45
- Enabled: true
46
- Layout/SpaceAfterComma:
47
- Enabled: true
48
- Layout/SpaceAroundEqualsInParameterDefault:
49
- Enabled: true
50
- Layout/SpaceAroundKeyword:
51
- Enabled: true
52
- Layout/SpaceAroundOperators:
53
- Enabled: true
54
- Layout/SpaceBeforeBlockBraces:
55
- Enabled: true
56
- Layout/SpaceBeforeFirstArg:
57
- Enabled: true
58
- Layout/SpaceInsideBlockBraces:
59
- Enabled: true
60
- Layout/SpaceInsideHashLiteralBraces:
61
- Enabled: true
62
- Layout/SpaceInsideParens:
63
- Enabled: true
64
- Layout/Tab:
65
- Enabled: true
66
- Layout/TrailingBlankLines:
67
- Enabled: true
68
- Layout/TrailingWhitespace:
69
- Enabled: true
70
- Lint/EndAlignment:
71
- Enabled: true
72
- EnforcedStyleAlignWith: variable
73
- Lint/RequireParentheses:
74
- Enabled: true
75
- Metrics/AbcSize:
76
- Max: 62
77
- Metrics/ClassLength:
78
- CountComments: false
79
- Max: 1000
80
- Metrics/LineLength:
81
- Exclude:
82
- - spec/**/*
83
- Max: 318
84
- Metrics/MethodLength:
85
- Max: 70
86
- Metrics/ModuleLength:
87
- CountComments: false
88
- Max: 1000
89
- Rails:
90
- Enabled: true
91
- Style/AndOr:
92
- EnforcedStyle: conditionals
93
- Style/BlockDelimiters:
94
- EnforcedStyle: braces_for_chaining
95
- Style/BracesAroundHashParameters:
96
- Enabled: true
97
- EnforcedStyle: context_dependent
98
- Style/ConditionalAssignment:
99
- EnforcedStyle: assign_to_condition
100
- Style/HashSyntax:
101
- Enabled: true
102
- Style/MethodDefParentheses:
103
- Enabled: true
104
- Style/RedundantReturn:
105
- AllowMultipleReturnValues: true
106
- Enabled: true
107
- Style/RegexpLiteral:
108
- EnforcedStyle: percent_r
109
- Style/Semicolon:
110
- AllowAsExpressionSeparator: true
111
- Enabled: true
112
- Style/StringLiterals:
113
- Enabled: true
114
- EnforcedStyle: single_quotes
115
- Style/TrivialAccessors:
116
- Enabled: true
1
+ AllCops:
2
+ DisabledByDefault: true
3
+ DisplayCopNames: true
4
+ Exclude:
5
+ - doc/**/*
6
+ - vendor/**/*
7
+ - spec/fixtures/**/*
8
+ - "*.gemspec"
9
+ - Gemfile*
10
+ TargetRubyVersion: 2.3
11
+ Layout/CaseIndentation:
12
+ Enabled: true
13
+ IndentOneStep: false
14
+ Layout/EmptyLineBetweenDefs:
15
+ Enabled: true
16
+ AllowAdjacentOneLineDefs: true
17
+ Layout/EmptyLines:
18
+ Enabled: true
19
+ Layout/EmptyLinesAroundBeginBody:
20
+ Enabled: true
21
+ Layout/EmptyLinesAroundBlockBody:
22
+ Enabled: true
23
+ EnforcedStyle: no_empty_lines
24
+ Layout/EmptyLinesAroundClassBody:
25
+ Enabled: true
26
+ Layout/EmptyLinesAroundMethodBody:
27
+ Enabled: true
28
+ Layout/EmptyLinesAroundModuleBody:
29
+ Enabled: true
30
+ Layout/ExtraSpacing:
31
+ Exclude:
32
+ - Gemfile
33
+ Layout/FirstParameterIndentation:
34
+ Enabled: true
35
+ Layout/IndentationConsistency:
36
+ Enabled: true
37
+ Layout/IndentationWidth:
38
+ Enabled: true
39
+ Exclude:
40
+ - spec/**/*
41
+ Layout/MultilineMethodCallIndentation:
42
+ EnforcedStyle: indented_relative_to_receiver
43
+ IndentationWidth: 2
44
+ Layout/MultilineOperationIndentation:
45
+ EnforcedStyle: indented
46
+ Layout/SpaceAfterColon:
47
+ Enabled: true
48
+ Layout/SpaceAfterComma:
49
+ Enabled: true
50
+ Layout/SpaceAroundEqualsInParameterDefault:
51
+ Enabled: true
52
+ Layout/SpaceAroundKeyword:
53
+ Enabled: true
54
+ Layout/SpaceAroundOperators:
55
+ Enabled: true
56
+ Layout/SpaceBeforeBlockBraces:
57
+ Enabled: true
58
+ Layout/SpaceBeforeFirstArg:
59
+ Enabled: true
60
+ Layout/SpaceInsideBlockBraces:
61
+ Enabled: true
62
+ Layout/SpaceInsideHashLiteralBraces:
63
+ Enabled: true
64
+ Layout/SpaceInsideParens:
65
+ Enabled: true
66
+ Layout/Tab:
67
+ Enabled: true
68
+ Layout/TrailingBlankLines:
69
+ Enabled: true
70
+ Layout/TrailingWhitespace:
71
+ Enabled: true
72
+ Lint/EndAlignment:
73
+ Enabled: true
74
+ EnforcedStyleAlignWith: variable
75
+ Lint/RequireParentheses:
76
+ Enabled: true
77
+ Metrics/AbcSize:
78
+ Max: 62
79
+ Metrics/ClassLength:
80
+ CountComments: false
81
+ Max: 1000
82
+ Metrics/LineLength:
83
+ Exclude:
84
+ - spec/**/*
85
+ Max: 318
86
+ Metrics/MethodLength:
87
+ Max: 70
88
+ Metrics/ModuleLength:
89
+ CountComments: false
90
+ Max: 1000
91
+ Rails:
92
+ Enabled: true
93
+ Style/AndOr:
94
+ EnforcedStyle: conditionals
95
+ Style/BlockDelimiters:
96
+ EnforcedStyle: braces_for_chaining
97
+ Style/BracesAroundHashParameters:
98
+ Enabled: true
99
+ EnforcedStyle: context_dependent
100
+ Style/ConditionalAssignment:
101
+ EnforcedStyle: assign_to_condition
102
+ Style/HashSyntax:
103
+ Enabled: true
104
+ Style/MethodDefParentheses:
105
+ Enabled: true
106
+ Style/RedundantReturn:
107
+ AllowMultipleReturnValues: true
108
+ Enabled: true
109
+ Style/RegexpLiteral:
110
+ EnforcedStyle: percent_r
111
+ Style/Semicolon:
112
+ AllowAsExpressionSeparator: true
113
+ Enabled: true
114
+ Style/StringLiterals:
115
+ Enabled: true
116
+ EnforcedStyle: double_quotes
117
+ Style/TrivialAccessors:
118
+ Enabled: true
117
119
  ExactNameMatch: true
data/.travis.yml CHANGED
@@ -1,11 +1,11 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.1
5
- before_install:
6
- - gem install bundler -v 1.15.3
7
- # To have access to the whole repo
8
- - git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
9
- - git fetch --unshallow --tags
10
- # To no longer be in a detached HEAD state
11
- - git symbolic-ref --short HEAD || git checkout -b ${TRAVIS_BRANCH}-test $TRAVIS_BRANCH
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install:
6
+ - gem install bundler -v 1.15.3
7
+ # To have access to the whole repo
8
+ - git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
9
+ - git fetch --unshallow --tags
10
+ # To no longer be in a detached HEAD state
11
+ - git symbolic-ref --short HEAD || git checkout -b ${TRAVIS_BRANCH}-test $TRAVIS_BRANCH
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
- source "https://rubygems.org"
2
-
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
-
5
- # Specify your gem's dependencies in autowow.gemspec
6
- gemspec
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in autowow.gemspec
6
+ gemspec
data/Guardfile CHANGED
@@ -1,22 +1,22 @@
1
- guard 'bundler' do
2
- watch('Gemfile')
3
- watch(%r{^(.+)\.gemspec$})
4
- end
5
-
6
- rspec_prefix = File.file?('bin/spring') ? 'bundle exec spring' : 'bundle exec'
7
- guard 'rspec', cmd: "#{rspec_prefix} rspec #{ENV['FOCUS']}", all_after_pass: ENV['FOCUS'].nil? do
8
- watch(%r{^spec/.+_spec\.rb$})
9
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
10
- watch('spec/spec_helper.rb') { 'spec' }
11
-
12
- watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
13
- watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
14
- watch(%r{^app/models/(.+)\.rb$}) { |m| "spec/builders/#{m[1]}_builder_spec.rb" }
15
- watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
16
- watch(%r{^spec/support/(.+)\.rb$}) { 'spec' }
17
- watch(%r{^spec/factories/(.+)\.rb$}) { 'spec' }
18
- watch('config/routes.rb') { 'spec/routing' }
19
- watch('app/controllers/application_controller.rb') { 'spec/controllers' }
20
-
21
- watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/requests/#{m[1]}_spec.rb" }
22
- end
1
+ guard "bundler" do
2
+ watch("Gemfile")
3
+ watch(%r{^(.+)\.gemspec$})
4
+ end
5
+
6
+ rspec_prefix = File.file?("bin/spring") ? "bundle exec spring" : "bundle exec"
7
+ guard "rspec", cmd: "#{rspec_prefix} rspec #{ENV['FOCUS']}", all_after_pass: ENV["FOCUS"].nil? do
8
+ watch(%r{^spec/.+_spec\.rb$})
9
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
10
+ watch("spec/spec_helper.rb") { "spec" }
11
+
12
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
13
+ watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
14
+ watch(%r{^app/models/(.+)\.rb$}) { |m| "spec/builders/#{m[1]}_builder_spec.rb" }
15
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
16
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
17
+ watch(%r{^spec/factories/(.+)\.rb$}) { "spec" }
18
+ watch("config/routes.rb") { "spec/routing" }
19
+ watch("app/controllers/application_controller.rb") { "spec/controllers" }
20
+
21
+ watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/requests/#{m[1]}_spec.rb" }
22
+ end
data/LICENSE.txt CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2017 Csaba Apagyi
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Csaba Apagyi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -1,139 +1,143 @@
1
- # Autowow
2
-
3
- #### Set of commands to AUTOmate Way Of Working
4
-
5
- | Branch | Status |
6
- | ------ | ------ |
7
- | Release | [![Build Status](https://travis-ci.org/thisismydesign/autowow.svg?branch=release)](https://travis-ci.org/thisismydesign/autowow) [![Coverage Status](https://coveralls.io/repos/github/thisismydesign/autowow/badge.svg?branch=release)](https://coveralls.io/github/thisismydesign/autowow?branch=release) [![Gem Version](https://badge.fury.io/rb/autowow.svg)](https://badge.fury.io/rb/autowow) [![Total Downloads](http://ruby-gem-downloads-badge.herokuapp.com/autowow?type=total)](https://rubygems.org/gems/autowow) |
8
- | Development | [![Build Status](https://travis-ci.org/thisismydesign/autowow.svg?branch=master)](https://travis-ci.org/thisismydesign/autowow) [![Coverage Status](https://coveralls.io/repos/github/thisismydesign/autowow/badge.svg?branch=master)](https://coveralls.io/github/thisismydesign/autowow?branch=master) |
9
-
10
- ## Usage
11
-
12
- Install from source as `rake install`.
13
-
14
- Run `autowow` or `aw` to see available commands.
15
-
16
- *Disclaimer: Use it on your own responsibility. Some commands may be tailored to my use case but as always pull requests and issues are welcomed.*
17
-
18
- ## Commands
19
-
20
- Commands in general
21
- * start by outputting the status before execution
22
- * end by outputting the status after execution
23
- * are safe
24
- * only touch files via other commands (e.g. `git`)
25
- * do not cause conflicted state
26
- * hard check for prerequisites
27
- * store and restore uncommitted changes
28
- * output executed commands that cause any change
29
- * execute in current directory
30
- * retain original output color
31
-
32
- ### VCS
33
-
34
- Commands related to version control systems.
35
- Currently only Git and the GitHub API are supported.
36
-
37
- #### Branch merged
38
-
39
- * Switches to master and pulls your merged changes
40
- * Removes local working branch
41
-
42
- Prerequisites: not on master
43
-
44
- #### Update projects
45
-
46
- * Updates local repositories
47
- * Updates remote forks
48
- * Searches for repositories on paths: `.`, `./*/`
49
-
50
- Prerequisites: no uncommitted changes on master
51
-
52
- #### Clear branches
53
-
54
- * Removes branches without not pushed changes
55
- * Keeps current and master branches
56
-
57
- #### Add upstream
58
-
59
- * Adds parent repository as remote 'upstream'
60
-
61
- Prerequisites: doesn't have remote called 'upstream'
62
-
63
- #### Hi
64
-
65
- Day starter routine
66
-
67
- * Updates projects (runs 'Update projects')
68
- * Shows latest and deprecated repos
69
- * Shows deprecated Ruby versions
70
-
71
- Prerequisites: in a directory that contains git repos, not in the repo itself
72
-
73
- #### Hi!
74
-
75
- Day starter routine for a new start
76
-
77
- * Runs 'Add upstream' and 'Clear branches' for all projects
78
- * Runs 'Hi'
79
-
80
- #### Open
81
-
82
- * Opens project in browser
83
-
84
- ### Gem
85
-
86
- #### Gem release
87
-
88
- * Rebases `release` branch to master
89
- * Releases gem via `rake release`
90
-
91
- Prerequisites: on master
92
-
93
- #### Gem clean
94
-
95
- * Removes unused gems
96
-
97
- #### Rubocop parallel autocorrect
98
-
99
- * Runs `rubocop` in parallel mode, autocorrects offenses on single thread
100
-
101
- ### Ruby
102
-
103
- #### Ruby versions
104
-
105
- * Shows Ruby versions in use
106
- * Searches for repositories on paths: `.`, `./*/`
107
-
108
- ### Misc
109
-
110
- #### Execute
111
-
112
- * Executes given command
113
-
114
- ## Feedback
115
-
116
- Any feedback is much appreciated.
117
-
118
- I can only tailor this project to fit use-cases I know about - which are usually my own ones. If you find that this might be the right direction to solve your problem too but you find that it's suboptimal or lacks features don't hesitate to contact me.
119
-
120
- Please let me know if you make use of this project so that I can prioritize further efforts.
121
-
122
- ## Conventions
123
-
124
- This gem is developed using the following conventions:
125
- - [Bundler's guide for developing a gem](http://bundler.io/v1.14/guides/creating_gem.html)
126
- - [Better Specs](http://www.betterspecs.org/)
127
- - [Semantic versioning](http://semver.org/)
128
- - [RubyGems' guide on gem naming](http://guides.rubygems.org/name-your-gem/)
129
- - [RFC memo about key words used to Indicate Requirement Levels](https://tools.ietf.org/html/rfc2119)
130
- - [Bundler improvements](https://github.com/thisismydesign/bundler-improvements)
131
- - [Minimal dependencies](http://www.mikeperham.com/2016/02/09/kill-your-dependencies/)
132
-
133
- ## Contributing
134
-
135
- Bug reports and pull requests are welcome on GitHub at https://github.com/thisismydesign/autowow.
136
-
137
- ## License
138
-
139
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
1
+ # Autowow
2
+
3
+ #### Set of commands to AUTOmate Way Of Working
4
+
5
+ *You are viewing the README of version [v0.8.1](https://github.com/thisismydesign/autowow/releases/tag/v0.8.1). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
6
+
7
+ | Branch | Status |
8
+ | ------ | ------ |
9
+ | Release | [![Build Status](https://travis-ci.org/thisismydesign/autowow.svg?branch=release)](https://travis-ci.org/thisismydesign/autowow) [![Coverage Status](https://coveralls.io/repos/github/thisismydesign/autowow/badge.svg?branch=release)](https://coveralls.io/github/thisismydesign/autowow?branch=release) [![Gem Version](https://badge.fury.io/rb/autowow.svg)](https://badge.fury.io/rb/autowow) [![Total Downloads](http://ruby-gem-downloads-badge.herokuapp.com/autowow?type=total)](https://rubygems.org/gems/autowow) |
10
+ | Development | [![Build Status](https://travis-ci.org/thisismydesign/autowow.svg?branch=master)](https://travis-ci.org/thisismydesign/autowow) [![Coverage Status](https://coveralls.io/repos/github/thisismydesign/autowow/badge.svg?branch=master)](https://coveralls.io/github/thisismydesign/autowow?branch=master) [![Bountysource](https://api.bountysource.com/badge/issue?issue_id=52798961)](https://www.bountysource.com/issues/52798961-all-changes-have-been-pushed-doesn-t-take-uncommitted-changes-into-account?utm_source=52798961&utm_medium=shield&utm_campaign=ISSUE_BADGE) |
11
+
12
+ ## Usage
13
+
14
+ Install from source as `rake install`.
15
+
16
+ Run `autowow` or `aw` to see available commands.
17
+
18
+ *Disclaimer: Use it on your own responsibility. Some commands may be tailored to my use case but as always pull requests and issues are welcomed.*
19
+
20
+ ## Commands
21
+
22
+ Commands in general
23
+ * start by outputting the status before execution
24
+ * end by outputting the status after execution
25
+ * are safe
26
+ * only touch files via other commands (e.g. `git`)
27
+ * do not cause conflicted state
28
+ * hard check for prerequisites
29
+ * store and restore uncommitted changes
30
+ * output executed commands that cause any change
31
+ * execute in current directory
32
+ * retain original output color
33
+
34
+ ### VCS
35
+
36
+ Commands related to version control systems.
37
+ Currently only Git and the GitHub API are supported.
38
+
39
+ #### Branch merged
40
+
41
+ * Switches to master and pulls your merged changes
42
+ * Removes local working branch
43
+
44
+ Prerequisites: not on master
45
+
46
+ #### Update projects
47
+
48
+ * Updates local repositories
49
+ * Updates remote forks
50
+ * Searches for repositories on paths: `.`, `./*/`
51
+
52
+ Prerequisites: no uncommitted changes on master
53
+
54
+ #### Clear branches
55
+
56
+ * Removes branches without not pushed changes
57
+ * Keeps current and master branches
58
+
59
+ #### Add upstream
60
+
61
+ * Adds parent repository as remote 'upstream'
62
+
63
+ Prerequisites: doesn't have remote called 'upstream'
64
+
65
+ #### Hi
66
+
67
+ Day starter routine
68
+
69
+ * Updates projects (runs 'Update projects')
70
+ * Shows latest and deprecated repos
71
+ * Shows deprecated Ruby versions
72
+
73
+ Prerequisites: in a directory that contains git repos, not in the repo itself
74
+
75
+ #### Hi!
76
+
77
+ Day starter routine for a new start
78
+
79
+ * Runs 'Add upstream' and 'Clear branches' for all projects
80
+ * Runs 'Hi'
81
+
82
+ #### Open
83
+
84
+ * Opens project in browser
85
+
86
+ ### Gem
87
+
88
+ #### Gem release
89
+
90
+ * Rebases `release` branch to master
91
+ * Releases gem via `rake release`
92
+
93
+ Prerequisites: on master
94
+
95
+ #### Gem clean
96
+
97
+ * Removes unused gems
98
+
99
+ #### Rubocop parallel autocorrect
100
+
101
+ `aw rpa` / `aw rubocop_parallel_autocorrect`
102
+
103
+ * Runs `rubocop` in parallel mode, autocorrects offenses on single thread
104
+
105
+ ### Ruby
106
+
107
+ #### Ruby versions
108
+
109
+ * Shows Ruby versions in use
110
+ * Searches for repositories on paths: `.`, `./*/`
111
+
112
+ ### Misc
113
+
114
+ #### Execute
115
+
116
+ * Executes given command
117
+
118
+ ## Feedback
119
+
120
+ Any feedback is much appreciated.
121
+
122
+ I can only tailor this project to fit use-cases I know about - which are usually my own ones. If you find that this might be the right direction to solve your problem too but you find that it's suboptimal or lacks features don't hesitate to contact me.
123
+
124
+ Please let me know if you make use of this project so that I can prioritize further efforts.
125
+
126
+ ## Conventions
127
+
128
+ This gem is developed using the following conventions:
129
+ - [Bundler's guide for developing a gem](http://bundler.io/v1.14/guides/creating_gem.html)
130
+ - [Better Specs](http://www.betterspecs.org/)
131
+ - [Semantic versioning](http://semver.org/)
132
+ - [RubyGems' guide on gem naming](http://guides.rubygems.org/name-your-gem/)
133
+ - [RFC memo about key words used to Indicate Requirement Levels](https://tools.ietf.org/html/rfc2119)
134
+ - [Bundler improvements](https://github.com/thisismydesign/bundler-improvements)
135
+ - [Minimal dependencies](http://www.mikeperham.com/2016/02/09/kill-your-dependencies/)
136
+
137
+ ## Contributing
138
+
139
+ Bug reports and pull requests are welcome on GitHub at https://github.com/thisismydesign/autowow.
140
+
141
+ ## License
142
+
143
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).