Sha256: bc6cfe89b44cbbadefe61c4795ee385760dd5b2614bbc5dc78bc7064457449b0

Contents?: true

Size: 529 Bytes

Versions: 14

Compression:

Stored size: 529 Bytes

Contents

# encoding: UTF-8

require 'rubygems' unless ENV['NO_RUBYGEMS']

require 'bundler'
require 'rspec/core/rake_task'
require 'rubygems/package_task'

require './lib/arel-helpers'

Bundler::GemHelper.install_tasks

task default: :spec

desc 'Run specs'
RSpec::Core::RakeTask.new do |t|
  t.pattern = './spec/**/*_spec.rb'
end

task :console do
  $:.push(File.dirname(__FILE__))

  require 'spec/env'
  require 'pry-byebug'

  ArelHelpers::Env.establish_connection
  ArelHelpers::Env.reset
  ArelHelpers::Env.migrate

  Pry.start
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
arel-helpers-2.16.0 Rakefile
arel-helpers-2.15.0 Rakefile
arel-helpers-2.14.0 Rakefile
arel-helpers-2.13.0 Rakefile
arel-helpers-2.12.1 Rakefile
arel-helpers-2.12.0 Rakefile
arel-helpers-2.11.0 Rakefile
arel-helpers-2.10.0 Rakefile
arel-helpers-2.9.1 Rakefile
arel-helpers-2.9.0 Rakefile
arel-helpers-2.8.0 Rakefile
arel-helpers-2.7.0 Rakefile
arel-helpers-2.6.1 Rakefile
arel-helpers-2.6.0 Rakefile