forked from documentcloud/closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclosure-compiler.gemspec
More file actions
27 lines (20 loc) · 879 Bytes
/
closure-compiler.gemspec
File metadata and controls
27 lines (20 loc) · 879 Bytes
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
require_relative 'lib/closure-compiler'
Gem::Specification.new do |s|
s.name = 'closure-compiler'
s.version = Closure::VERSION
s.date = '2018-05-31'
s.license = 'Apache-2.0'
s.homepage = "http://github.com/documentcloud/closure-compiler/"
s.summary = "Ruby Wrapper for the Google Closure Compiler"
s.description = <<-EOS
A Ruby Wrapper for the Google Closure Compiler.
EOS
s.rubyforge_project = "closure-compiler"
s.authors = ['Jeremy Ashkenas', 'Jordan Brough']
s.email = 'opensource@documentcloud.org'
s.require_paths = ['lib']
s.rdoc_options << '--title' << 'Ruby Closure Compiler' <<
'--exclude' << 'test' <<
'--all'
s.files = Dir['lib/**/*', 'vendor/**/*', 'closure-compiler.gemspec', 'README.textile', 'LICENSE', 'COPYING']
end