├── .travis.yml ├── LICENSE ├── README.md ├── bin └── importer.go ├── dict.go ├── faker.go └── faker_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/README.md -------------------------------------------------------------------------------- /bin/importer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/bin/importer.go -------------------------------------------------------------------------------- /dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/dict.go -------------------------------------------------------------------------------- /faker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/faker.go -------------------------------------------------------------------------------- /faker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manveru/faker/HEAD/faker_test.go --------------------------------------------------------------------------------