step-up 0.2.0 → 0.2.1
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/README.md +43 -20
- metadata +6 -6
data/README.md
CHANGED
@@ -1,32 +1,55 @@
|
|
1
|
-
# StepUp: a project to 'step up' projects
|
1
|
+
# StepUp: a project to 'step up' your projects
|
2
|
+
StepUp is a tool to manage versioning based on source control management features (i.e. tags and notes of Git). That is, you don't need to keep track of your application version in a file anymore !!!
|
2
3
|
|
3
|
-
|
4
|
-
|
4
|
+
## Prerequisite
|
5
|
+
This is temporary but for now StepUp just works with Git version 1.7.1 and above.
|
5
6
|
|
6
|
-
|
7
|
+
## Installation
|
8
|
+
gem install step-up
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
- pattern of version defined by user
|
12
|
-
- and lots more
|
10
|
+
## First of all
|
11
|
+
Have in mind that StepUp has only Git support for now (more to come soon!!), so any StepUp command must be performed inside a git repository path.
|
12
|
+
With that said, run
|
13
13
|
|
14
|
-
|
14
|
+
stepup init
|
15
|
+
This will prepare your repository to use one of the coolest feature of StepUp called ***notes***
|
16
|
+
Besides that it will create a file in your project called **.stepuprc**
|
17
|
+
We'll cover more about this in the next sections.
|
15
18
|
|
16
|
-
|
19
|
+
## The Basics
|
20
|
+
### Check out the version
|
21
|
+
stepup version
|
22
|
+
This will tell you the application version based on Git tag.
|
23
|
+
Currently the result of this command on StepUp project itself will be
|
17
24
|
|
18
|
-
|
25
|
+
v0.2.0+1
|
26
|
+
The "+1" part means the project has one commit since last version.
|
27
|
+
The format of the version is totally customizable through **.stepuprc** which we will cover in the next sections.
|
19
28
|
|
20
|
-
|
29
|
+
### Create new version
|
30
|
+
stepup version create --level LEVEL_NAME
|
31
|
+
where **LEVEL_NAME** can be
|
21
32
|
|
22
|
-
|
33
|
+
* major
|
34
|
+
* minor
|
35
|
+
* tiny
|
36
|
+
* patch
|
37
|
+
* rc
|
23
38
|
|
24
|
-
|
39
|
+
This command will ask user for a message for the version and will increment the version number accordingly
|
25
40
|
|
26
|
-
|
41
|
+
### Check out the history
|
42
|
+
stepup changelog --top N
|
43
|
+
where **N** is the number of versions that will be displayed from newer to older ones
|
27
44
|
|
28
|
-
|
29
|
-
|
30
|
-
stepup -h
|
45
|
+
## StepUp beyond basics
|
46
|
+
***Comming soon***
|
31
47
|
|
32
|
-
|
48
|
+
## Report bugs and suggestions
|
49
|
+
|
50
|
+
* [Issue Tracker](https://github.com/kawamanza/step-up/issues)
|
51
|
+
|
52
|
+
## Authors
|
53
|
+
|
54
|
+
* [Eric Fer](https://github.com/ericfer)
|
55
|
+
* [Marcelo Manzan](https://github.com/kawamanza)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: step-up
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Marcelo Manzan
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-01-
|
19
|
+
date: 2011-01-14 00:00:00 -02:00
|
20
20
|
default_executable: stepup
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -63,7 +63,7 @@ dependencies:
|
|
63
63
|
version: "0"
|
64
64
|
type: :development
|
65
65
|
version_requirements: *id003
|
66
|
-
description: StepUp manages a project's versioning through its entire
|
66
|
+
description: StepUp manages a project's versioning through its entire lifecycle
|
67
67
|
email:
|
68
68
|
- manzan@gmail.com
|
69
69
|
- eric.fer@gmail.com
|
@@ -93,7 +93,7 @@ files:
|
|
93
93
|
- spec/lib/step-up/ranged_notes_spec.rb
|
94
94
|
- spec/spec_helper.rb
|
95
95
|
has_rdoc: true
|
96
|
-
homepage: https://github.com/
|
96
|
+
homepage: https://github.com/kawamanza/step-up
|
97
97
|
licenses: []
|
98
98
|
|
99
99
|
post_install_message:
|