Skip to content

Commit

Permalink
Merge pull request #42 from jiro4989/feature/#11-company
Browse files Browse the repository at this point in the history
✨ Add company module #11
  • Loading branch information
jiro4989 authored Dec 30, 2019
2 parents 023964c + 128e162 commit e84a946
Show file tree
Hide file tree
Showing 7 changed files with 638 additions and 4 deletions.
4 changes: 2 additions & 2 deletions faker.nimble
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Package

version = "0.5.2"
version = "0.6.0"
author = "jiro4989"
description = "A new awesome nimble package"
description = "faker is a Nim package that generates fake data for you."
license = "MIT"
srcDir = "src"
installExt = @["nim"]
Expand Down
4 changes: 2 additions & 2 deletions src/faker/provider.nim
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import provider/[address, phone_number, job, person]
export address, phone_number, job, person
import provider/[address, phone_number, job, person, company]
export address, phone_number, job, person, company
20 changes: 20 additions & 0 deletions src/faker/provider/company.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# ----------------------------------------------- #
# This module was generated by 'nimble genProvs'. #
# See 'faker.nimble'. #
# ----------------------------------------------- #

import util
import ../base
import company/[company_en_US, company_ja_JP]
export base

genProc company,
[
bs,
catchPhrase,
company,
companySuffix,
], [
en_US,
ja_JP,
]
Loading

0 comments on commit e84a946

Please sign in to comment.