-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeychainsecurity.gemspec
26 lines (22 loc) · 990 Bytes
/
keychainsecurity.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'keychainsecurity'
Gem::Specification.new do |s|
s.name = 'keychainsecurity'
s.authors = ['Krisna Pranav']
s.email = ''
s.homepage = 'https://github.com/krishpranav/keychainsecurity'
s.version = Security::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.summary = 'A Ruby Library Interact with the macOS Keychain'
s.files = Dir['./**/*'].reject { |file| file =~ %r{\./(bin|log|pkg|script|spec|test|vendor)} }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.4.0'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rspec-github'
s.add_development_dependency 'rubocop'
end