Sha256: d76b93e4e452048a4167c5532b129e01a70c836c580673db6f05c7545229a369
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
require 'uri' require 'httparty' require 'base64' require 'json' module Mirage class Client include HTTParty attr_reader :url def initialize options={:url => "http://localhost:7001/mirage"}, &block if options.is_a?(String) && options =~ URI.regexp warn("Client.new(url): Deprecated usage, please use :url => url | :port => port") @url = options elsif options.kind_of?(Hash) && options[:port] @url = "http://localhost:#{options[:port]}/mirage" elsif options.kind_of?(Hash) && options[:url] @url = options[:url] else raise "specify a valid URL or port" end templates.default_config &block if block end def templates id=nil return Template.get("#{@url}/templates/#{id}") if id Templates.new(@url) end def requests id=nil return Request.get "#{@url}/requests/#{id}" if id Requests.new(@url) end def prime self.class.send(:put, "#{@url}/defaults", :body => "") end def save self.class.send(:put, "#{@url}/backup", :body => "") end def revert self.class.send(:put, @url, :body => "") end def put *args, &block templates.put *args, &block end def clear templates.delete_all end def == client client.instance_of?(Client) && self.url == client.url end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mirage-3.0.0.alpha.11 | lib/mirage/client/client.rb |
mirage-3.0.0.alpha.10 | lib/mirage/client/client.rb |