Sha256: 63ecf979056e6e2f59c7e0f3d5cafff1677e4696ade76fffdd737b89a9a22252
Contents?: true
Size: 1 KB
Versions: 12
Compression:
Stored size: 1 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/authority/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Nathan Long", "Adam Hunter"] gem.email = ["nathanmlong@gmail.com", "adamhunter@me.com"] gem.summary = %q{Authority helps you authorize actions in your Rails app using plain Ruby methods on Authorizer classes.} gem.description = %q{Authority helps you authorize actions in your Rails app. It's ORM-neutral and has very little fancy syntax; just group your models under one or more Authorizer classes and write plain Ruby methods on them.} gem.homepage = "https://github.com/nathanl/authority" gem.add_dependency "rails", ">= 3.0.0" gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "authority" gem.require_paths = ["lib"] gem.version = Authority::VERSION end
Version data entries
12 entries across 12 versions & 1 rubygems