Sha256: 94485f9260ff5ba49410abfca199f63b0fb38b5f39654ad736ee06ca79596e44
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ingress/version' Gem::Specification.new do |spec| spec.name = "ingress" spec.version = Ingress::VERSION spec.authors = ["Alan Skorkin"] spec.email = ["alan@skorks.com"] spec.summary = %q{Simple role based authorization for Ruby applications} spec.homepage = "" spec.license = "MIT" spec.metadata = { "bug_tracker_uri" => "https://github.com/skorks/ingress/issues", "source_code_uri" => "https://github.com/skorks/ingress", } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", ">= 1.10", "< 3" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ingress-0.4.0 | ingress.gemspec |
ingress-0.3.0 | ingress.gemspec |