Sha256: 11d608f038b1d365d42af794d6faf89841b08d50a0855d4b42f9344fd425717f

Contents?: true

Size: 625 Bytes

Versions: 2

Compression:

Stored size: 625 Bytes

Contents

require 'rubygems'
# require 'pry'
begin
  require 'spec'
rescue LoadError
  require 'rspec'
end

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'typeright'
# include Typeright

if ENV['CI']
  require 'coveralls'
  Coveralls.wear!
end

FOR_README = <<TXT
And so... "Why?" -- He replied.
Because -> It's cool! And => I like beautiful text!'.
Also, notice some math: Pi + 2 * 180 / 2.
TXT

RSpec.configure do |config|
  # config.mock_with(:mocha)

  config.after(:suite) do
    puts
    puts FOR_README
    puts
    puts Typeright.s(FOR_README)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typeright-0.0.5 spec/spec_helper.rb
typeright-0.0.3 spec/spec_helper.rb