forked from jheiss/keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyring.gemspec
33 lines (28 loc) · 1.22 KB
/
keyring.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
27
28
29
30
31
32
33
# coding: utf-8
# keyring: System keyring abstraction library
# License: MIT (http://www.opensource.org/licenses/mit-license.php)
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'keyring/version'
Gem::Specification.new do |spec|
spec.name = "keyring"
spec.version = Keyring::VERSION
spec.authors = ["Jason Heiss"]
spec.email = ["[email protected]"]
spec.description = %q{This library provides a easy way to access the system keyring service from ruby}
spec.summary = %q{Store and access your passwords safely}
spec.homepage = "https://github.com/jheiss/keyring"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency 'mocha'
spec.add_dependency 'slop', "< 4.0"
spec.extensions = %w[ext/mkrf_conf.rb]
# if RUBY_PLATFORM =~ /linux/
# spec.add_dependency 'gir_ffi-gnome_keyring', '~> 0.0.3'
# end
end