Created
December 24, 2016 19:21
-
-
Save bleonard/9a3d21c31c0845683f77a6e719f5d7f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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