Sha256: 4f5ae30a2eb491996977ebdd3ade8c9e04a43bd38a09aae3db9f3f7d935b5e05

Contents?: true

Size: 465 Bytes

Versions: 5

Compression:

Stored size: 465 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'
ENV['BASE_URL'] ||= 'https://example.com'

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

5 entries across 5 versions & 1 rubygems

Version Path
osso-0.1.2 Rakefile
osso-0.1.1 Rakefile
osso-0.1.0 Rakefile
osso-0.0.11 Rakefile
osso-0.0.10 Rakefile