security 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 974cae8d45c872de00ec5c142b5d2d3613b60f03
4
- data.tar.gz: 6cd7d5f700352bc4f3856332de2dea1bb104e71c
2
+ SHA256:
3
+ metadata.gz: '0980117aec9bb1d85ec00fefc9ea234d0f66b7b80d3932e6f90c99d606ed6e96'
4
+ data.tar.gz: 0f49377f8092f1170da75ffda17f65c0213f77bdc1ed371c6993f4b016b4ca9d
5
5
  SHA512:
6
- metadata.gz: 0e6a6ea95a2ddb21c93234d202701347079cb1d441e28f9d388065c5484ca44f3d312faa94b160a5c0e73b76cd675c3a3dee8caec2c36f4541ce1685a47355fa
7
- data.tar.gz: b2336082e2bd82876bbefa371191ad20ff3d68cf03a96ee3fac2ded425a4e95f1f12a07d6001f6ed9c3add3febc32051700c44fee49187332ce94fb101b8c0e4
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.3)
4
+ security (0.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- rake (0.9.2.2)
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 (~> 0.9.2)
17
- rspec (~> 0.6.1)
15
+ rake (~> 12.3, >= 12.3.3)
18
16
  security!
17
+
18
+ BUNDLED WITH
19
+ 2.1.4
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Mattt Thompson (http://mattt.me/)
1
+ Copyright (c) 2012 – 2021 Mattt (https://mat.tt/)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,24 +1,23 @@
1
1
  # Security
2
- **Library for interacting with the Mac OS X Keychain**
3
2
 
4
- > This library currently only implements the necessary commands for password management for [Cupertino](https://github.com/mattt/cupertino). As such, some methods are stubbed out to raise `NotImplementedError`.
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/johnnyappleseed/Library/Keychains/login.keychain"
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
- ## Contact
15
-
16
- Mattt Thompson
17
+ ## License
17
18
 
18
- - http://github.com/mattt
19
- - http://twitter.com/mattt
20
- - m@mattt.me
19
+ MIT
21
20
 
22
- ## License
21
+ ## Contact
23
22
 
24
- Security is available under the MIT license. See the LICENSE file for more info.
23
+ Mattt ([@mattt](https://twitter.com/mattt))
@@ -1,3 +1,3 @@
1
1
  module Security
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
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 Thompson"]
8
- s.email = "m@mattt.me"
9
- s.homepage = "http://mattt.me"
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.summary = "Security"
13
- s.description = "Library for interacting with the Mac OS X Keychain"
12
+ s.license = "MIT"
13
+ s.summary = "Interact with the macOS Keychain"
14
14
 
15
- s.add_development_dependency "rspec", "~> 0.6.1"
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.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
- - Mattt Thompson
7
+ - Mattt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-05 00:00:00.000000000 Z
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: 0.9.2
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: 0.9.2
41
- description: Library for interacting with the Mac OS X Keychain
42
- email: m@mattt.me
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
- - ./lib/security/certificate.rb
50
- - ./lib/security/keychain.rb
51
- - ./lib/security/password.rb
52
- - ./lib/security/version.rb
53
- - ./lib/security.rb
54
- - ./LICENSE
55
- - ./Rakefile
56
- - ./README.md
57
- - ./security.gemspec
58
- homepage: http://mattt.me
59
- licenses: []
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
- rubyforge_project:
77
- rubygems_version: 2.1.11
70
+ rubygems_version: 3.1.2
78
71
  signing_key:
79
72
  specification_version: 4
80
- summary: Security
73
+ summary: Interact with the macOS Keychain
81
74
  test_files: []