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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a4f2b5ab0cb7e2ddd8bbc613aab7d5f92d50048
4
- data.tar.gz: ba2d3c79301373fb9d05da1b9a2bbe5fb9fd7fe8
3
+ metadata.gz: 53bf95a473cf89c97ab09b38e37311e9a99b6dd9
4
+ data.tar.gz: 6012e437ac9df19adb6577fd8385f9d4e31f6509
5
5
  SHA512:
6
- metadata.gz: c2c04dbb9a5e93ca0628eb51fe3ee630f839f127e01f7a525b481b1c328f1365df6bcd4a1486542d58f686e595c6e2eba3d1ae2b66fd4cab32a37694eeb96a57
7
- data.tar.gz: 70b7c0cd557a7fe5b4b9a924073226b1cc07551e79658e4eaab5fb88f80b23bbc9a90196c49aa2913c7cb6b85466d734aa0ccbff40dab2e8f5ddaa02c95a5e86
6
+ metadata.gz: faa106db2aebe526c1548bbfd653107e36a4c9b119d9053a3f4e66db39f0f20330b322e9642ec219524fe8a123fc4de2b427918ae24512aa16c2dbe811bba8a5
7
+ data.tar.gz: 6cb26fa55a0a60eadb77bd874e77e0508e72832db0ebd8c5295e8af776142e4c3632fa147c236ac8bb5c73305083002dfff49e0691f95ea2b6406afa1a68ded7
data/.codeclimate.yml CHANGED
@@ -16,6 +16,8 @@ engines:
16
16
  enabled: true
17
17
  rubocop:
18
18
  enabled: true
19
+ exclude_fingerprints:
20
+ - 5a32d66f61ea18f2f75921056fc89593
19
21
  ratings:
20
22
  paths:
21
23
  - Gemfile.lock
@@ -1,3 +1,3 @@
1
1
  module AppVersionTasks
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'
3
3
  end
@@ -13,19 +13,19 @@ namespace :version do
13
13
  end
14
14
 
15
15
  namespace :bump do
16
- desc 'bump and push the major version (x.0.0)'
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 push the minor version (0.x.0)'
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 push the patch version (0.0.x)'
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.1
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-19 00:00:00.000000000 Z
11
+ date: 2016-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: git