memtar 0.1.3 → 0.1.4
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 +4 -4
- data/CHANGELOG.md +9 -2
- data/Gemfile.lock +2 -2
- data/LICENSE.txt +1 -1
- data/lib/memtar/NOTICES.txt +180 -0
- data/lib/memtar/version.rb +1 -1
- data/memtar.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a00d305ac94a31a99a0e7f2e8d491cf74c7cdafa90a2ee3a6c838168a10b8b2
|
|
4
|
+
data.tar.gz: e538e2b60a9eab3684a595a3af154cd051dbf8682f114a732e5aefa67d3ad398
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b1c63b277cc8c2a95f4fb48f2c0d12e8bf6137f67cbb919f71dcf04f8fc07276092e265fd1a9ab3b511a3773dd4d6adbcfff59cc094b1603fefbd8643e59ac3
|
|
7
|
+
data.tar.gz: 0ef4765bc50b622b4aec6c0e640db29d5c90bff0e8cb553aec95a055d1922c29986144c204bb0eb8b0c52df9f7a0561138c54dfce2cf05daf4467d8ab4739b5e
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.4] - 2020-03-04
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Bumped rake version to resolve the following security vulnerability (CVE-2020-8130)
|
|
14
|
+
|
|
9
15
|
## [0.1.3] - 2019-11-20
|
|
10
16
|
|
|
11
17
|
### Fixed
|
|
@@ -21,8 +27,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
21
27
|
|
|
22
28
|
## [0.0.1] - 2015-02-18
|
|
23
29
|
|
|
24
|
-
[Unreleased]: https://github.com/conjurinc/memtar/compare/v0.1.
|
|
25
|
-
[0.1.
|
|
30
|
+
[Unreleased]: https://github.com/conjurinc/memtar/compare/v0.1.4...HEAD
|
|
31
|
+
[0.1.4]: https://github.com/conjurinc/memtar/compare/v0.1.3...v0.1.4
|
|
32
|
+
[0.1.3]: https://github.com/conjurinc/memtar/compare/v0.1.2...v0.1.3
|
|
26
33
|
[0.1.2]: https://github.com/conjurinc/memtar/compare/v0.1.1...v0.1.2
|
|
27
34
|
[0.1.1]: https://github.com/conjurinc/memtar/compare/v0.1.0...v0.1.1
|
|
28
35
|
[0.1.0]: https://github.com/conjurinc/memtar/compare/v0.0.1...v0.1.0
|
data/Gemfile.lock
CHANGED
|
@@ -9,7 +9,7 @@ GEM
|
|
|
9
9
|
specs:
|
|
10
10
|
diff-lcs (1.3)
|
|
11
11
|
minitar (0.9)
|
|
12
|
-
rake (
|
|
12
|
+
rake (13.0.1)
|
|
13
13
|
rspec (3.9.0)
|
|
14
14
|
rspec-core (~> 3.9.0)
|
|
15
15
|
rspec-expectations (~> 3.9.0)
|
|
@@ -30,7 +30,7 @@ PLATFORMS
|
|
|
30
30
|
DEPENDENCIES
|
|
31
31
|
bundler (~> 1.7)
|
|
32
32
|
memtar!
|
|
33
|
-
rake (~>
|
|
33
|
+
rake (~> 13.0)
|
|
34
34
|
rspec (~> 3.2)
|
|
35
35
|
|
|
36
36
|
BUNDLED WITH
|
data/LICENSE.txt
CHANGED
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
=============== TABLE OF CONTENTS =============================
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
The following is a listing of the open source components detailed in
|
|
5
|
+
this document. This list is provided for your convenience; please read
|
|
6
|
+
further if you wish to review the copyright notice(s) and the full text
|
|
7
|
+
of the license associated with each component.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
SECTION 1: BSD 2-clause "Simplified" License
|
|
11
|
+
|
|
12
|
+
>>> https://rubygems.org/gems/minitar/versions/0.8
|
|
13
|
+
|
|
14
|
+
SECTION 2: MIT License
|
|
15
|
+
|
|
16
|
+
>>> https://rubygems.org/gems/bundler/versions/1.7.0
|
|
17
|
+
>>> https://rubygems.org/gems/rake/versions/13.0.0
|
|
18
|
+
>>> https://rubygems.org/gems/rspec/versions/3.2.0
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
APPENDIX: Standard License Files and Templates
|
|
22
|
+
|
|
23
|
+
>>> BSD 2-clause "Simplified" License
|
|
24
|
+
|
|
25
|
+
>>> MIT License
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
--------------- SECTION 1: BSD 2-clause "Simplified" License ----------
|
|
29
|
+
|
|
30
|
+
BSD 2-clause "Simplified" License is applicable to the following component(s).
|
|
31
|
+
|
|
32
|
+
>>> https://rubygems.org/gems/pg/versions/0.20.0
|
|
33
|
+
|
|
34
|
+
Copyright 2004–2017 Austin Ziegler.
|
|
35
|
+
Portions copyright 2004 Mauricio Julio Fernández Pradier.
|
|
36
|
+
|
|
37
|
+
Redistribution and use in source and binary forms, with or without
|
|
38
|
+
modification, are permitted provided that the following conditions are met:
|
|
39
|
+
|
|
40
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
41
|
+
list of conditions and the following disclaimer.
|
|
42
|
+
|
|
43
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
44
|
+
this list of conditions and the following disclaimer in the documentation
|
|
45
|
+
and/or other materials provided with the distribution.
|
|
46
|
+
|
|
47
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
48
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
49
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
50
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
51
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
52
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
53
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
54
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
55
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
56
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
--------------- SECTION 2: MIT License ----------
|
|
60
|
+
|
|
61
|
+
MIT License is applicable to the following component(s).
|
|
62
|
+
|
|
63
|
+
>>> https://rubygems.org/gems/bundler/versions/1.7.0
|
|
64
|
+
|
|
65
|
+
Portions copyright (c) 2010 Andre Arko
|
|
66
|
+
Portions copyright (c) 2009 Engine Yard
|
|
67
|
+
|
|
68
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
69
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
70
|
+
in the Software without restriction, including without limitation the rights
|
|
71
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
72
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
73
|
+
furnished to do so, subject to the following conditions:
|
|
74
|
+
|
|
75
|
+
The above copyright notice and this permission notice shall be included in all
|
|
76
|
+
copies or substantial portions of the Software.
|
|
77
|
+
|
|
78
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
79
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
80
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
81
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
82
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
83
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
84
|
+
SOFTWARE.
|
|
85
|
+
|
|
86
|
+
>>> https://rubygems.org/gems/rake/versions/13.0.0
|
|
87
|
+
|
|
88
|
+
Copyright (c) Jim Weirich
|
|
89
|
+
|
|
90
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
91
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
92
|
+
in the Software without restriction, including without limitation the rights
|
|
93
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
94
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
95
|
+
furnished to do so, subject to the following conditions:
|
|
96
|
+
|
|
97
|
+
The above copyright notice and this permission notice shall be included in all
|
|
98
|
+
copies or substantial portions of the Software.
|
|
99
|
+
|
|
100
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
101
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
102
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
103
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
104
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
105
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
106
|
+
SOFTWARE.
|
|
107
|
+
|
|
108
|
+
>>> https://rubygems.org/gems/rspec/versions/3.2.0
|
|
109
|
+
|
|
110
|
+
Copyright (c) 2009 Chad Humphries, David Chelimsky
|
|
111
|
+
Copyright (c) 2006 David Chelimsky, The RSpec Development Team
|
|
112
|
+
Copyright (c) 2005 Steven Baker
|
|
113
|
+
|
|
114
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
115
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
116
|
+
in the Software without restriction, including without limitation the rights
|
|
117
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
118
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
119
|
+
furnished to do so, subject to the following conditions:
|
|
120
|
+
|
|
121
|
+
The above copyright notice and this permission notice shall be included in all
|
|
122
|
+
copies or substantial portions of the Software.
|
|
123
|
+
|
|
124
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
125
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
126
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
127
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
128
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
129
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
130
|
+
SOFTWARE.
|
|
131
|
+
|
|
132
|
+
=============== APPENDIX: License Files and Templates ==============
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
--------------- APPENDIX 1: BSD 2-clause "Simplified" License (Template) -----------
|
|
136
|
+
|
|
137
|
+
Copyright <YEAR> <COPYRIGHT HOLDER>
|
|
138
|
+
|
|
139
|
+
Redistribution and use in source and binary forms, with or without
|
|
140
|
+
modification, are permitted provided that the following conditions are met:
|
|
141
|
+
|
|
142
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
143
|
+
list of conditions and the following disclaimer.
|
|
144
|
+
|
|
145
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
146
|
+
this list of conditions and the following disclaimer in the documentation
|
|
147
|
+
and/or other materials provided with the distribution.
|
|
148
|
+
|
|
149
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
150
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
151
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
152
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
153
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
154
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
155
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
156
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
157
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
158
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
159
|
+
|
|
160
|
+
--------------- APPENDIX 2: MIT License (Template) -----------
|
|
161
|
+
|
|
162
|
+
Copyright <YEAR> <COPYRIGHT HOLDER>
|
|
163
|
+
|
|
164
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
165
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
166
|
+
in the Software without restriction, including without limitation the rights
|
|
167
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
168
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
169
|
+
furnished to do so, subject to the following conditions:
|
|
170
|
+
|
|
171
|
+
The above copyright notice and this permission notice shall be included in all
|
|
172
|
+
copies or substantial portions of the Software.
|
|
173
|
+
|
|
174
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
175
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
176
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
177
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
178
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
179
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
180
|
+
SOFTWARE.
|
data/lib/memtar/version.rb
CHANGED
data/memtar.gemspec
CHANGED
|
@@ -20,6 +20,6 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.add_dependency "minitar", "~> 0.8"
|
|
21
21
|
|
|
22
22
|
spec.add_development_dependency "bundler", "~> 1.7"
|
|
23
|
-
spec.add_development_dependency "rake", "~>
|
|
23
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
24
24
|
spec.add_development_dependency "rspec", "~> 3.2"
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: memtar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CyberArk
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2020-03-04 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitar
|
|
@@ -46,14 +46,14 @@ dependencies:
|
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '
|
|
49
|
+
version: '13.0'
|
|
50
50
|
type: :development
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - "~>"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: '
|
|
56
|
+
version: '13.0'
|
|
57
57
|
- !ruby/object:Gem::Dependency
|
|
58
58
|
name: rspec
|
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -87,6 +87,7 @@ files:
|
|
|
87
87
|
- README.md
|
|
88
88
|
- Rakefile
|
|
89
89
|
- lib/memtar.rb
|
|
90
|
+
- lib/memtar/NOTICES.txt
|
|
90
91
|
- lib/memtar/version.rb
|
|
91
92
|
- memtar.gemspec
|
|
92
93
|
- publish.sh
|