Sha256: 3b9b35744d404a301d678392fdf65a6ddff3f0267994d8d7d7ee618e500affe1
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
#!/usr/bin/env rake require 'bundler/gem_tasks' require 'json' task :default => ['validate:json'] namespace :validate do desc 'Validate mock platform data is valid JSON' task :json do failure = false Dir.glob('./lib/fauxhai/platforms/**/*.json') do |file| begin JSON.parse(File.read(file)) rescue JSON::ParserError => e failure = true puts "Failed to parse #{file}." end end exit! if failure puts 'JSON files validated' end end namespace :documentation do desc 'Update the PLATFORMS.md file with a list of all platforms' task :update_platforms do File.delete('PLATFORMS.md') if File.exist?('PLATFORMS.md') f = File.new('PLATFORMS.md', 'w') f.write "## Fauxhai Platforms\n\nThis file lists each platform known to Fauxhai and the available versions for each of those platforms. See the ChefSpec documentation for mocking out platforms and platform versions within ChefSpec.\n" Dir.glob('./lib/fauxhai/platforms/**') do |platform_path| f.write "\n### #{platform_path.split('/')[-1]}\n\n" Dir.glob(File.join(platform_path, '**.json')).each do |version_path| f.write " - #{version_path.split('/')[-1].chomp('.json')}\n" end end f.close end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fauxhai-4.1.0 | Rakefile |
fauxhai-4.0.2 | Rakefile |
fauxhai-4.0.1 | Rakefile |