Sha256: e6b93b9a781119c64c25fbbe167b4e40b99c985bb69474e97944f0e42f047f63

Contents?: true

Size: 780 Bytes

Versions: 73

Compression:

Stored size: 780 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]
# ========================================== 

require'yaml'

module RakefileHelpers
  class TestFileFilter
    def initialize(all_files = false)
      @all_files = all_files
      if not @all_files == true
        if File.exist?('test_file_filter.yml')
          filters = YAML.load_file( 'test_file_filter.yml' )
          @all_files, @only_files, @exclude_files = 
            filters[:all_files], filters[:only_files], filters[:exclude_files] 
        end
      end
    end		
    attr_accessor :all_files, :only_files, :exclude_files
  end
end

Version data entries

73 entries across 41 versions & 3 rubygems

Version Path
ceedling-0.25.0 vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.25.0 vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.25.0 vendor/cmock/vendor/unity/auto/test_file_filter.rb
ceedling-0.25.0 vendor/unity/auto/test_file_filter.rb
ceedling-0.24.0 vendor/cmock/vendor/unity/auto/test_file_filter.rb
ceedling-0.24.0 vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.24.0 vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.24.0 vendor/unity/auto/test_file_filter.rb
ceedling-0.22.0 vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.22.0 vendor/unity/auto/test_file_filter.rb
ceedling-0.22.0 vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.22.0 vendor/cmock/vendor/unity/auto/test_file_filter.rb
ceedling-0.21.0 vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.21.0 vendor/unity/auto/test_file_filter.rb
ceedling-0.21.0 vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.21.0 vendor/cmock/vendor/unity/auto/test_file_filter.rb
ceedling-0.20.3 vendor/cmock/vendor/unity/auto/test_file_filter.rb
ceedling-0.20.3 vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.20.3 vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
ceedling-0.20.3 vendor/unity/auto/test_file_filter.rb