Epitech::Api

This gem can be used to call paysdu42.fr's API through Ruby. You can get informations about all Ionis users.

Installation

Add this line to your application's Gemfile:

gem 'epitech-api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install epitech-api

Usage

require 'epitech-api'

c = Epitech::Api::Connection.new('exampl_e', 'z9VH52jb')
if c.is_login? 'antoin_m'
    puts "Hello, I'm #{c.get_name('antoin_m')}"
end