Sha256: 9c52092e5f2204f4bf1939db452dc73391c811b259256d0adad8c82d7f880f31

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

require 'rubygems'
require 'ruby-debug'

RAILS_ENV     = 'test'
RAILS_VERSION = ENV['RAILS_VERSION'] || '=2.2.2'
RSPEC_VERSION = ENV['RSPEC_VERSION'] || Spec::VERSION::STRING

# Load Rails
gem 'activesupport', RAILS_VERSION
require 'active_support'

gem 'actionpack', RAILS_VERSION
require 'action_controller'

gem 'actionmailer', RAILS_VERSION
require 'action_mailer'

gem 'rails', RAILS_VERSION
require 'rails/version'

# Load Remarkable core on place to avoid gem to be loaded
dir = File.dirname(__FILE__)
require File.join(dir, '..', '..', 'remarkable', 'lib', 'remarkable')

# Add spec/application to load path and set view_paths
RAILS_ROOT = File.join(dir, 'application')
$:.unshift(RAILS_ROOT)

ActionController::Base.view_paths = RAILS_ROOT
require File.join(RAILS_ROOT, 'application')
require File.join(RAILS_ROOT, 'tasks_controller')

# Load Remarkable Rails
require File.join(dir, 'functional_builder')

# Load spec-rails
gem 'rspec-rails', RSPEC_VERSION
require 'spec/rails'

require File.join(dir, '..', 'lib', 'remarkable_rails')

# Register folders to example groups
Spec::Example::ExampleGroupFactory.register(:action_controller, Spec::Rails::Example::ControllerExampleGroup)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
remarkable_rails-3.0.0 spec/spec_helper.rb
remarkable_rails-3.0.1 spec/spec_helper.rb