Sha256: de64fea613c605505dcc90589ad2fb9db0e4a4e9cc0eee7be1e1bfcd07604663
Contents?: true
Size: 494 Bytes
Versions: 4
Compression:
Stored size: 494 Bytes
Contents
# encoding: utf-8 if ENV['COVERAGE'] == 'true' require 'simplecov' SimpleCov.start do command_name 'spec:unit' add_filter 'config' add_filter 'spec' minimum_coverage 100 end end require 'ashikawa-core' require 'rspec' if RUBY_VERSION < '1.9' require 'rspec/autorun' end # require spec support files and shared behavior Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each do |file| require file end RSpec.configure do |config| end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ashikawa-core-0.7.2 | spec/spec_helper.rb |
ashikawa-core-0.7.1 | spec/spec_helper.rb |
ashikawa-core-0.7.0 | spec/spec_helper.rb |
ashikawa-core-0.6.0 | spec/spec_helper.rb |