forked from ngty/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sourcify.gemspec
31 lines (26 loc) · 1.06 KB
/
sourcify.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sourcify/version"
Gem::Specification.new do |s|
s.name = "sourcify"
s.version = Sourcify::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["NgTzeYang"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/ngty/sourcify"
s.summary = %q{Workarounds before ruby-core officially supports Proc#to_source (& friends)}
s.description = %q{}
s.add_dependency 'ruby2ruby', '~> 1.3.1'
s.add_dependency 'sexp_processor', '~> 3.2.0'
s.add_dependency 'ruby_parser', '~> 2.3.1'
s.add_dependency 'file-tail', '~> 1.0.10'
s.add_development_dependency 'bacon'
s.add_development_dependency 'pry'
# ParseTree (better performance + dynamic goodness, but not supported on java & 1.9.*),
# optional for any 1.8.*.
#s.add_dependency "ParseTree", ">= 3.0.6"
s.extra_rdoc_files = ["README.rdoc"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
end