-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathignorance.gemspec
26 lines (22 loc) · 1.09 KB
/
ignorance.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ignorance/version'
Gem::Specification.new do |gem|
gem.name = "ignorance"
gem.version = Ignorance::VERSION
gem.authors = ["Joel Helbling"]
gem.email = ["joel@joelhelbling.com"]
gem.description = %q{Ensures specified files are ignored by Git, Mercurial or SVN.}
gem.summary = %q{Ignorance helps your code be considerate of its users by protecting sensitive information from version control.}
gem.homepage = "http://github.com/joelhelbling/ignorance"
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"]
gem.add_dependency 'highline', '~> 2.0'
gem.add_development_dependency 'rspec', '~> 3.9'
gem.add_development_dependency 'fakefs', '~> 1.2'
gem.add_development_dependency 'rake', '13.0.1'
gem.add_development_dependency 'pry', '~> 0.13'
end