加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
command-t.gemspec 942 Bytes
一键复制 编辑 原始数据 按行查看 历史
Greg Hurrell 提交于 2016-01-25 00:02 . Tweak gemspec
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 ruby doc`.split("\x0")
s.license = 'BSD'
s.require_path = 'ruby'
s.extensions = 'ruby/command-t/extconf.rb'
s.executables = []
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化