bump 0.3.5 → 0.3.6
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.
- data/.travis.yml +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +18 -3
- data/bump.gemspec +1 -1
- data/spec/bump_spec.rb +2 -0
- metadata +3 -2
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# Introduction
|
2
|
+
Bump is a gem that will simplify the way you build gems.
|
3
|
+
|
4
|
+
|
1
5
|
# Installation
|
2
6
|
|
3
7
|
gem install bump
|
@@ -10,12 +14,25 @@ Current version of your gem:
|
|
10
14
|
|
11
15
|
Current version: 0.1.2
|
12
16
|
|
13
|
-
Bump your gemfile (major, minor, patch):
|
17
|
+
Bump your gemfile (major, minor, patch, pre):
|
14
18
|
|
15
19
|
bump patch
|
16
20
|
|
17
21
|
Bump version 0.1.2 to 0.1.3
|
18
22
|
|
23
|
+
### Options
|
24
|
+
|
25
|
+
### --no-commit
|
26
|
+
If you don't want to make a commit after bumping your gem, add the `--no-commit` option.
|
27
|
+
|
28
|
+
bump patch --no-commit
|
29
|
+
|
30
|
+
|
31
|
+
### --no-bundle
|
32
|
+
If you don't want to run the `bundle` command after bumping your gem, add the `--no-bundle` option.
|
33
|
+
|
34
|
+
bump patch --no-bundle
|
35
|
+
|
19
36
|
### Rake
|
20
37
|
|
21
38
|
```Ruby
|
@@ -40,9 +57,7 @@ Bump::Bump.current # -> "1.2.3"
|
|
40
57
|
|
41
58
|
# Todo
|
42
59
|
|
43
|
-
- Handle options properly
|
44
60
|
- `VERSION = "1.2.3"` in lib/*.rb
|
45
|
-
- Build new gem version: gem build xxx.gemspec
|
46
61
|
|
47
62
|
# Author
|
48
63
|
Gregory<br/>
|
data/bump.gemspec
CHANGED
data/spec/bump_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bump
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-03 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description:
|
15
15
|
email: g.marcilhacy@gmail.com
|
@@ -57,3 +57,4 @@ signing_key:
|
|
57
57
|
specification_version: 3
|
58
58
|
summary: Bump your gem version file
|
59
59
|
test_files: []
|
60
|
+
has_rdoc:
|