cvprac 1.0.0 → 1.0.1

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: 2377a7f1bb4ef6337d0a69922d25c03954250e6a
4
- data.tar.gz: 7efa3b3ee60c9a5291a27eaf39dbb3270b2b6d40
3
+ metadata.gz: f288633cd52f84e4ada66a1898975a672850ec62
4
+ data.tar.gz: 04a8fe771226a98d6520cfb00cc66791846cc691
5
5
  SHA512:
6
- metadata.gz: 801b0867d2a90f6632beee05aa9d3b7e73b6f01f59f22e9ddbe7c4abd402d9f20976162047f600dfa4b956e84cb7656c1ca3fa1f80e3f3040c09e3f3ecd7cc10
7
- data.tar.gz: 573406286b72125c63c4eb26aa4c8c259023f929613068376e8e9dde815d3c21e97e549959dbe0b5a599ef7a0736f3ec65fdbe5ec6bd098b3264b62c1680098a
6
+ metadata.gz: 4eff29b4dcc00cd60a4b86bb877cb8b26219ab5e23a7989320fa99adf4a917db0b5632fdb09580beb0b10a051cad8d0d9073ba0d14be781fd258f09e9a49ecd8
7
+ data.tar.gz: 4d121d447b6dde448b760dbba7168e2c383bf3b60f5f59e3085f72a04c16d8b241d0e1c9d25e15ac45433fdcd893286f01a77e7d1851c08690c19a32a2fd340b
@@ -1,6 +1,13 @@
1
1
  # Change Log
2
2
 
3
- ## [1.0.0](https://github.com/aristanetworks/cvprac-rb/tree/1.0.0) (2017-08-08)
3
+ ## [1.0.1](https://github.com/aristanetworks/cvprac-rb/tree/1.0.1) (2017-08-30)
4
+ [Full Changelog](https://github.com/aristanetworks/cvprac-rb/compare/v1.0.0...1.0.1)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - client.rb missing openssl require [\#13](https://github.com/aristanetworks/cvprac-rb/issues/13)
9
+
10
+ ## [v1.0.0](https://github.com/aristanetworks/cvprac-rb/tree/v1.0.0) (2017-08-08)
4
11
  **Implemented enhancements:**
5
12
 
6
13
  - API: Manage configlet content [\#5](https://github.com/aristanetworks/cvprac-rb/issues/5)
@@ -19,6 +26,7 @@
19
26
 
20
27
  **Merged pull requests:**
21
28
 
29
+ - Release 1.0.0 [\#12](https://github.com/aristanetworks/cvprac-rb/pull/12) ([jerearista](https://github.com/jerearista))
22
30
  - Initial function [\#1](https://github.com/aristanetworks/cvprac-rb/pull/1) ([jerearista](https://github.com/jerearista))
23
31
 
24
32
 
@@ -18,11 +18,29 @@ to setup your environment for development, run `bundle install --path
18
18
 
19
19
  To release a new version, run:
20
20
 
21
+ `git checkout -b release-1.0.0`
22
+ `rvm use ruby-2.3.1`
23
+ `bundle install --path .bundle/gems`
21
24
  `bundle exec rake checks`
22
25
  `bundle exec rake bump:[major|minor|patch|pre]`
23
26
  `bundle exec rake changelog`
27
+ `git add CHANGELOG.md`
28
+ `git commit -m “Bump version”`
29
+ `git push --set-upstream origin release-1.0.0`
30
+ Create a PR against develop
31
+ Wait for CI to complete
32
+ `git checkout develop`
33
+ `git merge --no-ff release-1.0.0`
34
+ `git push origin develop`
35
+ Create a PR against master
36
+ Wait for CI to complete
37
+ `git checkout master`
38
+ `git merge --no-ff develop`
39
+ `git push origin master`
24
40
  `bundle exec rake release`
25
41
 
42
+ **TODO** Update version in develop
43
+
26
44
  This will create a git tag, push git commits and tags and push the .gem file to
27
45
  [rubygems.org](https://rubygems.org).
28
46
 
@@ -155,7 +155,7 @@ pipeline {
155
155
  set -x
156
156
  bundle exec rake build
157
157
  """
158
- archiveArtifacts artifacts: 'pkg/*.gemm', fingerprint: true, onlyIfSuccessful: true
158
+ archiveArtifacts artifacts: 'pkg/*.gem', fingerprint: true, onlyIfSuccessful: true
159
159
  }
160
160
  }
161
161
 
data/README.md CHANGED
@@ -9,8 +9,8 @@
9
9
  5. [Contributing](#contributing)
10
10
  6. [Support](#support)
11
11
 
12
- [![Gem Version](https://badge.fury.io/rb/cvprac)](https://badge.fury.io/rb/cvprac)
13
- [![Unittest Status](https://revproxy.arista.com/eosplus/ci/buildStatus/icon?job=Pipeline_jerearista_test/cvprac-rb/develop&style=plastic)](https://revproxy.arista.com/eosplus/ci/job/Pipeline_jerearista_test/cvprac-rb/develop)
12
+ [![Gem Version](https://badge.fury.io/rb/cvprac.svg)](https://badge.fury.io/rb/cvprac)
13
+ [![Unittest Status](https://revproxy.arista.com/eosplus/ci/buildStatus/icon?job=Pipeline_jerearista_test/cvprac-rb/develop)](https://revproxy.arista.com/eosplus/ci/job/Pipeline_jerearista_test/cvprac-rb/develop)
14
14
 
15
15
  ## Overview
16
16
 
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.email = ['eosplus-dev@arista.com']
13
13
  spec.summary = %q(Arista REST API Client for CloudVision Portal)
14
14
  spec.description = %q(Arista REST API Client for CloudVision Portal)
15
- spec.homepage = 'https://github.com/arista-aristanetworks/cvprac-rb'
15
+ spec.homepage = 'https://github.com/aristanetworks/cvprac-rb'
16
16
  spec.license = 'BSD-3-Clause'
17
17
 
18
18
  # NOTE: This may cause issues on Jenkins in detached head
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
27
27
  # spec.add_runtime_dependency 'inifile', '~> 0'
28
28
  spec.add_runtime_dependency 'http-cookie'
29
29
  spec.add_runtime_dependency 'require_all'
30
+ spec.add_runtime_dependency 'openssl'
30
31
 
31
32
  spec.add_development_dependency 'bump'
32
33
  spec.add_development_dependency 'bundler'
@@ -38,6 +38,7 @@ require 'http-cookie'
38
38
  require 'json'
39
39
  require 'logger'
40
40
  require 'net/http'
41
+ require 'openssl'
41
42
  require 'pp'
42
43
  require 'syslog/logger'
43
44
 
@@ -30,5 +30,5 @@
30
30
 
31
31
  module Cvprac
32
32
  # Cvprac Gem version
33
- VERSION = '1.0.0'.freeze
33
+ VERSION = '1.0.1'.freeze
34
34
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cvprac
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arista Networks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-08 00:00:00.000000000 Z
11
+ date: 2017-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-cookie
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: openssl
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: bump
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -405,7 +419,7 @@ files:
405
419
  - lib/cvprac/client.rb
406
420
  - lib/cvprac/client_errors.rb
407
421
  - lib/cvprac/version.rb
408
- homepage: https://github.com/arista-aristanetworks/cvprac-rb
422
+ homepage: https://github.com/aristanetworks/cvprac-rb
409
423
  licenses:
410
424
  - BSD-3-Clause
411
425
  metadata: