forked from mbj/unparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunparser.gemspec
More file actions
28 lines (23 loc) · 931 Bytes
/
unparser.gemspec
File metadata and controls
28 lines (23 loc) · 931 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
28
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'unparser'
gem.version = '0.1.9'
gem.authors = ['Markus Schirp']
gem.summary = 'Generate equivalent source for parser gem AST nodes'
gem.description = gem.summary
gem.homepage = 'http://github.com/mbj/unparser'
gem.license = 'MIT'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec,features}/*`.split("\n")
gem.require_paths = %w(lib)
gem.extra_rdoc_files = %w(README.md)
gem.executables = [ 'unparser' ]
gem.required_ruby_version
gem.add_dependency('parser', '~> 2.1.0')
gem.add_dependency('procto', '~> 0.0.2')
gem.add_dependency('concord', '~> 0.1.4')
gem.add_dependency('adamantium', '~> 0.1')
gem.add_dependency('equalizer', '~> 0.0.7')
gem.add_dependency('abstract_type', '~> 0.0.7')
end