forked from mvz/live_ast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
live_ast.gemspec
43 lines (31 loc) · 1.32 KB
/
live_ast.gemspec
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
require File.join(File.dirname(__FILE__), "lib/live_ast/version.rb")
Gem::Specification.new do |spec|
spec.name = "mvz-live_ast"
spec.version = LiveAST::VERSION
spec.summary = "Live abstract syntax trees of methods and procs."
spec.authors = ["James M. Lawrence", "Matijs van Zuijlen"]
spec.email = "[email protected]"
spec.homepage = "https://github.com/mvz/live_ast"
spec.license = "MIT"
spec.description = <<-DESC
LiveAST enables a program to find the ASTs of objects created by dynamically
generated code.
DESC
spec.required_ruby_version = ">= 2.4.0"
spec.files = Dir["{devel,lib,test}/**/*.rb",
"*.rdoc",
"Rakefile"]
spec.test_files = Dir["test/**/*.rb"]
spec.add_runtime_dependency "ruby2ruby", "~> 2.4.0"
spec.add_runtime_dependency "ruby_parser", "~> 3.14"
spec.add_development_dependency "binding_of_caller", "~> 0.8.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rdoc"
spec.rdoc_options = ["--main", "README.rdoc",
"--title", "LiveAST: Live Abstract Syntax Trees",
"--visibility", "private"]
spec.extra_rdoc_files = ["README.rdoc", "CHANGES.rdoc"]
spec.require_paths = ["lib"]
end