# File lib/branch.rb, line 201
        def is_targetted?(opts)
            return true if @branch_type == :user_specified
            if @version.to_i < opts[:base_ver] then
                return :too_old
            end
            if @version !~ opts[:version] then
                return :no_match
            end
            return true
        end