forked from wincent/command-t
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command-t.gemspec
36 lines (27 loc) · 1 KB
/
command-t.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
Gem::Specification.new do |s|
s.name = 'command-t'
# see note in the Rakefile about how intermediate version numbers
# can break RubyGems
v = `git describe --abbrev=0`.chomp
s.version = v
s.authors = ['Greg Hurrell']
s.email = 'greg@hurrell.net'
files =
['README.txt', 'LICENSE', 'Gemfile', 'Rakefile'] +
Dir.glob('{ruby,doc,plugin}/**/*')
files = files.reject { |f| f =~ /\.(rbc|o|log|plist|dSYM)/ }
s.files = files
s.license = 'BSD'
s.require_path = 'ruby'
s.extensions = 'ruby/command-t/extconf.rb'
s.executables = []
s.has_rdoc = false
s.homepage = 'https://wincent.com/products/command-t'
s.summary = 'The Command-T plug-in for VIM.'
s.description = <<-EOS
Command-T provides a fast, intuitive mechanism for opening files with a
minimal number of keystrokes. Its full functionality is only available when
installed as a Vim plug-in, but it is also made available as a RubyGem so
that other applications can make use of its searching algorithm.
EOS
end