Sha256: 2e231f0f550d7e7dbfc82c48ab8223667b5729d757a02db3a0c29e55d7da5e4a

Contents?: true

Size: 989 Bytes

Versions: 5

Compression:

Stored size: 989 Bytes

Contents

# Load Remarkable
unless Object.const_defined?('Remarkable')
  begin
    require 'remarkable'
  rescue LoadError
    require 'rubygems'
    gem 'remarkable'
    require 'remarkable'
  end
end

# Load Remarkable ActiveRecord files
dir = File.dirname(__FILE__)
require File.join(dir, 'remarkable_activerecord', 'base')
require File.join(dir, 'remarkable_activerecord', 'describe')
require File.join(dir, 'remarkable_activerecord', 'human_names')

# Add locale
Remarkable.add_locale File.join(dir, '..', 'locale', 'en.yml')

# Add matchers
Dir[File.join(dir, 'remarkable_activerecord', 'matchers', '*.rb')].each do |file|
  require file
end

# By default, ActiveRecord matchers are not included in any example group.
# The responsable for this is RemarkableRails. If you are using ActiveRecord
# without Rails, put the line below in your spec_helper to include ActiveRecord
# matchers into rspec globally.
# Remarkable.include_matchers!(Remarkable::ActiveRecord, Spec::Example::ExampleGroup)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
remarkable_activerecord-3.1.13 lib/remarkable_activerecord.rb
remarkable_activerecord-3.1.12 lib/remarkable_activerecord.rb
remarkable_activerecord-3.1.11 lib/remarkable_activerecord.rb
remarkable_activerecord-3.1.10 lib/remarkable_activerecord.rb
remarkable_activerecord-3.1.9 lib/remarkable_activerecord.rb