Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
getfitter / lib / get_fitter / overrides / ostruct.rb
Size: Mime:
require 'ostruct'

#
# ostruct for ruby 1.9 doesn't implement [] operater
# This a monkey patch my copying the ruby 2.0 version
class OpenStruct
  #
  # Fetch an object by id or URL
  # @param [String] name
  # @return [Object]
  #
  # @api private
  def [](name)
    @table[name.to_sym]
  end
end