ahmadnassri/httpsnippet

View on GitHub
src/targets/ruby/target.ts

Summary

Maintainability
A
55 mins
Test Coverage
import { Target } from '../targets';
import { native } from './native/client';

export const ruby: Target = {
  info: {
    key: 'ruby',
    title: 'Ruby',
    extname: '.rb',
    default: 'native',
  },
  clientsById: {
    native,
  },
};