Sha256: 9167c8dc5f5727eefe665a7a7942e599996adf1bbec5af413a43977f6e5df025
Contents?: true
Size: 755 Bytes
Versions: 8
Compression:
Stored size: 755 Bytes
Contents
require 'ruby_speech' include RubySpeech::GRXML include RubySpeech::XML::Language 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 end
Version data entries
8 entries across 8 versions & 1 rubygems