Sha256: 7f84c77030a3b4f43eaeb96d88f6fbb03f13341d8a59c4fe657990a4d1745e0b

Contents?: true

Size: 636 Bytes

Versions: 8

Compression:

Stored size: 636 Bytes

Contents

# The minimal Rails project was created to run specs against using:
# rails -m http://github.com/robinsp/rails_templates/raw/master/minimal.rb railsenv


ENV["RAILS_ENV"] = "test"

require File.expand_path(File.dirname(__FILE__) + "/railsenv/config/environment")
require 'spec'
require 'spec/rails'
require 'spec/autorun'

Spec::Runner.configure do |config|
  config.use_transactional_fixtures = true
  config.use_instantiated_fixtures  = false
  # config.mock_with :mocha
end

ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/railsenv/log/debug.log")


Dir["#{File.dirname(__FILE__)}/../lib/*.rb"].each {|f| require f}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rules_engine-0.1.1 spec/spec_helper.rb
rules_engine-0.1.0 spec/spec_helper.rb
rules_engine-0.0.8 spec/spec_helper.rb
rules_engine-0.0.7 spec/spec_helper.rb
rules_engine-0.0.6 spec/spec_helper.rb
rules_engine-0.0.5 spec/spec_helper.rb
rules_engine-0.0.4 spec/spec_helper.rb
rules_engine-0.0.3 spec/spec_helper.rb