Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{
"name": "Moonbase Relay Testnet ",
"id": "rococo_moonbase_relay_testnet",
"chainType": "Local",
"bootNodes": [],
"telemetryEndpoints": null,
"protocolId": "dot",
"properties": null,
"forkBlocks": null,
"badBlocks": null,
@crystalin
crystalin / fuze-chat.json
Last active October 17, 2019 17:07
fuze-chat.json
{
"openapi": "3.0.0",
"info": {
"title": "NgChat API",
"description": "\nAPI to manage Fuze Messaging and Calls History.<br><br>\n\n\nEndpoints can be prefixed by the one of the following prefix: <br>\n\n- `/users/<userId>`/conversations/...\n\n- `/tenants/<tenantKey>/entities/<entityId>`/conversations/....\n\n\n_(required for Service to Service requests)_\n\n\nEndpoints support idempotency by using the header \"Idempotency-Key\": <br>\n\n- Request has already been processed => returns the same output\n\n- Request is currently being processed => return 409 CONFLICT\n",
"version": "2.0.0",
"contact": {
"name": "Alan Sapede",
"email": "asapede@fuze.com"
}
@crystalin
crystalin / Guard Issue #161 Guardfile
Created October 14, 2011 21:03
Guard Issue #161 gemfile
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
#see http://railscasts.com/episodes/285-spork
#to run: guard
guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' }, :wait => 40 do
watch('config/application.rb')
watch('config/environment.rb')
watch(%r{^app/controllers/.+\.rb$})