mirror of
				https://github.com/varvet/pundit.git
				synced 2022-11-09 12:30:11 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			698 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			698 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- encoding: utf-8 -*-
 | 
						|
lib = File.expand_path('../lib', __FILE__)
 | 
						|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 | 
						|
require 'pundit/version'
 | 
						|
 | 
						|
Gem::Specification.new do |gem|
 | 
						|
  gem.name          = "pundit"
 | 
						|
  gem.version       = Pundit::VERSION
 | 
						|
  gem.authors       = ["Jonas Nicklas"]
 | 
						|
  gem.email         = ["jonas.nicklas@gmail.com"]
 | 
						|
  gem.description   = %q{TODO: Write a gem description}
 | 
						|
  gem.summary       = %q{TODO: Write a gem summary}
 | 
						|
  gem.homepage      = ""
 | 
						|
 | 
						|
  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{^(test|spec|features)/})
 | 
						|
  gem.require_paths = ["lib"]
 | 
						|
end
 |