Sha256: 9cd624d9f96239396fd3ff8b4a7de48b3f9a5752c914f7150cacc40b8d948f6e

Contents?: true

Size: 423 Bytes

Versions: 2

Compression:

Stored size: 423 Bytes

Contents

# frozen_string_literal: true

# This Rakefile is used in gem development in order
# to tell ActiveRecord where to find the database
# schema and migrations

ENV['SESSION_SECRET'] ||= 'rake-secret'

require 'bundler/gem_tasks'
require 'sinatra/activerecord/rake'
require './lib/osso'

ActiveRecord::Migrator.migrations_paths = ['./lib/osso/db/migrate']
Dir.glob('lib/tasks/*.rake').each { |r| load r }

task default: :spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
osso-0.0.8 Rakefile
osso-0.0.7 Rakefile