Sha256: 0eed17869786a6d9020ecd4b70aa314a9e4694e4de9ff79aa95dcf55ca4bdc03
Contents?: true
Size: 402 Bytes
Versions: 1
Compression:
Stored size: 402 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'ruby-debug' require 'blocks' # and any other gems you need def print_hash(hash) hash.inject("") { |s, (k, v)| "#{s} #{k}: #{v}." } end RSpec.configure do |config| config.mock_with :mocha config.before :each do Blocks.template_folder = "blocks" Blocks.wrap_before_and_after_blocks = true Blocks.use_partials = false end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blocks-2.5.1 | spec/spec_helper.rb |