Sha256: ec653efd9be148e0ee531a2c097a1efe719042c79c3b30b1d6139a7a9857dbf4

Contents?: true

Size: 464 Bytes

Versions: 9

Compression:

Stored size: 464 Bytes

Contents

require 'hemlock/csv_to_flashcards'
require 'hemlock/turn'
require 'thor'
require 'stringio'

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.order = 'random'
end

def capture_stdout(&block)
  old_stdout = $stdout
  fake_stdout = StringIO.new
  $stdout = fake_stdout
  block.call
  fake_stdout.string
ensure
  $stdout = old_stdout
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hemlock-0.1.8 spec/spec_helper.rb
hemlock-0.1.7 spec/spec_helper.rb
hemlock-0.1.6 spec/spec_helper.rb
hemlock-0.1.5 spec/spec_helper.rb
hemlock-0.1.4 spec/spec_helper.rb
hemlock-0.1.3 spec/spec_helper.rb
hemlock-0.1.2 spec/spec_helper.rb
hemlock-0.1.1 spec/spec_helper.rb
hemlock-0.1.0 spec/spec_helper.rb