mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 05:03:04 +00:00
98 lines
2.7 KiB
Ruby
98 lines
2.7 KiB
Ruby
# -*- Ruby -*-
|
|
|
|
require 'fileutils'
|
|
|
|
$EMACS=ENV["EMACS"] || "emacs"
|
|
|
|
def find_version
|
|
File.read("yasnippet.el", :encoding => "UTF-8") =~ /;; Package-version: *([0-9.]+?) *$/
|
|
$version = $1
|
|
end
|
|
find_version
|
|
FileUtils.mkdir_p('pkg')
|
|
|
|
desc "run tests in batch mode"
|
|
task :tests do
|
|
batch_run_line = "(yas-batch-run-tests t)"
|
|
sh "#{$EMACS} -Q -L . -l yasnippet-tests.el -nw" +
|
|
" --batch --eval '#{batch_run_line}'"
|
|
end
|
|
|
|
desc "convert some textmate bundles to yasnippets"
|
|
task :convert_bundles do
|
|
Dir.glob "extras/bundles/*-tmbundle" do |bundle_dir|
|
|
puts "Converting from #{bundle_dir}"
|
|
mode_prefix = File.basename(bundle_dir).match(/[^-]*/)[0]
|
|
raise "Couldn't guess mode name for #{bundle_dir}" unless mode_prefix
|
|
output = "./extras/imported/#{mode_prefix}-mode"
|
|
FileUtils.mkdir_p output
|
|
sh "./extras/textmate_import.rb -d #{bundle_dir} -o #{output} -q"
|
|
end
|
|
end
|
|
|
|
desc "create a release package"
|
|
task :package do
|
|
release_dir = "pkg/yasnippet-#{$version}"
|
|
FileUtils.mkdir_p(release_dir)
|
|
files = ['snippets', 'yasnippet.el']
|
|
FileUtils.cp_r files, release_dir
|
|
File.open(File.join(release_dir,'yasnippet-pkg.el'), 'w') do |file|
|
|
file.puts <<END
|
|
(define-package "yasnippet"
|
|
"#{$version}"
|
|
"A template system for Emacs")
|
|
END
|
|
end
|
|
sh "git clean -f snippets"
|
|
FileUtils.cd 'pkg' do
|
|
sh "tar cf yasnippet-#{$version}.tar yasnippet-#{$version}"
|
|
end
|
|
end
|
|
|
|
desc "create a release package and upload it to google code"
|
|
task :release => [:package, 'doc:archive'] do
|
|
raise "Not implemented for github yet!"
|
|
end
|
|
|
|
rule '.html' => '.rst' do |t|
|
|
sh "doc/compile-doc.py #{t.source} > #{t.name}"
|
|
end
|
|
desc "Generate document"
|
|
task :doc => FileList['doc/*.rst'].ext('html')
|
|
|
|
namespace :doc do
|
|
task :archive do
|
|
release_dir = "pkg/yasnippet-#{$version}"
|
|
FileUtils.mkdir_p(release_dir)
|
|
sh "tar cjf pkg/yasnippet-doc-#{$version}.tar.bz2 " +
|
|
"--exclude=doc/.svn --exclude=doc/images/.svn doc/*.html doc/images"
|
|
end
|
|
|
|
task :upload do
|
|
if File.exists? 'doc/gh-pages'
|
|
Dir.chdir 'doc/gh-pages' do
|
|
sh "git checkout gh-pages"
|
|
end
|
|
Dir.glob("doc/*.{html,css}").each do |file|
|
|
FileUtils.cp file, 'doc/gh-pages'
|
|
end
|
|
Dir.glob("doc/images/*").each do |file|
|
|
FileUtils.cp file, 'doc/gh-pages/images'
|
|
end
|
|
Dir.chdir 'doc/gh-pages' do
|
|
sh "git commit -a -m 'Automatic documentation update.'"
|
|
sh "git push"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "Compile yasnippet.el into yasnippet.elc"
|
|
|
|
rule '.elc' => '.el' do |t|
|
|
sh "#{$EMACS} --batch -L . --eval \"(byte-compile-file \\\"#{t.source}\\\")\""
|
|
end
|
|
task :compile => FileList["yasnippet.el"].ext('elc')
|
|
|
|
task :default => :doc
|