forked from jruby/jruby-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjruby-parser.gemspec
More file actions
24 lines (20 loc) · 812 Bytes
/
jruby-parser.gemspec
File metadata and controls
24 lines (20 loc) · 812 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "jruby-parser/version"
files = `git ls-files -- lib/* spec/* sample/*`.split("\n")
files << 'lib/jruby-parser.jar'
Gem::Specification.new do |s|
s.name = 'jruby-parser'
s.version = JRubyParser::VERSION
s.platform = Gem::Platform::RUBY
s.authors = 'Thomas E. Enebo'
s.email = 'tom.enebo@gmail.com'
s.homepage = 'http://github.com/jruby/jruby-parser'
s.summary = %q{A Gem for syntactically correct parse trees of Ruby source}
s.description = %q{A Gem for syntactically correct parse trees of Ruby source}
s.rubyforge_project = "jruby-parser"
s.files = files
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.has_rdoc = true
end