Sha256: 096b359fa918d4c6e67624b5f60b64013c4fc5644c26286c2ca54b7aa42394a9

Contents?: true

Size: 388 Bytes

Versions: 4

Compression:

Stored size: 388 Bytes

Contents

gem 'rspec', '~> 2.4'
require 'rspec'

PROJECTS_DIR = File.join('data','projects')
PROJECT_DIRS = lambda { |name| File.join(PROJECTS_DIR,name) }

unless File.directory?(PROJECTS_DIR)
  abort "Please run `rake data:projects` before running the specs!"
end

RSpec.configure do |spec|
  spec.before(:suite) do
    # clear the $RUBYCONSOLE env variable
    ENV['RUBYCONSOLE'] = nil
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rubygems-tasks-0.1.2 spec/spec_helper.rb
rubygems-tasks-0.1.1 spec/spec_helper.rb
rubygems-tasks-0.1.0 spec/spec_helper.rb
rubygems-tasks-0.1.0.pre3 spec/spec_helper.rb