Project

dbc-faker

0.0
No commit activity in last 3 years
No release in over 3 years
DBC ipsum
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

 Project Readme

DbcFaker v. 0.0.1

Ipsum gem for DBC familia. You need a DBC API key in order to use this gem. http://developer.devbootcamp.com/

Installation

Add this line to your application's Gemfile:

gem 'dbc-faker'

And then execute:

$ bundle

Or install it yourself as:

$ gem install dbc-faker

Usage

Set your DBC_API environment variable to your api key, or use the gem to configure your key:

dbc_faker = DbcFaker::Client.new YOUR_API_KEY_HERE_IF_NO_ENV_VAR_SET

By default you get one name if you call the name method on your client. If you want more names, pass in the number of names you want to the name method.

dbc_faker.name
=> "J-kai Hsu"

dbc_faker.name 5
=> ["John P Quigley", "Zachary Buettner", "James Newman", "Renee Schaaf", "Darren Dahl"]

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