An unofficial, mostly Bitwarden-compatible API server written in Ruby (Sinatra and ActiveRecord)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5ccd4174b00a4af77c2baf9d7ab6a45eced19156 17 lines 291 B view raw
1# rake db:create_migration NAME=... 2require "sinatra/activerecord/rake" 3 4namespace :db do 5 task :load_config do 6 require "./lib/rubywarden.rb" 7 end 8end 9 10require 'rake/testtask' 11 12Rake::TestTask.new do |t| 13 t.libs << "spec" 14 t.pattern = "spec/*_spec.rb" 15end 16 17task :default => [ :test ]