fspath-xattr 1.0.3 → 1.0.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 +5 -13
- data/.travis.yml +13 -7
- data/Gemfile +5 -1
- data/LICENSE.txt +1 -1
- data/README.markdown +1 -1
- data/fspath-xattr.gemspec +6 -2
- metadata +21 -20
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
YjU0MDVhNjhmZDJhZTM1MWQ4N2RjYjA4ZjhjNTIzMDE4MWJiMjIwYQ==
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7c18cbd49b784342b745995ed1cc0c7c0073f5fa0d5946e853f318558b330bae
|
|
4
|
+
data.tar.gz: 0c54dca725cc4cd104e316e1fcbef7096a87f3e6728b09bf4f45a661c46f012f
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
NGIzYmJmZDcxMzNjYzQ2MmE0NmJjM2NmNTg2N2MwYmI2NjBhMjYwMTRjNTk2
|
|
11
|
-
ODI0Yjc3ZTUxNDc4ODVkYjgwNGRjMzFlYTczYzI0MGNlZDlmNmE=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
NmM3YWY4MTg2YjNmOTU0OTljYTYwY2U3OTY1ZGQxYzA1MTgyN2Q2NGM5YjZh
|
|
14
|
-
MjZkMzZmNzhkODhhY2QxODQ3NjdkMTA0NzZjYWE0ZDcyNGNjOTNkYzJhODUw
|
|
15
|
-
MmJmNzYxYjdmZDhiOGNhMDZjMTI3OGIwNTNhMWM2Mzc3Y2FkNmU=
|
|
6
|
+
metadata.gz: d58d6fa4fe381cc08bf14fff70457804cb39ca4a72e486b31f7c08c384971f09f49870731eb8a5cb09d5942845214ab0499b499c05359d41323c721e945efa9d
|
|
7
|
+
data.tar.gz: 80f58f23df5898a5fbb137a0419e94b5a54ee38feef5076d9ddbb0c0ba99b79368cbf24d41d3e191ef76460f0c040e45b5edf9f2c7e6f3bb8e3cdacce3e6e91f
|
data/.travis.yml
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
- ruby
|
|
1
|
+
os: osx
|
|
2
|
+
language: ruby
|
|
4
3
|
rvm:
|
|
5
|
-
-
|
|
6
|
-
- '2.
|
|
7
|
-
- '2.
|
|
8
|
-
|
|
4
|
+
- default
|
|
5
|
+
- '2.3.8'
|
|
6
|
+
- '2.4.6'
|
|
7
|
+
- '2.5.5'
|
|
8
|
+
- '2.6.3'
|
|
9
|
+
script: bundle exec rspec
|
|
10
|
+
matrix:
|
|
11
|
+
include:
|
|
12
|
+
- env: CHECK_RUBIES=✓
|
|
13
|
+
rvm: '2.6.3'
|
|
14
|
+
script: bundle exec travis_check_rubies
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
data/README.markdown
CHANGED
data/fspath-xattr.gemspec
CHANGED
|
@@ -2,13 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'fspath-xattr'
|
|
5
|
-
s.version = '1.0.
|
|
5
|
+
s.version = '1.0.4'
|
|
6
6
|
s.summary = %q{FSPath methods xattr and lxattr to work with extended attributes using ffi-xattr gem}
|
|
7
7
|
s.homepage = "http://github.com/toy/#{s.name}"
|
|
8
8
|
s.authors = ['Ivan Kuchin']
|
|
9
9
|
s.license = 'MIT'
|
|
10
10
|
|
|
11
|
-
s.
|
|
11
|
+
s.metadata = {
|
|
12
|
+
'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues",
|
|
13
|
+
'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}",
|
|
14
|
+
'source_code_uri' => "https://github.com/toy/#{s.name}",
|
|
15
|
+
}
|
|
12
16
|
|
|
13
17
|
s.files = `git ls-files`.split("\n")
|
|
14
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fspath-xattr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Kuchin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fspath
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '2'
|
|
20
|
-
- - <
|
|
20
|
+
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '4'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- -
|
|
27
|
+
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '2'
|
|
30
|
-
- - <
|
|
30
|
+
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '4'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: ffi-xattr
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- -
|
|
37
|
+
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: 0.0.4
|
|
40
|
-
- - <
|
|
40
|
+
- - "<"
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
42
|
version: '0.2'
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
|
-
- -
|
|
47
|
+
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
49
|
version: 0.0.4
|
|
50
|
-
- - <
|
|
50
|
+
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '0.2'
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: rspec
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- - ~>
|
|
57
|
+
- - "~>"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
59
|
version: '3.0'
|
|
60
60
|
type: :development
|
|
61
61
|
prerelease: false
|
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
|
-
- - ~>
|
|
64
|
+
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: '3.0'
|
|
67
67
|
description:
|
|
@@ -70,8 +70,8 @@ executables: []
|
|
|
70
70
|
extensions: []
|
|
71
71
|
extra_rdoc_files: []
|
|
72
72
|
files:
|
|
73
|
-
- .gitignore
|
|
74
|
-
- .travis.yml
|
|
73
|
+
- ".gitignore"
|
|
74
|
+
- ".travis.yml"
|
|
75
75
|
- Gemfile
|
|
76
76
|
- LICENSE.txt
|
|
77
77
|
- README.markdown
|
|
@@ -82,24 +82,26 @@ files:
|
|
|
82
82
|
homepage: http://github.com/toy/fspath-xattr
|
|
83
83
|
licenses:
|
|
84
84
|
- MIT
|
|
85
|
-
metadata:
|
|
85
|
+
metadata:
|
|
86
|
+
bug_tracker_uri: https://github.com/toy/fspath-xattr/issues
|
|
87
|
+
documentation_uri: https://www.rubydoc.info/gems/fspath-xattr/1.0.4
|
|
88
|
+
source_code_uri: https://github.com/toy/fspath-xattr
|
|
86
89
|
post_install_message:
|
|
87
90
|
rdoc_options: []
|
|
88
91
|
require_paths:
|
|
89
92
|
- lib
|
|
90
93
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
94
|
requirements:
|
|
92
|
-
- -
|
|
95
|
+
- - ">="
|
|
93
96
|
- !ruby/object:Gem::Version
|
|
94
97
|
version: '0'
|
|
95
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
99
|
requirements:
|
|
97
|
-
- -
|
|
100
|
+
- - ">="
|
|
98
101
|
- !ruby/object:Gem::Version
|
|
99
102
|
version: '0'
|
|
100
103
|
requirements: []
|
|
101
|
-
|
|
102
|
-
rubygems_version: 2.6.4
|
|
104
|
+
rubygems_version: 3.0.3
|
|
103
105
|
signing_key:
|
|
104
106
|
specification_version: 4
|
|
105
107
|
summary: FSPath methods xattr and lxattr to work with extended attributes using ffi-xattr
|
|
@@ -107,4 +109,3 @@ summary: FSPath methods xattr and lxattr to work with extended attributes using
|
|
|
107
109
|
test_files:
|
|
108
110
|
- spec/fspath/xattr_spec.rb
|
|
109
111
|
- spec/spec_helper.rb
|
|
110
|
-
has_rdoc:
|