Devise Custamization

Hello everey one I’m trying to custamize Devise gem in rails 4 with add
my
required sign up feilds like firstname,company name,url,phone etc
but i have got errors please suggest me if any on wok on devise
custamization please help me…

‪#‎Devise‬
https://www.facebook.com/hashtag/devise?source=feed_text&story_id=10152718171692028
,‪#‎Rails4‬
https://www.facebook.com/hashtag/rails4?source=feed_text&story_id=10152718171692028
,‪#‎postgresql‬
https://www.facebook.com/hashtag/postgresql?source=feed_text&story_id=10152718171692028

please refer below link

A Readme would be nice…people aren’t going to read your entire source
repo…

I did this for phone numbers and addresses…if you google, you’ll find
what I did. Similar can be done for user profile data

Thanks for your comments @Robby O’Connor
I have found small bug in that above mentioned github project, during
user signup after filling require data when click signup button that
won’t work some time then we refresh web page and again fill tha data
then it works.
can you fix that bug anyone…!!!

Why not just add to the user model (via a migration) the information you
want…you’re making the problem way more complex than it needs to be

Anyways the way I handled it was to create another AR class and also
have a
polymorphic association (this reduces code duplication)…you can add
this
stuff via a migration, nothing stops you…why do you need devise to do
it
for you?

what you’re adding can be done via another model though called User
profile
maybe?