artifactory 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/artifactory/resources/repository.rb +2 -0
- data/lib/artifactory/version.rb +1 -1
- data/spec/unit/resources/repository_spec.rb +3 -1
- 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: 10265df7277800763574fae7df4d0c6ff325c890
|
4
|
+
data.tar.gz: 5184c53709a8a1f37de75bd4a50d0521d823fe02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54ee97b220dab7402ab9d355ee9913e773a2b5af56f0ec9595a4ee7fdbc974e13bedacb24a836883e36db0e9f3ebda0b831c58ed17c3125c65ea602a9127f157
|
7
|
+
data.tar.gz: 06266bca20064100915396a12811a04c3f0d85f20d3d8b56f57f5545e6c379fad69a65b98ebf6243834a19aa4745b0ba39471174d99c6d7a56dce18f9e265d1c
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ Artifactory Client CHANGELOG
|
|
3
3
|
This file is used to document the changes between releases of the Artifactory
|
4
4
|
Ruby client.
|
5
5
|
|
6
|
+
v2.5.0 (09-15-2016)
|
7
|
+
-------------------
|
8
|
+
- Add support for extended YUM repo attributes
|
9
|
+
|
6
10
|
v2.4.0 (09-13-2016)
|
7
11
|
-------------------
|
8
12
|
- Coerce `ARTIFACTORY_READ_TIMEOUT` value to integer
|
@@ -82,6 +82,8 @@ module Artifactory
|
|
82
82
|
attribute :snapshot_version_behavior, 'non-unique'
|
83
83
|
attribute :suppress_pom_consistency_checks, false
|
84
84
|
attribute :url, ''
|
85
|
+
attribute :yum_root_depth, 0
|
86
|
+
attribute :calculate_yum_metadata, false
|
85
87
|
|
86
88
|
#
|
87
89
|
# Creates or updates a repository configuration depending on if the
|
data/lib/artifactory/version.rb
CHANGED
@@ -62,7 +62,7 @@ module Artifactory
|
|
62
62
|
'propertySets' => ['artifactory'],
|
63
63
|
'archiveBrowsingEnabled' => false,
|
64
64
|
'calculateYumMetadata' => false,
|
65
|
-
'yumRootDepth' =>
|
65
|
+
'yumRootDepth' => 3,
|
66
66
|
'rclass' => 'local',
|
67
67
|
'url' => 'someurl',
|
68
68
|
}
|
@@ -87,6 +87,8 @@ module Artifactory
|
|
87
87
|
expect(instance.snapshot_version_behavior).to eq('unique')
|
88
88
|
expect(instance.suppress_pom_consistency_checks).to be_truthy
|
89
89
|
expect(instance.url).to eq('someurl')
|
90
|
+
expect(instance.yum_root_depth).to eq(3)
|
91
|
+
expect(instance.calculate_yum_metadata).to eq(false)
|
90
92
|
end
|
91
93
|
end
|
92
94
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: artifactory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seth Vargo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|