artifactory 2.4.0 → 2.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b583a16571d58a56d063a338c2543586d09e04ba
4
- data.tar.gz: 27ca88314c07f285769c65a719a00f1b8160e231
3
+ metadata.gz: 10265df7277800763574fae7df4d0c6ff325c890
4
+ data.tar.gz: 5184c53709a8a1f37de75bd4a50d0521d823fe02
5
5
  SHA512:
6
- metadata.gz: 494ce9b2476390843799656b5692e6c5a3583fa852e9a238b108de2d30b058d95402728e30418e71ded15e44d8720b0eff8188c5c04bbe6c260d9c362948cf64
7
- data.tar.gz: 951485c566e2a023116ef0d38831dea1ae2b9c3b5a4df2440ac10b142bf61352def93311c8de8de1b3f38e473d00b342814a92489815c23a7ba1cfd0d8a1eafe
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
@@ -15,5 +15,5 @@
15
15
  #
16
16
 
17
17
  module Artifactory
18
- VERSION = '2.4.0'
18
+ VERSION = '2.5.0'
19
19
  end
@@ -62,7 +62,7 @@ module Artifactory
62
62
  'propertySets' => ['artifactory'],
63
63
  'archiveBrowsingEnabled' => false,
64
64
  'calculateYumMetadata' => false,
65
- 'yumRootDepth' => 0,
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.0
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-13 00:00:00.000000000 Z
11
+ date: 2016-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler