Sha256: 97608d68bb32171cff9039f728ac37e2ec20331399a7199cb5e2a04c14854fc1

Contents?: true

Size: 1.35 KB

Versions: 17

Compression:

Stored size: 1.35 KB

Contents

# 
# Style Fixup Rake Tasks
# $Id: style.rb 10 2008-07-18 15:52:48Z deveiant $
# 
# Authors:
# * Michael Granger <ged@FaerieMUD.org>
# 


### Coding style checks and fixes
namespace :style do
	
	BLANK_LINE = /^\s*$/
	GOOD_INDENT = /^(\t\s*)?\S/

	# A list of the files that have legitimate leading whitespace, etc.
	PROBLEM_FILES = [ SPECDIR + 'config_spec.rb' ]
	
	desc "Check source files for inconsistent indent and fix them"
	task :fix_indent do
		files = LIB_FILES + SPEC_FILES

		badfiles = Hash.new {|h,k| h[k] = [] }
		
		trace "Checking files for indentation"
		files.each do |file|
			if PROBLEM_FILES.include?( file )
				trace "  skipping problem file #{file}..."
				next
			end
			
			trace "  #{file}"
			linecount = 0
			file.each_line do |line|
				linecount += 1
				
				# Skip blank lines
				next if line =~ BLANK_LINE
				
				# If there's a line with incorrect indent, note it and skip to the 
				# next file
				if line !~ GOOD_INDENT
					trace "    Bad line %d: %p" % [ linecount, line ]
					badfiles[file] << [ linecount, line ]
				end
			end
		end

		if badfiles.empty?
			log "No indentation problems found."
		else
			log "Found incorrect indent in #{badfiles.length} files:\n  "
			badfiles.each do |file, badlines|
				log "  #{file}:\n" +
					"    " + badlines.collect {|badline| "%5d: %p" % badline }.join( "\n    " )
			end
		end
	end

end


Version data entries

17 entries across 17 versions & 6 rubygems

Version Path
bluecloth-2.0.0 rake/style.rb
bluecloth-2.0.1 rake/style.rb
bluecloth-2.0.2 rake/style.rb
bluecloth-2.0.3 rake/style.rb
bluecloth-2.0.4 rake/style.rb
bluecloth-2.0.5 rake/style.rb
darkfish-rdoc-1.1.1 rake/style.rb
darkfish-rdoc-1.1.4 rake/style.rb
darkfish-rdoc-1.1.2 rake/style.rb
darkfish-rdoc-1.1.3 rake/style.rb
darkfish-rdoc-1.1.5 rake/style.rb
io-reactor-1.0.4 rake/style.rb
linkparser-1.0.4 rake/style.rb
linkparser-1.0.3 rake/style.rb
pluginfactory-1.0.4 rake/style.rb
pluginfactory-1.0.3 rake/style.rb
wordnet-0.0.5 rake/style.rb