mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
only define gem packaging tasks if rubygems is already loaded
This commit is contained in:
parent
fed9db5504
commit
0781c28fc3
1 changed files with 70 additions and 70 deletions
80
Rakefile
80
Rakefile
|
@ -5,6 +5,11 @@ require 'fileutils'
|
||||||
task :default => :test
|
task :default => :test
|
||||||
task :spec => :test
|
task :spec => :test
|
||||||
|
|
||||||
|
def source_version
|
||||||
|
line = File.read('lib/sinatra/base.rb')[/^\s*VERSION = .*/]
|
||||||
|
line.match(/.*VERSION = '(.*)'/)[1]
|
||||||
|
end
|
||||||
|
|
||||||
# SPECS ===============================================================
|
# SPECS ===============================================================
|
||||||
|
|
||||||
Rake::TestTask.new(:test) do |t|
|
Rake::TestTask.new(:test) do |t|
|
||||||
|
@ -12,8 +17,43 @@ Rake::TestTask.new(:test) do |t|
|
||||||
t.ruby_opts = ['-rubygems -I.'] if defined? Gem
|
t.ruby_opts = ['-rubygems -I.'] if defined? Gem
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Rcov ================================================================
|
||||||
|
namespace :test do
|
||||||
|
desc 'Mesures test coverage'
|
||||||
|
task :coverage do
|
||||||
|
rm_f "coverage"
|
||||||
|
rcov = "rcov --text-summary --test-unit-only -Ilib"
|
||||||
|
system("#{rcov} --no-html --no-color test/*_test.rb")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Website =============================================================
|
||||||
|
# Building docs requires HAML and the hanna gem:
|
||||||
|
# gem install mislav-hanna --source=http://gems.github.com
|
||||||
|
|
||||||
|
desc 'Generate RDoc under doc/api'
|
||||||
|
task 'doc' => ['doc:api']
|
||||||
|
|
||||||
|
task 'doc:api' => ['doc/api/index.html']
|
||||||
|
|
||||||
|
file 'doc/api/index.html' => FileList['lib/**/*.rb','README.rdoc'] do |f|
|
||||||
|
rb_files = f.prerequisites
|
||||||
|
sh((<<-end).gsub(/\s+/, ' '))
|
||||||
|
hanna --charset utf8 \
|
||||||
|
--fmt html \
|
||||||
|
--inline-source \
|
||||||
|
--line-numbers \
|
||||||
|
--main README.rdoc \
|
||||||
|
--op doc/api \
|
||||||
|
--title 'Sinatra API Documentation' \
|
||||||
|
#{rb_files.join(' ')}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
CLEAN.include 'doc/api'
|
||||||
|
|
||||||
# PACKAGING ============================================================
|
# PACKAGING ============================================================
|
||||||
|
|
||||||
|
if defined?(Gem)
|
||||||
# Load the gemspec using the same limitations as github
|
# Load the gemspec using the same limitations as github
|
||||||
def spec
|
def spec
|
||||||
require 'rubygems' unless defined? Gem::Specification
|
require 'rubygems' unless defined? Gem::Specification
|
||||||
|
@ -49,37 +89,6 @@ file package('.tar.gz') => %w[pkg/] + spec.files do |f|
|
||||||
SH
|
SH
|
||||||
end
|
end
|
||||||
|
|
||||||
# Website ============================================================
|
|
||||||
# Building docs requires HAML and the hanna gem:
|
|
||||||
# gem install mislav-hanna --source=http://gems.github.com
|
|
||||||
|
|
||||||
task 'doc' => ['doc:api']
|
|
||||||
|
|
||||||
desc 'Generate Hanna RDoc under doc/api'
|
|
||||||
task 'doc:api' => ['doc/api/index.html']
|
|
||||||
|
|
||||||
file 'doc/api/index.html' => FileList['lib/**/*.rb','README.rdoc'] do |f|
|
|
||||||
rb_files = f.prerequisites
|
|
||||||
sh((<<-end).gsub(/\s+/, ' '))
|
|
||||||
hanna --charset utf8 \
|
|
||||||
--fmt html \
|
|
||||||
--inline-source \
|
|
||||||
--line-numbers \
|
|
||||||
--main README.rdoc \
|
|
||||||
--op doc/api \
|
|
||||||
--title 'Sinatra API Documentation' \
|
|
||||||
#{rb_files.join(' ')}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
CLEAN.include 'doc/api'
|
|
||||||
|
|
||||||
# Gemspec Helpers ====================================================
|
|
||||||
|
|
||||||
def source_version
|
|
||||||
line = File.read('lib/sinatra/base.rb')[/^\s*VERSION = .*/]
|
|
||||||
line.match(/.*VERSION = '(.*)'/)[1]
|
|
||||||
end
|
|
||||||
|
|
||||||
task 'sinatra.gemspec' => FileList['{lib,test,compat}/**','Rakefile','CHANGES','*.rdoc'] do |f|
|
task 'sinatra.gemspec' => FileList['{lib,test,compat}/**','Rakefile','CHANGES','*.rdoc'] do |f|
|
||||||
# read spec file and split out manifest section
|
# read spec file and split out manifest section
|
||||||
spec = File.read(f.name)
|
spec = File.read(f.name)
|
||||||
|
@ -101,13 +110,4 @@ task 'sinatra.gemspec' => FileList['{lib,test,compat}/**','Rakefile','CHANGES','
|
||||||
File.open(f.name, 'w') { |io| io.write(spec) }
|
File.open(f.name, 'w') { |io| io.write(spec) }
|
||||||
puts "updated #{f.name}"
|
puts "updated #{f.name}"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Rcov ==============================================================
|
|
||||||
namespace :test do
|
|
||||||
desc 'Mesures test coverage'
|
|
||||||
task :coverage do
|
|
||||||
rm_f "coverage"
|
|
||||||
rcov = "rcov --text-summary --test-unit-only -Ilib"
|
|
||||||
system("#{rcov} --no-html --no-color test/*_test.rb")
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue