top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Where can I get list of bloggers with their email id on ruby on rails?

+5 votes
320 views
Where can I get list of bloggers with their email id on ruby on rails?
posted Feb 7, 2014 by Amit Parthsarthi

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

In my local machine I had input some data into database using SQLite3 . When I deployed it to heroku why I can't get data that i input?

I'm doing like this

-in Gemfile
group :development do
 gem 'sqlite3'
end
group :production do
 gem 'pg'
 gem 'rails_12factor'
end
-bundle install
-heroku login
-git init 
-git add .
-git commit -m "test"
-git create
-git push heroku master
-heroku run rake db:migrate

How can I get some data when I deployed it to heroku? Please help me.

0 votes

How can I use ruby on rails input field selector?

This is form:

Jquery
 user_user_name:{
   validators: {
     notEmpty: {
       message: 'The company name is required and cannot be empty'
     }
   }
 },
...