# Etwin client for ruby ## Installation Add this line to your application's Gemfile: ```ruby gem 'etwin' ``` And then execute: ``` bundle install ``` ## Usage ```ruby require 'etwin' # ... client = Etwin::Client::HttpEtwinClient.new(URI.parse("https://eternal-twin.net")) user = client.get_user(Etwin::Client::Auth::Guest, Etwin::User::UserId.new("9f310484-963b-446b-af69-797feec6813f")) pp user ``` ## Development ``` bundle install bundle exec rubocop bundle exec rspec # bundle exec rake release # bundle exec rake install bundle exec srb tc # gem build # gem push ... ```