# Notes

- support complex constants, eg. 

	Complex(1, 2)
	=> (1+2i)

# Common operations

- version bump

	edit lib/vips/version.rb 
	edit VERSION

- reinstall local copy of gem after a change

	bundle exec rake install

- run test suite

	bundle exec rake 

- regenerate autodocs

	cd lib/vips
	ruby > methods.rb
	require 'vips'; Vips::generate_yard
	^D

- regenerate docs

	bundle exec rake yard

- push new gem to rubygems, tag repository with version

	bundle exec rake release
