Rakefile in mrjoy-bundler-audit-0.2.1 vs Rakefile in mrjoy-bundler-audit-0.3.1
- old
+ new
@@ -21,17 +21,20 @@
require 'rake'
require 'rubygems/tasks'
Gem::Tasks.new
-desc 'Updates data/ruby-advisory-db'
-task :update do
- chdir 'data/ruby-advisory-db' do
- sh 'git', 'pull', 'origin', 'master'
- end
+namespace :db do
+ desc 'Updates data/ruby-advisory-db'
+ task :update do
+ chdir 'data/ruby-advisory-db' do
+ sh 'git', 'pull', 'origin', 'master'
+ end
- sh 'git', 'commit', 'data/ruby-advisory-db', '-m', 'Updated ruby-advisory-db'
+ sh 'git', 'commit', 'data/ruby-advisory-db',
+ '-m', 'Updated ruby-advisory-db'
+ end
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
@@ -39,17 +42,15 @@
task :bundle do
root = 'spec/bundle'
%w[secure unpatched_gems insecure_sources].each do |bundle|
chdir(File.join(root,bundle)) do
- # rm_f "Gemfile.lock" if(File.exist?("Gemfile.lock"))
begin
sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle install --path ../../../vendor/bundle'
rescue
- if(File.exist?("Gemfile.lock"))
- puts "Looks like Gemfile may have been updated. Attempting to update things."
- sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle update'
- end
+ exit(1) if(!File.exist?('Gemfile.lock'))
+ puts "Looks like Gemfile may have been updated. Attempting to update things."
+ sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle update'
end
end
end
end
end