forked from rubysec/bundler-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
59 lines (45 loc) · 1.3 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
# encoding: utf-8
require 'rubygems'
begin
require 'bundler/setup'
rescue LoadError => e
abort e.message
end
require 'rake'
require 'time'
require 'rubygems/tasks'
Gem::Tasks.new
namespace :db do
desc 'Updates data/ruby-advisory-db'
task :update do
timestamp = nil
chdir 'data/ruby-advisory-db' do
sh 'git', 'pull', 'origin', 'master'
File.open('../ruby-advisory-db.ts','w') do |file|
file.write Time.parse(`git log --pretty="%cd" -1`).utc
end
end
sh 'git', 'commit', 'data/ruby-advisory-db',
'data/ruby-advisory-db.ts',
'-m', 'Updated ruby-advisory-db'
end
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
%w[secure unpatched_gems insecure_sources].each do |bundle|
bundle_dir = File.join('spec/bundle',bundle)
gemfile = File.join(bundle_dir,'Gemfile')
gemfile_lock = File.join(bundle_dir,'Gemfile.lock')
file gemfile_lock => gemfile do
chdir(bundle_dir) do
sh 'unset BUNDLE_BIN_PATH BUNDLE_GEMFILE RUBYOPT && bundle install --path ../../../vendor/bundle'
end
end
desc "Generates the spec/bundler/*/Gemfile.lock files"
task 'spec:bundle' => gemfile_lock
end
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new
task :doc => :yard