-
Notifications
You must be signed in to change notification settings - Fork 0
/
fast_method_source.gemspec
31 lines (29 loc) · 1.11 KB
/
fast_method_source.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
Gem::Specification.new do |s|
s.name = 'fast_method_source'
s.version = File.read('VERSION')
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Retrieves the source code for a method (and its comment)'
s.description = 'Retrieves the source code for a method (and its comment) and does it faster than any other existing solution'
s.author = 'Kyrylo Silin'
s.email = '[email protected]'
s.homepage = 'https://github.com/kyrylo/fast_method_source'
s.licenses = 'Zlib'
s.require_path = 'lib'
s.files = %w[
ext/fast_method_source/extconf.rb
ext/fast_method_source/fast_method_source.c
ext/fast_method_source/node.h
lib/fast_method_source.rb
lib/fast_method_source/core_ext.rb
VERSION
README.md
CHANGELOG.md
LICENCE.txt
]
s.extensions = ['ext/fast_method_source/extconf.rb']
s.platform = Gem::Platform::RUBY
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'rake-compiler', '~> 0.9'
s.add_development_dependency 'minitest', '~> 5.7'
end