Cloudflare is a Ruby wrapper for the Cloudflare V4 API. It provides a light
weight wrapper using RestClient::Resource. The wrapper functionality is limited
to zones and DNS records at this time.
WWW: https://github.com/socketry/cloudflare
Roy Thomas Fielding's thesis Architectural Styles and the Design of
Network-based Software Architectures describes Representational State Transfer
which comprises several core concepts:
- Resource: A conceptual mapping to one or more entities.
- Representation: An instance of a resource at a given point in time.
Async::REST models these abstractions as closely and practically as possible and
serves as a basis for building asynchronous web clients.
WWW: https://github.com/socketry/async-rest
Async::HTTP is an asynchronous client and server implementation of HTTP/1.0,
HTTP/1.1 and HTTP/2 including TLS. It supports streaming requests and responses.
WWW: https://github.com/socketry/async-http
google-cloud-logging is the official library for Stackdriver Logging.
Stackdriver Logging allows you to store, search, analyze, monitor, and alert on
log data and events from Google Cloud Platform and Amazon Web Services (AWS). It
supports ingestion of any custom log data from any source. Stackdriver Logging
is a fully-managed service that performs at scale and can ingest application and
system log data from thousands of VMs. Even better, you can analyze all that log
data in real-time.
WWW: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-logging
Google API Extensions for Ruby (gax-ruby) is a set of modules which aids the
development of APIs for clients and servers based on gRPC and Google API
conventions.
Application code will rarely need to use most of the classes within this library
directly, but code generated automatically from the API definition files in
Google APIs can use services such as page streaming and request bundling to
provide a more convenient and idiomatic API surface to callers.
WWW: https://github.com/googleapis/gax-ruby
mypy-protobuf generates mypy stub files from protobuf specs. protoc-gen-mypy is
a python implementation of the plugin.
WWW: https://github.com/dropbox/mypy-protobuf
Test2 normally uses unique IDs generated by appending pid, thread-id, and an
incrementing integer. These work fine most of the time, but are not sufficient
if you want to keep a database of events, in that case a real UUID is much more
useful.
WWW: https://metacpan.org/release/Test2-Plugin-UUID
Currently Test2::Plugin::MemUsage only works on unix systems that provide
/proc/PID/status access. For all other systems this plugin is essentially a
no-op.
WWW: https://metacpan.org/release/Test2-Plugin-MemUsage
Test2::Plugin::DBIProfile will enable DBI::Profile globally so that DBI
profiling data is collected. Once testing is complete an event will be produced
which contains and displays the profiling data.
WWW: https://metacpan.org/release/Test2-Plugin-DBIProfile