aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/incomplete_specification.rb
blob: 6d0b9b901c061c1fced87118ed15fa5fb96ec011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Bundler
  class IncompleteSpecification
    attr_reader :name, :platform

    def initialize(name, platform)
      @name = name
      @platform = platform
    end
  end
end