FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vim-ruby/Rakefile at fish · elithecho/vim-ruby · GitHub
elithecho
/
vim-ruby
Public
forked from
vim-ruby/vim-ruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
vim-ruby
/
Rakefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (35 loc) · 1.37 KB
Breadcrumbs
vim-ruby
/
Rakefile
Copy path
File metadata and controls
42 lines (35 loc) · 1.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
require
'rubygems'
require
'rake/gempackagetask'
PACKAGE_NAME
=
'vim-ruby'
RELEASE_FILES
=
FileList
[
'ChangeLog'
,
'CONTRIBUTORS'
,
'FAQ'
,
'INSTALL'
,
'NEWS'
,
'README'
,
'bin/*.rb'
,
'doc/*.txt'
,
'{autoload,compiler,ftdetect,ftplugin,indent,syntax}/*.vim'
]
PACKAGE_VERSION
=
Time
.
now
.
gmtime
.
strftime
(
'%Y.%m.%d'
)
desc
"Build all the packages"
task
:default
=>
:package
def
gemspec
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
PACKAGE_NAME
s
.
version
=
PACKAGE_VERSION
s
.
files
=
RELEASE_FILES
.
to_a
s
.
summary
=
"Ruby configuration files for Vim. Run 'vim-ruby-install.rb' to complete installation."
s
.
description
=
s
.
summary
+
"
\n
\n
This package doesn't contain a Ruby library."
s
.
requirements
<<
'RubyGems 0.8+'
<<
'Vim 6.0+'
s
.
required_ruby_version
=
'>= 1.8.0'
s
.
require_path
=
'.'
s
.
bindir
=
'bin'
s
.
executables
=
[
'vim-ruby-install.rb'
]
s
.
author
=
'Gavin Sinclair et al.'
s
.
email
=
'gsinclair@soyabean.com.au'
s
.
homepage
=
'https://github.com/vim-ruby/vim-ruby'
s
.
has_rdoc
=
false
end
end
Rake
::
GemPackageTask
.
new
(
gemspec
)
do
|
t
|
t
.
package_dir
=
'etc/package'
t
.
need_tar
=
true
t
.
need_zip
=
true
end
# Supporting methods
# vim: nowrap sw=2 sts=2 ts=8 ff=unix ft=ruby:
Back
|
FazBrowse Home
|
New Git URL