Skip to content

Instantly share code, notes, and snippets.

@ilyabrin
Created April 30, 2014 13:27
Show Gist options
  • Select an option

  • Save ilyabrin/26abcccb394b1ba611f9 to your computer and use it in GitHub Desktop.

Select an option

Save ilyabrin/26abcccb394b1ba611f9 to your computer and use it in GitHub Desktop.
tree.js formatting
require 'rubygems'
require 'sinatra'
require 'rexml/document'
include REXML
providers = File.new('providers.xml')
services = File.new('services.xml')
dev_time_start = Time.now # developer
p = Document.new(providers)
s = Document.new(services)
p.elements.each("kp-dealer/provider/id") do |element|
element.get_text.value
end
abort('stop')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment