security 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 +5 -5
- data/Gemfile.lock +6 -5
- data/{LICENSE → LICENSE.md} +1 -1
- data/README.md +10 -11
- data/lib/security/version.rb +1 -1
- data/security-0.1.3.gem +0 -0
- data/security.gemspec +6 -7
- metadata +34 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '0980117aec9bb1d85ec00fefc9ea234d0f66b7b80d3932e6f90c99d606ed6e96'
|
4
|
+
data.tar.gz: 0f49377f8092f1170da75ffda17f65c0213f77bdc1ed371c6993f4b016b4ca9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5899c11de7a95d4babea7edfcdaaa469dbbec27edd2f746afbc276bda596c54f17641db99aed2e362acac66b842c313b29b2345526d4eb8edba228f61d2486f0
|
7
|
+
data.tar.gz: '08f05552094356cdbe5841deee2316f4ba7ab080026b4a7a77771ae00ae9f7c0920cc9a4946f1bb8c8d4b1523237e4131041a331c69c44f7a0fab32402b44a62'
|
data/Gemfile.lock
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
security (0.1.
|
4
|
+
security (0.1.4)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
rake (
|
10
|
-
rspec (0.6.4)
|
9
|
+
rake (12.3.3)
|
11
10
|
|
12
11
|
PLATFORMS
|
13
12
|
ruby
|
14
13
|
|
15
14
|
DEPENDENCIES
|
16
|
-
rake (~>
|
17
|
-
rspec (~> 0.6.1)
|
15
|
+
rake (~> 12.3, >= 12.3.3)
|
18
16
|
security!
|
17
|
+
|
18
|
+
BUNDLED WITH
|
19
|
+
2.1.4
|
data/{LICENSE → LICENSE.md}
RENAMED
data/README.md
CHANGED
@@ -1,24 +1,23 @@
|
|
1
1
|
# Security
|
2
|
-
**Library for interacting with the Mac OS X Keychain**
|
3
2
|
|
4
|
-
|
3
|
+
**A library for interacting with the macOS Keychain**
|
4
|
+
|
5
|
+
> This library implements only the commands necessary for password management in
|
6
|
+
> [Cupertino](https://github.com/mattt/cupertino).
|
7
|
+
> As such, some methods are stubbed out to raise `NotImplementedError`.
|
5
8
|
|
6
9
|
## Usage
|
7
10
|
|
8
11
|
```ruby
|
9
|
-
Security::Keychain::default_keychain.filename #=> "/Users/
|
12
|
+
Security::Keychain::default_keychain.filename #=> "/Users/jappleseed/Library/Keychains/login.keychain"
|
10
13
|
|
11
14
|
Security::InternetPassword.find(server: "itunesconnect.apple.com").password #=> "p4ssw0rd"
|
12
15
|
```
|
13
16
|
|
14
|
-
##
|
15
|
-
|
16
|
-
Mattt Thompson
|
17
|
+
## License
|
17
18
|
|
18
|
-
|
19
|
-
- http://twitter.com/mattt
|
20
|
-
- m@mattt.me
|
19
|
+
MIT
|
21
20
|
|
22
|
-
##
|
21
|
+
## Contact
|
23
22
|
|
24
|
-
|
23
|
+
Mattt ([@mattt](https://twitter.com/mattt))
|
data/lib/security/version.rb
CHANGED
data/security-0.1.3.gem
ADDED
Binary file
|
data/security.gemspec
CHANGED
@@ -4,16 +4,15 @@ require "security"
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "security"
|
7
|
-
s.authors = ["Mattt
|
8
|
-
s.email = "
|
9
|
-
s.homepage = "
|
7
|
+
s.authors = ["Mattt"]
|
8
|
+
s.email = "mattt@me.com"
|
9
|
+
s.homepage = "https://mat.tt/"
|
10
10
|
s.version = Security::VERSION
|
11
11
|
s.platform = Gem::Platform::RUBY
|
12
|
-
s.
|
13
|
-
s.
|
12
|
+
s.license = "MIT"
|
13
|
+
s.summary = "Interact with the macOS Keychain"
|
14
14
|
|
15
|
-
s.add_development_dependency
|
16
|
-
s.add_development_dependency "rake", "~> 0.9.2"
|
15
|
+
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
|
17
16
|
|
18
17
|
s.files = Dir["./**/*"].reject { |file| file =~ /\.\/(bin|log|pkg|script|spec|test|vendor)/ }
|
19
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
@@ -1,62 +1,56 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: security
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Mattt
|
7
|
+
- Mattt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: rspec
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.6.1
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ~>
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.6.1
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: rake
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
30
16
|
requirements:
|
31
|
-
- - ~>
|
17
|
+
- - "~>"
|
32
18
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
19
|
+
version: '12.3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 12.3.3
|
34
23
|
type: :development
|
35
24
|
prerelease: false
|
36
25
|
version_requirements: !ruby/object:Gem::Requirement
|
37
26
|
requirements:
|
38
|
-
- - ~>
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '12.3'
|
30
|
+
- - ">="
|
39
31
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
description:
|
42
|
-
email:
|
32
|
+
version: 12.3.3
|
33
|
+
description:
|
34
|
+
email: mattt@me.com
|
43
35
|
executables: []
|
44
36
|
extensions: []
|
45
37
|
extra_rdoc_files: []
|
46
38
|
files:
|
47
|
-
- ./Gemfile
|
48
|
-
- ./Gemfile.lock
|
49
|
-
- ./
|
50
|
-
- ./
|
51
|
-
- ./
|
52
|
-
- ./lib/security
|
53
|
-
- ./lib/security.rb
|
54
|
-
- ./
|
55
|
-
- ./
|
56
|
-
- ./
|
57
|
-
- ./security.
|
58
|
-
|
59
|
-
|
39
|
+
- "./Gemfile"
|
40
|
+
- "./Gemfile.lock"
|
41
|
+
- "./LICENSE.md"
|
42
|
+
- "./README.md"
|
43
|
+
- "./Rakefile"
|
44
|
+
- "./lib/security.rb"
|
45
|
+
- "./lib/security/certificate.rb"
|
46
|
+
- "./lib/security/keychain.rb"
|
47
|
+
- "./lib/security/password.rb"
|
48
|
+
- "./lib/security/version.rb"
|
49
|
+
- "./security-0.1.3.gem"
|
50
|
+
- "./security.gemspec"
|
51
|
+
homepage: https://mat.tt/
|
52
|
+
licenses:
|
53
|
+
- MIT
|
60
54
|
metadata: {}
|
61
55
|
post_install_message:
|
62
56
|
rdoc_options: []
|
@@ -64,18 +58,17 @@ require_paths:
|
|
64
58
|
- lib
|
65
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
66
60
|
requirements:
|
67
|
-
- -
|
61
|
+
- - ">="
|
68
62
|
- !ruby/object:Gem::Version
|
69
63
|
version: '0'
|
70
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
65
|
requirements:
|
72
|
-
- -
|
66
|
+
- - ">="
|
73
67
|
- !ruby/object:Gem::Version
|
74
68
|
version: '0'
|
75
69
|
requirements: []
|
76
|
-
|
77
|
-
rubygems_version: 2.1.11
|
70
|
+
rubygems_version: 3.1.2
|
78
71
|
signing_key:
|
79
72
|
specification_version: 4
|
80
|
-
summary:
|
73
|
+
summary: Interact with the macOS Keychain
|
81
74
|
test_files: []
|