forked from natalie-lang/natalie_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnatalie_parser.gemspec
More file actions
23 lines (18 loc) · 890 Bytes
/
natalie_parser.gemspec
File metadata and controls
23 lines (18 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'natalie_parser/version'
Gem::Specification.new do |spec|
spec.name = 'natalie_parser'
spec.version = NatalieParser::VERSION
spec.authors = ['Tim Morgan']
spec.email = ['tim@timmorgan.org']
spec.summary = 'A Parser for the Ruby Programming Language'
spec.description = 'NatalieParser is a zero-dependency, from-scratch, hand-written recursive descent parser for the Ruby Programming Language.'
spec.homepage = 'https://github.com/natalie-lang/natalie_parser'
spec.license = 'MIT'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files`.split("\n").reject { |f| f.match(%r{^(test|\.)}) }
end
spec.require_paths = ['lib', 'ext']
spec.extensions = %w[ext/natalie_parser/extconf.rb]
end