Sha256: be13e27cb9c83173b93345158dca316ce49ebc57a60e175f73e67295acb358e6
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
# Comfan [![Build Status](https://travis-ci.org/propertybase/comfan.png?branch=master)](https://travis-ci.org/propertybase/comfan) [![Coverage Status](https://coveralls.io/repos/propertybase/comfan/badge.png?branch=master)](https://coveralls.io/r/propertybase/comfan) [![Code Climate](https://codeclimate.com/github/propertybase/comfan.png)](https://codeclimate.com/github/propertybase/comfan) [![Dependency Status](https://gemnasium.com/propertybase/comfan.png)](https://gemnasium.com/propertybase/comfan) [![Gem Version](https://badge.fury.io/rb/comfan.png)](http://badge.fury.io/rb/comfan) Named after a [tool used in the Star Wars universe](http://starwars.wikia.com/wiki/Comfan), 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 ~~~ ruby 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 ~~~ ruby 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
comfan-0.1.2 | README.md |