mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
211 B
Ruby
13 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
|