This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| module A | |
| def self.included(target) | |
| v = target.instance_methods.include?(:method_name) | |
| puts "in included: #{v}" | |
| end | |
| def self.append_features(target) | |
| v = target.instance_methods.include?(:method_name) | |
| puts "in append features before: #{v}" | |
| super |