Sha256: a85f65977e83add542a27050816df1ba65afbf6c17d770f2157ca377324a1e5b
Contents?: true
Size: 569 Bytes
Versions: 4
Compression:
Stored size: 569 Bytes
Contents
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'rspec/autorun' require 'digital_ocean' if ENV['RECORDING'] CLIENT_ID = ENV['DIGITAL_OCEAN_CLIENT_ID'] API_KEY = ENV['DIGITAL_OCEAN_API_KEY'] else CLIENT_ID = 'client_id_XXXXXXXXXXXXXXXXXXX' API_KEY = 'api_key_YYYYYYYYYYYYYYYYYYYYY' end RSpec.configure do |c| # VCR: # so we can use :vcr rather than :vcr => true; # in RSpec 3 this will no longer be necessary. c.treat_symbols_as_metadata_keys_with_true_values = true end Dir["./spec/support/**/*.rb"].sort.each {|f| require f}
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
digital_ocean-0.2.0 | spec/spec_helper.rb |
digital_ocean-0.1.0 | spec/spec_helper.rb |
digital_ocean-0.0.1 | spec/spec_helper.rb |
digital_ocean-0.0.1alpha1 | spec/spec_helper.rb |