app_version 0.2.00 → 0.2.5
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.
- checksums.yaml +5 -5
- data/test/app_version_test.rb +10 -10
- data/test/test_helper.rb +2 -2
- metadata +10 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 633293dda2467c8143a263bbd2d9d93c61f6c57b838941e627406525dfef73a2
|
4
|
+
data.tar.gz: a90090ba26bc7adc0e3957fa4c5009e30c8876dcbbe5ac495cc1ce4ff0a71c51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee3e5883d034a32c8bfe9db31e2cdbac05023f5431ff6200f87e9e58c9cd8035277e3ee112855410d610dedc01517cced3c1f60a0db070e5f634c099145f130a
|
7
|
+
data.tar.gz: 41b0ef28820f5b255206d748e6d4f7657f113f25be874335c896b23af2681da98355d33602138902306b9b5ac4231d540e822ad69735b434fa81474d898c097b
|
data/test/app_version_test.rb
CHANGED
@@ -187,11 +187,11 @@ class AppVersionTest < MiniTest::Test
|
|
187
187
|
:committer => nil,
|
188
188
|
:build_date => nil
|
189
189
|
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
190
|
+
assert_nil nil, version.patch
|
191
|
+
assert_nil nil, version.milestone
|
192
|
+
assert_nil nil, version.branch
|
193
|
+
assert_nil nil, version.committer
|
194
|
+
assert_nil nil, version.build_date
|
195
195
|
end
|
196
196
|
|
197
197
|
def test_create_with_empty_string
|
@@ -204,11 +204,11 @@ class AppVersionTest < MiniTest::Test
|
|
204
204
|
:committer => '',
|
205
205
|
:build_date => ''
|
206
206
|
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
207
|
+
assert_nil nil, version.patch
|
208
|
+
assert_nil nil, version.milestone
|
209
|
+
assert_nil nil, version.branch
|
210
|
+
assert_nil nil, version.committer
|
211
|
+
assert_nil nil, version.build_date
|
212
212
|
end
|
213
213
|
|
214
214
|
def test_to_s
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: app_version
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Curry
|
8
8
|
- Stephen Kapp
|
9
9
|
- Phillip Toland
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2020-11-20 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
21
|
+
version: '5.2'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: '
|
28
|
+
version: '5.2'
|
29
29
|
description: App Version Gem originally App Version Rails Plugin from https://github.com/toland/app_version,
|
30
30
|
updated to run in CI server and with later rails versions as a gem, currently supports
|
31
31
|
Rails 4.2.x.
|
@@ -50,10 +50,10 @@ files:
|
|
50
50
|
- test/app_version_test.rb
|
51
51
|
- test/test_helper.rb
|
52
52
|
- test/version.yml
|
53
|
-
homepage: https://github.com/
|
53
|
+
homepage: https://github.com/mort666/app_version
|
54
54
|
licenses: []
|
55
55
|
metadata: {}
|
56
|
-
post_install_message:
|
56
|
+
post_install_message:
|
57
57
|
rdoc_options: []
|
58
58
|
require_paths:
|
59
59
|
- lib
|
@@ -68,13 +68,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
requirements: []
|
71
|
-
rubyforge_project:
|
72
|
-
rubygems_version: 2.
|
73
|
-
signing_key:
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 2.7.10
|
73
|
+
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Rails App Version Gem
|
76
76
|
test_files:
|
77
77
|
- test/app_version_test.rb
|
78
78
|
- test/test_helper.rb
|
79
79
|
- test/version.yml
|
80
|
-
has_rdoc:
|