A semi-compatible DSL for Bundler's Gemfile format

Methods
G
L
N
P
S
Class Public methods
new(set, path)
# File lib/rubygems/request_set.rb, line 149
def initialize(set, path)
  @set = set
  @path = path
end
Instance Public methods
gem(name, *reqs)
# File lib/rubygems/request_set.rb, line 163
def gem(name, *reqs)
  # Ignore the opts for now.
  reqs.pop if reqs.last.kind_of?(Hash)

  @set.gem name, *reqs
end
group(*what)
# File lib/rubygems/request_set.rb, line 178
def group(*what)
end
load()
# File lib/rubygems/request_set.rb, line 154
def load
  instance_eval File.read(@path).untaint, @path, 1
end
platform(what)
Also aliased as: platforms
# File lib/rubygems/request_set.rb, line 170
def platform(what)
  if what == :ruby
    yield
  end
end
platforms(what)
Alias for: platform
source(url)

DSL

# File lib/rubygems/request_set.rb, line 160
def source(url)
end