forked from varvet/pundit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pundit_pure.gemspec
23 lines (19 loc) · 892 Bytes
/
pundit_pure.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 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "pundit_pure/version"
Gem::Specification.new do |gem|
gem.name = "pundit_pure"
gem.version = PunditPure::VERSION
gem.authors = ["Jonas Nicklas", "Elabs AB", "Fran Worley"]
gem.email = ["jonas.nicklas@gmail.com", "dev@elabs.se", "fran.em.worley@googlemail.com"]
gem.description = "Object oriented authorization for POR applications"
gem.summary = "OO authorization for Ruby"
gem.homepage = "https://github.com/fran-worley/pundit_pure"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]
gem.add_dependency "rack"
end