--Inflector--

Inflector is a handly little shoes app that does various unit conversions as you type.
It is easily extendible through a simple plugin model. A fun little toy to play with shoes and ruby.

Currently included inflectors:

AwgInflector - Given an american wire gauge (awg), this plugin will return info about the specific gauge.
			   ex: 26awg 
			   Will give you a table of info on that specific wire gauge
			   Note: This plugin is not completed so the table headings are not yet displayed
			   
CapacitorInflector - Given capacitance values in pF, uF, nF, etc, it will give you equivalents in the other
					 units. 
					 
EvalInflector - Enclose any ruby expression in '' and the result will be displayed. I use this for a quick calculator
				but it can be used with any ruby code.
				ex: '2+34'
				Will display 36
InductorInflector - Same as the CapacitorInflector, but for inductors

LengthInflector - Converts between inches, mm, cm, and mils. More to be added later.
				ex: 12mm
				gives:
				0.427244 in
				1.2 cm
				472.44 mils
				
NumericInflector - I actually use this one. It converts numbers to/from different formats. Between decimal, hexadecimal
				    and binary (max 32-bits when converting from binary - need to fix this later)
				ex: 101b
				gives:
				Decimal: 5
				Hex: 0x5

ResistorInflector: The plan to have this show color codes for a resistance value typed in.

TempInflector: Converts to/from Farenheit and Celsius
			   ex: 	56F
			   gives:
			   56F = 13.33C
				
				

Version History
-----------------
6/23/2009: First release to shoebox