1
0
Fork 0
mirror of https://github.com/varvet/pundit.git synced 2022-11-09 12:30:11 -05:00
varvet--pundit/pundit.gemspec

22 lines
827 B
Ruby
Raw Normal View History

lib = File.expand_path("lib", __dir__)
2012-11-04 10:20:45 +01:00
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2016-01-14 15:15:30 +01:00
require "pundit/version"
2012-11-04 10:20:45 +01:00
Gem::Specification.new do |gem|
gem.name = "pundit"
gem.version = Pundit::VERSION
2012-11-19 13:04:07 +01:00
gem.authors = ["Jonas Nicklas", "Elabs AB"]
gem.email = ["jonas.nicklas@gmail.com", "dev@elabs.se"]
2016-01-14 15:15:30 +01:00
gem.description = "Object oriented authorization for Rails applications"
gem.summary = "OO authorization for Rails"
2018-07-04 20:30:06 +02:00
gem.homepage = "https://github.com/varvet/pundit"
2013-10-04 13:36:35 +02:00
gem.license = "MIT"
2012-11-04 10:20:45 +01:00
gem.files = `git ls-files`.split($/)
2016-01-14 15:15:30 +01:00
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
2012-11-04 10:20:45 +01:00
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
2012-11-19 13:02:42 +01:00
2013-06-18 01:11:15 +02:00
gem.add_dependency "activesupport", ">= 3.0.0"
2012-11-04 10:20:45 +01:00
end