Sha256: 88ab2e995eacacce0a54ebfd60507c39d78192426c2a1f97fb860cdd76e81f2d
Contents?: true
Size: 463 Bytes
Versions: 10
Compression:
Stored size: 463 Bytes
Contents
require 'json' if (not ''.respond_to?(:start_with?)) or (not ''.respond_to?(:end_with?)) class ::String def start_with?(prefix) prefix = prefix.to_s self[0, prefix.length] == prefix end def end_with?(suffix) suffix = suffix.to_s self[-suffix.length, suffix.length] == suffix end end end require 'iron_worker/version' require 'iron_worker/api_client' require 'iron_worker/client' require 'iron_worker/worker_helper'
Version data entries
10 entries across 10 versions & 1 rubygems