File: command-t.gemspec

package info (click to toggle)
vim-command-t 5.0.2-5-g7147ba9-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 744 kB
  • sloc: ruby: 3,394; ansic: 1,177; makefile: 27; sh: 26; xml: 11
file content (32 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download
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
Gem::Specification.new do |s|
  s.name = 'command-t'

  # see note in the Rakefile about how intermediate version numbers
  # can break RubyGems
  s.version = `git describe --abbrev=0`.chomp

  s.authors = ['Greg Hurrell']
  s.email = 'greg@hurrell.net'

  s.files =
    ['../../README.md', '../../LICENSE', '../../Gemfile', '../../Rakefile'] +
    `git ls-files -z ./bin ./ext ./lib ../../doc`.split("\x0")

  s.license = 'BSD'
  s.require_paths = ['lib', 'ruby']
  s.extensions = 'ext/command-t/extconf.rb'

  s.executables = ['commandtd']

  s.has_rdoc = false
  s.homepage = 'https://github.com/wincent/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