bumper_pusher 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +15 -0
- data/CHANGELOG.md +4 -2
- data/README.md +4 -0
- data/lib/bumper_pusher/bumper.rb +1 -0
- data/lib/bumper_pusher/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd60658c9baeca9f168cc64ac0a523f81877d4f2
|
|
4
|
+
data.tar.gz: 31176afb93b9f8433b14d5c7594a457d1fcee4b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 304d2f502c34948fd2a381d98c832103b41e3bfd947e8757b9c566719467494ec86779009661fc62db40a70b9fd08f70b4ea61ac213b1887bb09ebae6bec5fe5
|
|
7
|
+
data.tar.gz: 65bd6bbbbefba20f7f203b11acf73f1059171cbf9075db8f8eb75e8ab28b45754b453108a9b2d110d2923a3eda1ede721487b4a3522ef045114d48cdb7e0725f
|
data/.travis.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
before_install:
|
|
3
|
+
- gem update --system
|
|
4
|
+
- gem --version
|
|
5
|
+
rvm:
|
|
6
|
+
- 2.1.0
|
|
7
|
+
gemfile:
|
|
8
|
+
- Gemfile
|
|
9
|
+
|
|
10
|
+
notifications:
|
|
11
|
+
email:
|
|
12
|
+
recipients:
|
|
13
|
+
- sky4winder+bumper_pusher@gmail.com
|
|
14
|
+
on_success: never # [always|never|change]
|
|
15
|
+
on_failure: change # [always|never|change]
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.11] (https://github.com/skywinder/bumper_pusher/tree/0.1.11)
|
|
4
|
+
#### 08/01/15
|
|
3
5
|
## [0.1.10] (https://github.com/skywinder/bumper_pusher/tree/0.1.10)
|
|
4
6
|
#### 11/12/14
|
|
5
|
-
- *Closed issue:* Push after update changelog [\#10](https://github.com/skywinder/bumper_pusher/issues/10)
|
|
6
|
-
|
|
7
7
|
## [0.1.9] (https://github.com/skywinder/bumper_pusher/tree/0.1.9)
|
|
8
8
|
#### 10/12/14
|
|
9
|
+
- *Closed issue:* Push after update changelog [\#10](https://github.com/skywinder/bumper_pusher/issues/10)
|
|
10
|
+
|
|
9
11
|
## [0.1.8] (https://github.com/skywinder/bumper_pusher/tree/0.1.8)
|
|
10
12
|
#### 10/12/14
|
|
11
13
|
## [0.1.7] (https://github.com/skywinder/bumper_pusher/tree/0.1.7)
|
data/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
[](http://badge.fury.io/rb/bumper_pusher)
|
|
2
|
+
[](https://travis-ci.org/skywinder/bumper_pusher)
|
|
3
|
+
|
|
4
|
+
|
|
1
5
|
# BumperPusher
|
|
2
6
|
|
|
3
7
|
This gem make bumping and pushing your ruby gems easy and fast!
|
data/lib/bumper_pusher/bumper.rb
CHANGED
|
@@ -288,6 +288,7 @@ module BumperPusher
|
|
|
288
288
|
|
|
289
289
|
if execute_line_if_not_dry_run("git flow release finish -n #{bumped_version}", check_exit = false) == 0
|
|
290
290
|
execute_line_if_not_dry_run('git checkout master')
|
|
291
|
+
execute_line_if_not_dry_run('git push origin')
|
|
291
292
|
execute_line_if_not_dry_run("git tag #{bumped_version}")
|
|
292
293
|
execute_line_if_not_dry_run('git checkout develop')
|
|
293
294
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bumper_pusher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petr Korolev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -81,6 +81,7 @@ extensions: []
|
|
|
81
81
|
extra_rdoc_files: []
|
|
82
82
|
files:
|
|
83
83
|
- ".gitignore"
|
|
84
|
+
- ".travis.yml"
|
|
84
85
|
- CHANGELOG.md
|
|
85
86
|
- Gemfile
|
|
86
87
|
- LICENSE.txt
|