mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9e6d07f346
Merge from 2af2520b4a
12 lines
211 B
Ruby
12 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Bundler
|
|
class IncompleteSpecification
|
|
attr_reader :name, :platform
|
|
|
|
def initialize(name, platform)
|
|
@name = name
|
|
@platform = platform
|
|
end
|
|
end
|
|
end
|