RIP RUN_CODE_RUN
This commit is contained in:
parent
8cc90e0175
commit
9ab44866bb
18
Rakefile
18
Rakefile
@ -1,18 +1,3 @@
|
|||||||
if ENV['RUN_CODE_RUN']
|
|
||||||
# We need to checkout edge haml for the run>code>run test environment.
|
|
||||||
if File.directory?("haml")
|
|
||||||
Dir.chdir("haml") do
|
|
||||||
sh "git", "fetch"
|
|
||||||
end
|
|
||||||
else
|
|
||||||
sh "git", "clone", "git://github.com/nex3/haml.git"
|
|
||||||
end
|
|
||||||
Dir.chdir("haml") do
|
|
||||||
sh "git", "reset", "--hard", "origin/stable"
|
|
||||||
end
|
|
||||||
$LOAD_PATH.unshift "haml/lib"
|
|
||||||
end
|
|
||||||
|
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require 'rake'
|
require 'rake'
|
||||||
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
||||||
@ -28,7 +13,6 @@ require 'fileutils'
|
|||||||
Rake::TestTask.new :run_tests do |t|
|
Rake::TestTask.new :run_tests do |t|
|
||||||
t.libs << 'lib'
|
t.libs << 'lib'
|
||||||
t.libs << 'test'
|
t.libs << 'test'
|
||||||
t.libs << 'haml/lib' if ENV["RUN_CODE_RUN"]
|
|
||||||
test_files = FileList['test/**/*_test.rb']
|
test_files = FileList['test/**/*_test.rb']
|
||||||
test_files.exclude('test/rails/*', 'test/haml/*')
|
test_files.exclude('test/rails/*', 'test/haml/*')
|
||||||
t.test_files = test_files
|
t.test_files = test_files
|
||||||
@ -58,7 +42,6 @@ begin
|
|||||||
gemspec.files << "REVISION"
|
gemspec.files << "REVISION"
|
||||||
gemspec.files << "VERSION.yml"
|
gemspec.files << "VERSION.yml"
|
||||||
gemspec.files << "Rakefile"
|
gemspec.files << "Rakefile"
|
||||||
gemspec.files << "deps.rip"
|
|
||||||
gemspec.files += Dir.glob("bin/*")
|
gemspec.files += Dir.glob("bin/*")
|
||||||
gemspec.files += Dir.glob("examples/**/*.*")
|
gemspec.files += Dir.glob("examples/**/*.*")
|
||||||
gemspec.files -= Dir.glob("examples/**/*.css")
|
gemspec.files -= Dir.glob("examples/**/*.css")
|
||||||
@ -162,7 +145,6 @@ namespace :rcov do
|
|||||||
|
|
||||||
Rcov::RcovTask.new(:units) do |rcov|
|
Rcov::RcovTask.new(:units) do |rcov|
|
||||||
rcov.libs << 'lib'
|
rcov.libs << 'lib'
|
||||||
rcov.libs << 'haml/lib' if ENV["RUN_CODE_RUN"]
|
|
||||||
test_files = FileList['test/**/*_test.rb']
|
test_files = FileList['test/**/*_test.rb']
|
||||||
test_files.exclude('test/rails/*', 'test/haml/*')
|
test_files.exclude('test/rails/*', 'test/haml/*')
|
||||||
rcov.pattern = test_files
|
rcov.pattern = test_files
|
||||||
|
Loading…
Reference in New Issue
Block a user