Sha256: 8fe434e25c6030498f4bbd02c391b3e09ea40aa48877d59fccd00c0e1698322a

Contents?: true

Size: 511 Bytes

Versions: 5

Compression:

Stored size: 511 Bytes

Contents

require "webmock/rspec"
require "digicert/cli"
require "digicert/rspec"

Dir["./spec/support/**/*.rb"].sort.each { |file| require file }

RSpec.configure do |config|
  # Enable flags like --only-failures and --next-failure
  config.example_status_persistence_file_path = ".rspec_status"

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.before :all do
    Digicert.configure do |digicert_config|
      digicert_config.api_key = ENV["DIGICERT_API_KEY"] || "SECRET_KEY"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
digicert-cli-0.4.2 spec/spec_helper.rb
digicert-cli-0.4.1 spec/spec_helper.rb
digicert-cli-0.4.0 spec/spec_helper.rb
digicert-cli-0.3.0 spec/spec_helper.rb
digicert-cli-0.2.0 spec/spec_helper.rb