Sha256: 3aa0875df06393edf3d440deefe2e9d059b39ba5fa67860a5a5cb887ea0a6a8e
Contents?: true
Size: 1.11 KB
Versions: 16
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'petergate/version' Gem::Specification.new do |spec| spec.name = "petergate" spec.version = Petergate::VERSION spec.authors = ["Isaac Sloan"] spec.email = ["isaac@isaacsloan.com"] spec.summary = %q{Authorization system allowing verbose easy read controller syntax.} spec.description = %q{If you like the straight forward and effective nature of Strong Parameters and suspect that CanCan might be overkill for your project then you'll love Petergate's easy to use and read action and content based authorizations.} spec.homepage = "https://github.com/isaacsloan/petergate" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").delete_if{|p| p.include?("dummy/")} spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" spec.add_dependency 'activerecord', "> 4.0.0" end
Version data entries
16 entries across 16 versions & 1 rubygems