Project

canivete

0.01
No commit activity in last 3 years
No release in over 3 years
ruby not-so swiss knife
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 0.2.0
 Project Readme

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