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
29 lines (24 loc) · 996 Bytes
/
unparser.gemspec
File metadata and controls
29 lines (24 loc) · 996 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
29
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'unparser'
gem.version = '0.2.4'
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 = '>= 1.9.3'
gem.add_dependency('parser', '~> 2.2.2')
gem.add_dependency('procto', '~> 0.0.2')
gem.add_dependency('concord', '~> 0.1.5')
gem.add_dependency('adamantium', '~> 0.2.0')
gem.add_dependency('equalizer', '~> 0.0.9')
gem.add_dependency('abstract_type', '~> 0.0.7')
gem.add_dependency('diff-lcs', '~> 1.2.5')
end