Sha256: 53a057cc77281ae31d8138bc27d95b32d3edbcd74ee2fa71eece04d647802fad
Contents?: true
Size: 1.01 KB
Versions: 10
Compression:
Stored size: 1.01 KB
Contents
require 'gemika/env' require 'gemika/matrix' require 'gemika/rspec' ## # Rake tasks to run commands for each compatible row in the test matrix. # namespace :matrix do desc "Run specs for all Ruby #{RUBY_VERSION} gemfiles" task :spec, :files do |t, options| Gemika::Matrix.from_ci_config.each do |row| options = options.to_hash.merge( :gemfile => row.gemfile, :fatal => false, :bundle_exec => true ) Gemika::RSpec.run_specs(options) end end desc "Install all Ruby #{RUBY_VERSION} gemfiles" task :install do Gemika::Matrix.from_ci_config.each do |row| system('bundle install') end end desc "List dependencies for all Ruby #{RUBY_VERSION} gemfiles" task :list do Gemika::Matrix.from_ci_config.each do |row| system('bundle list') end end desc "Update all Ruby #{RUBY_VERSION} gemfiles" task :update, :gems do |t, options| Gemika::Matrix.from_ci_config.each do |row| system("bundle update #{options[:gems]}") end end end
Version data entries
10 entries across 10 versions & 1 rubygems