step-up 0.1.0 → 0.2.0
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/.stepuprc +31 -0
- data/README.md +31 -2
- data/Rakefile +1 -1
- data/lib/step-up.rb +1 -0
- data/lib/step-up/cli.rb +253 -8
- data/lib/step-up/config.rb +67 -2
- data/lib/step-up/config/step-up.yml +17 -5
- data/lib/step-up/driver/git.rb +65 -38
- data/lib/step-up/git_extensions.rb +32 -82
- data/lib/step-up/parser/version_mask.rb +18 -9
- data/lib/step-up/ranged_notes.rb +166 -0
- data/lib/step-up/version.rb +4 -26
- data/spec/lib/config_spec.rb +46 -0
- data/spec/lib/step-up/driver/git_spec.rb +82 -74
- data/spec/lib/step-up/parser/version_mask_spec.rb +27 -3
- data/spec/lib/step-up/ranged_notes_spec.rb +140 -0
- metadata +10 -4
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: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
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:
|
19
|
+
date: 2011-01-09 00:00:00 -02:00
|
20
20
|
default_executable: stepup
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -74,6 +74,7 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
|
76
76
|
files:
|
77
|
+
- .stepuprc
|
77
78
|
- README.md
|
78
79
|
- Rakefile
|
79
80
|
- bin/stepup
|
@@ -84,9 +85,12 @@ files:
|
|
84
85
|
- lib/step-up/driver/git.rb
|
85
86
|
- lib/step-up/git_extensions.rb
|
86
87
|
- lib/step-up/parser/version_mask.rb
|
88
|
+
- lib/step-up/ranged_notes.rb
|
87
89
|
- lib/step-up/version.rb
|
90
|
+
- spec/lib/config_spec.rb
|
88
91
|
- spec/lib/step-up/driver/git_spec.rb
|
89
92
|
- spec/lib/step-up/parser/version_mask_spec.rb
|
93
|
+
- spec/lib/step-up/ranged_notes_spec.rb
|
90
94
|
- spec/spec_helper.rb
|
91
95
|
has_rdoc: true
|
92
96
|
homepage: https://github.com/redoc/step-up
|
@@ -125,6 +129,8 @@ signing_key:
|
|
125
129
|
specification_version: 3
|
126
130
|
summary: The best way to manage your project's versioning
|
127
131
|
test_files:
|
132
|
+
- spec/lib/config_spec.rb
|
128
133
|
- spec/lib/step-up/driver/git_spec.rb
|
129
134
|
- spec/lib/step-up/parser/version_mask_spec.rb
|
135
|
+
- spec/lib/step-up/ranged_notes_spec.rb
|
130
136
|
- spec/spec_helper.rb
|