-
Notifications
You must be signed in to change notification settings - Fork 1
/
diligent.gemspec
32 lines (28 loc) · 1.24 KB
/
diligent.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'diligent/version'
Gem::Specification.new do |s|
s.name = 'diligent'
s.version = Diligent::VERSION.dup
s.platform = Gem::Platform::RUBY
s.date = '2014-03-24'
s.summary = "Comb your gems for licensing info and collate it nicely for the lawyers."
s.description = "Comb your gems for licensing info and collate it nicely for the lawyers."
s.authors = [ "Jonathan Vaught" ]
s.email = '[email protected]'
s.files = `git ls-files`.split("\n")
s.executables = [ "diligent" ]
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = [ "lib" ]
s.homepage =
'https://github.com/copyhacker/diligent'
s.license = 'MIT'
s.add_runtime_dependency 'thor', '~> 0.19'
s.add_runtime_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'awesome_print', '~> 1.2'
s.add_development_dependency 'guard', '~> 2.6'
s.add_development_dependency 'guard-rspec', '~> 4.2'
s.add_development_dependency 'nokogiri', '~> 1.6'
s.add_development_dependency 'pry', '~> 0.9'
s.add_development_dependency 'rspec', '~> 3.0'
end