Sha256: 9202b33480df69b8324708af5d762ecead877cc1c425231d6a720ce96ca920d1

Contents?: true

Size: 825 Bytes

Versions: 5

Compression:

Stored size: 825 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "security"

Gem::Specification.new do |s|
  s.name        = "security"
  s.authors     = ["Mattt Thompson"]
  s.email       = "m@mattt.me"
  s.homepage    = "http://mattt.me"
  s.version     = Security::VERSION
  s.platform    = Gem::Platform::RUBY
  s.summary     = "Security"
  s.description = "Library for interacting with the Mac OS X Keychain"

  s.add_development_dependency "rspec", "~> 0.6.1"
  s.add_development_dependency "rake",  "~> 0.9.2"

  s.files         = Dir["./**/*"].reject { |file| file =~ /\.\/(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"]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
security-0.1.3 ./security.gemspec
security-0.1.2 ./security.gemspec
security-0.1.1 ./security.gemspec
security-0.1.0 ./security.gemspec
security-0.0.1 ./security.gemspec