canivete icon indicating copy to clipboard operation
canivete copied to clipboard

ruby future swiss knife

Canivete - Ruby Not-so-swiss knife

Basically this gem provides you with a very handy set of utilities. Currently, only the deprecate functionality is included

Instructions:

	gem install canivete

	require  'canivete/deprecate'

	class Test
		include Canivete::Deprecate

		deprecate
		def soon_to_die_method
			puts "goodbye"
		end
	end

	Test.new.soon_to_die_method
	Warning: calling deprecated method Test.soon_to_die_method

CI Server running here