Rakefile in mrjoy-bundler-audit-0.1.4 vs Rakefile in mrjoy-bundler-audit-0.2.1

- old
+ new

@@ -21,27 +21,44 @@ 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 + + sh 'git', 'commit', 'data/ruby-advisory-db', '-m', 'Updated ruby-advisory-db' +end + require 'rspec/core/rake_task' RSpec::Core::RakeTask.new namespace :spec do task :bundle do root = 'spec/bundle' %w[secure unpatched_gems insecure_sources].each do |bundle| chdir(File.join(root,bundle)) do - sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle install --path ../../../vendor/bundle' + # 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 + end end end end end task :spec => 'spec:bundle' task :test => :spec task :default => :spec require 'yard' -YARD::Rake::YardocTask.new +YARD::Rake::YardocTask.new task :doc => :yard