Wow, you accepted a lot of pull requests today!
It looks like your Faker::Hacker isn't configured properly. When I try to call it, I'm getting NameError: uninitialized constant Faker::Hacker.
I've got the same problem too. =)
faker (1.3.0)
ruby-2.1.2 [ x86_64 ]
ditto here. It looks like the latest code did not get published to rubygems.org?
temp workaround, you can get code from github. E.g. if you are using bundler, put this in your Gemfile
gem 'faker', github: 'stympy/faker.git'
Version 1.3.0 of the gem doesn't have the latest set of merges. I'll be pushing a new gem shortly, but until then you can fetch from github as @afred illustrated.
You should use gem 'faker', github: 'stympy/faker' if you get an error "Git error: command `git clone 'git://github.com/stympy/faker.git.git'"
gem 'faker', github: 'stympy/faker' works. Thanks!
ditto here. It looks like the latest code did not get published to rubygems.org?
temp workaround, you can get code from github. E.g. if you are using bundler, put this in your Gemfile
gem 'faker', github: 'stympy/faker.git'
they asking me username and pasword of your git hub. what can i put there
ditto here. It looks like the latest code did not get published to rubygems.org?
temp workaround, you can get code from github. E.g. if you are using bundler, put this in your Gemfilegem 'faker', github: 'stympy/faker.git'they asking me username and pasword of your git hub. what can i put there
use like this
gem 'faker', git: 'https://github.com/stympy/faker.git'
Most helpful comment
gem 'faker', github: 'stympy/faker'works. Thanks!