Sha256: 1e4d10f67ec98c9223f3dab95922f0642868af9604744963aefaa82b9c919c5c

Contents?: true

Size: 1.2 KB

Versions: 14

Compression:

Stored size: 1.2 KB

Contents

require "rubygems"
require "bundler/setup"

require "pry-byebug" # binding.pry to debug!

# Coverage
require "codeclimate-test-reporter"
ENV['CODECLIMATE_REPO_TOKEN'] = "4ce664811485b705e1c44aa00ff41f207347874b2e840e38f27880f8ebaf96e5"
CodeClimate::TestReporter.start

require 'rspec/autorun'
require 'factory_girl'

# This Gem
require "lazy_crud"

Dir[File.dirname(__FILE__) + '/support/**/*.rb'].each {|file|
  # skip the dummy app
  next if file.include?('support/rails_app')
  require file
}

# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
lazy_crud-0.9.8.4 spec/spec_helper.rb
lazy_crud-0.9.8.3 spec/spec_helper.rb
lazy_crud-0.9.8.2 spec/spec_helper.rb
lazy_crud-0.9.8.1 spec/spec_helper.rb
lazy_crud-0.9.8.0 spec/spec_helper.rb
lazy_crud-0.9.7.1 spec/spec_helper.rb
lazy_crud-0.9.7 spec/spec_helper.rb
lazy_crud-0.9.6 spec/spec_helper.rb
lazy_crud-0.9.5 spec/spec_helper.rb
lazy_crud-0.9.4 spec/spec_helper.rb
lazy_crud-0.9.3 spec/spec_helper.rb
lazy_crud-0.9.2 spec/spec_helper.rb
lazy_crud-0.9.1 spec/spec_helper.rb
lazy_crud-0.9.0 spec/spec_helper.rb