varvet--pundit/pundit.gemspec

22 lines
830 B
Ruby
Raw Normal View History

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