Skip to content

Commit

Permalink
Make CI Reporter optional
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel authored and rkh committed Jun 9, 2011
1 parent b18cebe commit b727870
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -11,7 +11,7 @@ source :rubygems unless ENV['QUICK']

gem 'rake', '~> 0.8.7'
gem 'rack-test', '>= 0.5.6'
gem 'ci_reporter'
gem 'ci_reporter', :group => :ci

# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
# Used by the CI.
Expand Down
9 changes: 7 additions & 2 deletions Rakefile
Expand Up @@ -2,7 +2,12 @@ require 'rake/clean'
require 'rake/testtask'
require 'fileutils'
require 'date'
require 'ci/reporter/rake/test_unit'

# CI Reporter is only needed for the CI
begin
require 'ci/reporter/rake/test_unit'
rescue LoadError
end

task :default => :test
task :spec => :test
Expand Down Expand Up @@ -78,7 +83,7 @@ task :add_template, [:name] do |t, args|
puts "Liquid not found in #{file}"
else
puts "Adding section to #{file}"
template = template.gsub(/Liquid/, args.name.capitalize).gsub(/liquid/, args.name.downcase)
template = template.gsub(/Liquid/, args.name.capitalize).gsub(/liquid/, args.name.downcase)
code.gsub! /^(\s*===.*CoffeeScript)/, "\n" << template << "\n\\1"
File.open(file, "w") { |f| f << code }
end
Expand Down

0 comments on commit b727870

Please sign in to comment.