Sha256: 4ca52d09d9096fba5522d1c3b309e75f37a169504ce647f0e1d8c64ed3e31d10

Contents?: true

Size: 970 Bytes

Versions: 11

Compression:

Stored size: 970 Bytes

Contents

# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
# ========================================== 

HERE = File.expand_path(File.dirname(__FILE__)) + '/'

require 'rake'
require 'rake/clean'
require 'rake/testtask'
require HERE + 'rakefile_helper'

include RakefileHelpers

# Load default configuration, for now
DEFAULT_CONFIG_FILE = 'gcc_32.yml'
configure_toolchain(DEFAULT_CONFIG_FILE)

task :unit do
  run_tests
end

desc "Build and test Unity Framework"
task :all => [:clean, :unit]
task :default => [:clobber, :all]
task :ci => [:no_color, :default]
task :cruise => [:no_color, :default]

desc "Load configuration"
task :config, :config_file do |t, args|
  configure_toolchain(args[:config_file])
end

task :no_color do
  $colour_output = false
end

Version data entries

11 entries across 10 versions & 1 rubygems

Version Path
ceedling-0.19.0 vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb
ceedling-0.19.0 vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb
ceedling-0.17.0 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.16.0 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.6 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.5 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.4 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.3 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.2 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.1 vendor/unity/extras/fixture/rakefile.rb
ceedling-0.15.0 vendor/unity/extras/fixture/rakefile.rb