forked from nathanl/authority
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthority.gemspec
23 lines (19 loc) · 1.14 KB
/
authority.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/authority/version', __FILE__)
Gem::Specification.new do |gem|
gem.license = 'MIT'
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 "activesupport", ">= 3.0.0"
gem.add_development_dependency "rake", ">= 0.8.7"
gem.add_development_dependency "rspec", "~> 3.3.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