Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created December 24, 2016 19:21
Show Gist options
  • Save bleonard/9a3d21c31c0845683f77a6e719f5d7f4 to your computer and use it in GitHub Desktop.
Save bleonard/9a3d21c31c0845683f77a6e719f5d7f4 to your computer and use it in GitHub Desktop.
module VCR
extend self
def current_cassette
cassetes.last
end
def configure
yield configuration
end
def configuration
@configuration ||= Configuration.new
end
private
def cassettes
@cassettes ||= []
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment