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
|
require 'bundler'
require 'appraisal'
module Tests
class CurrentBundle
AppraisalNotSpecified = Class.new(ArgumentError)
include Singleton
def assert_appraisal!
unless appraisal_in_use?
message = <<EOT
Please run tests starting with `appraisal <appraisal_name>`.
Possible appraisals are: #{available_appraisals}
EOT
raise AppraisalNotSpecified, message
end
end
def appraisal_in_use?
path.dirname == root.join('gemfiles')
end
def current_or_latest_appraisal
current_appraisal || latest_appraisal
end
def latest_appraisal
available_appraisals.max
end
def available_appraisals
Appraisal::AppraisalFile.each.map(&:name)
end
private
def current_appraisal
if appraisal_in_use?
File.basename(path, '.gemfile')
end
end
def path
Bundler.default_gemfile
end
def root
Pathname.new('../../../..').expand_path(__FILE__)
end
end
end
|