Comfan

Build Status Coverage Status Code Climate Dependency Status Gem Version

Named after a tool used in the Star Wars universe, this tool provides simple helper methods for ruby to provide functionality used in Salesforce.

Installation

Add this line to your application's Gemfile:

gem 'comfan'

And then execute:

$ bundle

Or install it yourself as:

$ gem install comfan

Usage

To get access to the functions require the gem with require 'comfan'

api_id

This method returns a API ID for the input ID. If the input already is an API (length >= 18 character), the same ID is returned.

Otherwise the API ID is calculated

Comfan.api_id '0D50000000IehZ' # 00D50000000IehZEAS

ui_id

This is method converts an API ID to an UI ID. If an UI ID is provided (length <= 15 characters), the same ID is returned.

Otherwise the UI ID is calculated

Comfan.ui_id '00D50000000IehZEAS' # 0D50000000IehZ

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request