-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathrinku.gemspec
44 lines (42 loc) · 1.09 KB
/
rinku.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
44
Gem::Specification.new do |s|
s.name = 'rinku'
s.version = '2.0.6'
s.summary = "Mostly autolinking"
s.description = <<-EOF
A fast and very smart autolinking library that
acts as a drop-in replacement for Rails `auto_link`
EOF
s.email = 'vicent@github.com'
s.homepage = 'https://github.com/vmg/rinku'
s.authors = ["Vicent Marti"]
s.license = 'ISC'
# = MANIFEST =
s.files = %w[
COPYING
README.markdown
Rakefile
ext/rinku/autolink.c
ext/rinku/autolink.h
ext/rinku/buffer.c
ext/rinku/buffer.h
ext/rinku/extconf.rb
ext/rinku/rinku.c
ext/rinku/rinku.h
ext/rinku/rinku_rb.c
ext/rinku/utf8.c
ext/rinku/utf8.h
lib/rails_rinku.rb
lib/rinku.rb
rinku.gemspec
test/autolink_test.rb
]
# = MANIFEST =
s.test_files = ["test/autolink_test.rb"]
s.extra_rdoc_files = ["COPYING"]
s.extensions = ["ext/rinku/extconf.rb"]
s.require_paths = ["lib"]
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler"
s.add_development_dependency "minitest", ">= 5.0"
s.required_ruby_version = '>= 2.0.0'
end