app_version_tasks 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +2 -0
- data/lib/app_version_tasks/version.rb +1 -1
- data/lib/tasks/app_version_tasks.rake +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53bf95a473cf89c97ab09b38e37311e9a99b6dd9
|
4
|
+
data.tar.gz: 6012e437ac9df19adb6577fd8385f9d4e31f6509
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: faa106db2aebe526c1548bbfd653107e36a4c9b119d9053a3f4e66db39f0f20330b322e9642ec219524fe8a123fc4de2b427918ae24512aa16c2dbe811bba8a5
|
7
|
+
data.tar.gz: 6cb26fa55a0a60eadb77bd874e77e0508e72832db0ebd8c5295e8af776142e4c3632fa147c236ac8bb5c73305083002dfff49e0691f95ea2b6406afa1a68ded7
|
data/.codeclimate.yml
CHANGED
@@ -13,19 +13,19 @@ namespace :version do
|
|
13
13
|
end
|
14
14
|
|
15
15
|
namespace :bump do
|
16
|
-
desc 'bump and
|
16
|
+
desc 'bump and commit the major version (x.0.0)'
|
17
17
|
task :major do
|
18
18
|
ver = AppVersionTasks::SemanticVersion.new
|
19
19
|
puts ver.bump(:major)
|
20
20
|
end
|
21
21
|
|
22
|
-
desc 'bump and
|
22
|
+
desc 'bump and commit the minor version (0.x.0)'
|
23
23
|
task :minor do
|
24
24
|
ver = AppVersionTasks::SemanticVersion.new
|
25
25
|
puts ver.bump(:minor)
|
26
26
|
end
|
27
27
|
|
28
|
-
desc 'bump and
|
28
|
+
desc 'bump and commit the patch version (0.0.x)'
|
29
29
|
task :patch do
|
30
30
|
ver = AppVersionTasks::SemanticVersion.new
|
31
31
|
puts ver.bump(:patch)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: app_version_tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darren L. Weber, Ph.D.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|