Sha256: 7137960bf5558f80b554a6f37777c339e881013549086842eea1326a7984ad86

Contents?: true

Size: 590 Bytes

Versions: 6

Compression:

Stored size: 590 Bytes

Contents

#encoding: utf-8
require "rubygems"
require "bundler/setup"
require "pry"

#loading rails
ENV["RAILS_ENV"] ||= 'test'
require "rails3_0_app/config/environment"
ActiveRecord::Migrator.migrate(File.expand_path("../rails3_0_app/db/migrate", __FILE__))
I18n.load_path << Dir[ File.expand_path("../support/locales/**/*.{rb,yml}", __FILE__) ]
I18n.reload!


#loading rspec
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rspec'
require 'timecop'
Dir[File.expand_path("../support/**/*.rb", __FILE__)].each {|f| require f}
RSpec.configure do |config|
  config.mock_with :rspec
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
attribute_enums-0.1.8 spec/spec_helper.rb
attribute_enums-0.1.7 spec/spec_helper.rb
attribute_enums-0.1.6 spec/spec_helper.rb
attribute_enums-0.1.5 spec/spec_helper.rb
attribute_enums-0.1.4 spec/spec_helper.rb
attribute_enums-0.1.3 spec/spec_helper.rb