autowow 0.9.6 → 0.10.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
2
  SHA1:
3
- metadata.gz: 475fc48c1167d733a6ad51b87386286a2ab4e590
4
- data.tar.gz: a6432265b980ab8cdeef327fc834b32118632e0f
3
+ metadata.gz: 4fb143a2950ff3c8ec4af7d7c8dd4aa7cc46d579
4
+ data.tar.gz: dcdd28615d51b584457eaebe98fb2ca21231e631
5
5
  SHA512:
6
- metadata.gz: 8e79814e744d6b871dd7908885fc35bb888a444bd1e3383776e5a51dd911701f14f97351d684545dedf212e2e17a64afc63408e95f1485cd74c914ed13e7f5ea
7
- data.tar.gz: 5a03fc636bccdcc46fd4f58dffadf0168e0845a8416c36f1e119665794b9b2aec303256120f8bb6211952b8ef8d4b6c2232cac95083a39aac9b7b89e6be1c4dd
6
+ metadata.gz: 266f28df2ad54829409eb2a7e5ab002271ce23f5ef989288db5a9d81f1f10d00504255600688f50cce219e9cd2363790912a7c4ad4fcbe94892f69015dc16eab
7
+ data.tar.gz: 572c6e0045d968b3b99ccd6d297faaac7fcb9e3cdf17f48e01ccb253ce8f0816576bac1e5131ef4b753d87a57dfe4ae67c81870f4a63a035070a3d6e6a14b6a9
data/README.md CHANGED
@@ -3,9 +3,11 @@
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.10.0](https://github.com/thisismydesign/autowow/releases/tag/v0.10.0). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
6
+ *You are viewing the README of version [v0.10.1](https://github.com/thisismydesign/autowow/releases/tag/v0.10.1). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
7
7
  <!--- Version informartion end -->
8
8
 
9
+
10
+
9
11
  | Branch | Status |
10
12
  | ------ | ------ |
11
13
  | 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) |
@@ -14,7 +14,9 @@ module Autowow
14
14
  end
15
15
 
16
16
  def bump(version = nil)
17
- (["gem", "bump", "--no-commit"] + [version]).reject(&:nil?)
17
+ command = ["gem", "bump", "--no-commit"]
18
+ return command unless version
19
+ command + ["--version", version]
18
20
  end
19
21
 
20
22
  def rubocop_autocorrect(files)
@@ -35,6 +35,7 @@ module Autowow
35
35
  if version && change_readme_version_information_to_development(version)
36
36
  pretty.run(add(["README.md"]))
37
37
  pretty.run(commit("Changes README to development version"))
38
+ pretty.run(push)
38
39
  end
39
40
 
40
41
  pretty_with_output.run(git_status)
@@ -1,3 +1,3 @@
1
1
  module Autowow
2
- VERSION = "0.9.6"
2
+ VERSION = "0.10.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autowow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - thisismydesign