forked from newrelic/papers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
papers.gemspec
32 lines (24 loc) · 1.03 KB
/
papers.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
27
28
29
30
31
32
# encoding: utf-8
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'papers/version'
Gem::Specification.new do |s|
s.name = 'papers'
s.version = Papers::VERSION
s.summary = 'Validate the licenses of software dependencies you use'
s.description = <<-DESCRIPTION
Validate that the licenses used by your Ruby project's dependencies (both gems
and javascript libraries) conform to a software license whitelist. Don't get
caught flat-footed by the GPL.
DESCRIPTION
s.authors = ['Ralph Bodenner', 'Jade Rubick', 'Andrew Bloomgarden', 'Lucas Charles', 'David Celis']
s.email = '[email protected]'
s.license = 'MIT'
s.homepage = 'http://github.com/newrelic/papers'
s.files = `git ls-files`.split($/)
s.test_files = `git ls-files -- {test,spec,features}/*`.split($/)
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
s.require_paths = ['lib']
# dependencies
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.1.0'
end