Sha256: eff69c0c4ac118b8af973d68c3cb2f43d7b51eb049092e7c49eca692b97ea069

Contents?: true

Size: 877 Bytes

Versions: 2

Compression:

Stored size: 877 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

require "coveralls"
Coveralls.wear!

%w{
  rspec/its
  ruby_speech
}.each { |f| require f }

Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}

schema_file_path = File.expand_path File.join(__FILE__, '../../assets/synthesis.xsd')
puts "Loading the SSML Schema from #{schema_file_path}..."
SSML_SCHEMA = Nokogiri::XML::Schema File.open(schema_file_path)
puts "Finished loading schema."

schema_file_path = File.expand_path File.join(__FILE__, '../../assets/grammar.xsd')
puts "Loading the GRXML Schema from #{schema_file_path}..."
GRXML_SCHEMA = Nokogiri::XML::Schema File.open(schema_file_path)
puts "Finished loading schema."

RSpec.configure do |config|
  config.filter_run :focus => true
  config.run_all_when_everything_filtered = true
  config.treat_symbols_as_metadata_keys_with_true_values = true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby_speech-2.4.0-java spec/spec_helper.rb
ruby_speech-2.4.0 spec/spec_helper.rb