bumper_pusher 0.2.2 → 0.2.3
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/CHANGELOG.md +9 -0
- data/lib/bumper_pusher/bumper.rb +2 -2
- 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: 4121ccf8c70e0585a591a9f007585c7ed2d01cbe
|
|
4
|
+
data.tar.gz: 069bb36432acf671da9cce23294e6cc40d0c2b52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18a87fdf14c6ac922e564a988e694263d685442134f82c2488b047a01bfed46dbbd577b893e8a898fd6b3c00f190e391628b849976ab491fe95eb1d182238c25
|
|
7
|
+
data.tar.gz: 1ccfc31686fafa4bf6b5a82020492cab4bbd8458f0f047aa7666cc8d8b315977049d660e67091fe0d2c3f64d484b64b25176732f6dd092ce924fa9f43f860662
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [0.2.2](https://github.com/skywinder/bumper_pusher/tree/0.2.2) (2015-09-29)
|
|
4
|
+
[Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.2.0...0.2.2)
|
|
5
|
+
|
|
6
|
+
## [0.2.0](https://github.com/skywinder/bumper_pusher/tree/0.2.0) (2015-09-29)
|
|
7
|
+
[Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.1.19...0.2.0)
|
|
8
|
+
|
|
9
|
+
## [0.1.19](https://github.com/skywinder/bumper_pusher/tree/0.1.19) (2015-09-29)
|
|
10
|
+
[Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.1.18...0.1.19)
|
|
11
|
+
|
|
3
12
|
## [0.1.18](https://github.com/skywinder/bumper_pusher/tree/0.1.18) (2015-08-31)
|
|
4
13
|
[Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.1.17...0.1.18)
|
|
5
14
|
|
data/lib/bumper_pusher/bumper.rb
CHANGED
|
@@ -282,10 +282,10 @@ module BumperPusher
|
|
|
282
282
|
execute_line_if_not_dry_run("sed -i \"\" \"s/#{result}/#{bumped_version}/\" #{find_version_file}")
|
|
283
283
|
end
|
|
284
284
|
|
|
285
|
-
execute_line_if_not_dry_run("gem build #{@spec_file}")
|
|
286
|
-
gem = find_current_gem_file
|
|
287
285
|
if @options[:install]
|
|
288
286
|
if @spec_mode == GEM_SPEC_TYPE
|
|
287
|
+
execute_line_if_not_dry_run("gem build #{@spec_file}")
|
|
288
|
+
gem = find_current_gem_file
|
|
289
289
|
execute_line_if_not_dry_run("gem install #{gem}")
|
|
290
290
|
end
|
|
291
291
|
end
|
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.2.
|
|
4
|
+
version: 0.2.3
|
|
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-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -121,3 +121,4 @@ signing_key:
|
|
|
121
121
|
specification_version: 4
|
|
122
122
|
summary: Easiest way to bump your specs
|
|
123
123
|
test_files: []
|
|
124
|
+
has_rdoc:
|