-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRakefile
72 lines (57 loc) · 1.46 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true
begin
require 'bundler'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler"
exit(-1)
end
begin
Bundler.setup(:development)
rescue Bundler::BundlerError => e
warn e.message
warn "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'rubygems/tasks'
Gem::Tasks.new(sign: {checksum: true, pgp: true})
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new
task :docs => :yard
file 'db/dev.sqlite3' => 'db:migrate'
namespace :db do
task :connect do
require 'active_record'
ActiveRecord::Base.establish_connection(
adapter: 'sqlite3',
database: 'db/dev.sqlite3'
)
end
desc 'Migrates the development database'
task :migrate => :connect do
lib_dir = File.expand_path('lib')
$LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
require 'ronin/db/migrations'
Ronin::DB::Migrations.up
end
desc 'Starts an interactive database console'
task :console => 'db/dev.sqlite3' do
require 'active_record'
ActiveRecord::Base.logger = Logger.new($stderr,:debug)
ActiveRecord::Base.establish_connection(
adapter: 'sqlite3',
database: 'db/dev.sqlite3'
)
require 'ronin/db/models'
Ronin::DB::Models.connect
require 'irb'
include Ronin::DB
ARGV.clear
IRB.start
end
end