top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Steps to develop a simple Rails app? [CLOSED]

+1 vote
182 views

I've plan to develop own Rails app based on very simple concepts like Student mark sheet, where we can do:

  1. Add a new marks(m1,m2,m3) of a student,
  2. Delete a existing marks of a student,
  3. Edit any existing mark(s) of a student,
  4. List of students mark in a view.

please give me steps/references to do that above,and it should query with sqlite.

closed with the note: None
posted Mar 7, 2014 by Majula Joshi

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
Go through a good tutorial such as http://www.railstutorial.org . Then you will understand the basics of rails and know how to get started.

Similar Questions
0 votes

I am learning Ruby. In the meantime, I have to make a simple app for a small company that I know how to make in PHP and MySQL. I have not started learning Rails yet (first I want to finish the Ruby book I have started). But I was thinking if with a little guidance may be I can make this app in Rails. If I can do it, that will be great. The requirement is like this:

  • I am given an Excel file that has 11 columns. Each row has information about one item. Each row is unique. Right now the company uses this excel file to search for required information, and they want me to make a web app for this.

  • This Excel data and future data will be inserted into the database in bulk, using CSV imports. I think there is no need to break the table, and our app can just have a single table to search from.

  • The search will be done using 2 columns from the table.

  • One person will have the privilege to edit searched records.

  • Only 4 people will be using the app for now. There will be no option to sign-up for a new account.

  • The home page will have the search form (two fields, user can fill both or one).

I will appreciate (a lot) any pointers, guidance and help with this. I can make this in PHP, but I'd love to make it in Rails.

+2 votes

I have a table with several thousand records in it. They take a long time to load and are essentially useless presented altogether.. I'd like present the user a search form to select a limited subset of records for display in the index function. What options are available to solve this problem and where might I look for examples or demos?

+1 vote

I want to create 3 rails apps in which every app has a Google API.
1) Gmail API
2) Google+ API 3
3) Google calendar API

Please suggest how to begin with...

+1 vote

I was working on a test app and everything was going great. However now when I run "rails server" and none of the changes to the controller files are reflected.

If I make changes to HTML files, those are reflected. And yes, I'm sure am in the right directory editing the correct files.

I can get rid of actions in the controller files and it still works fine. Do I have to do something after I change the ruby files? I thought I could just save them then run 'rails server'... It had seemed to be working doing just that previously.

0 votes

I am building a multi-page rails web app and am struggling with finding a good JavaScript framework to use. I could use jQuery for all the low-level DOM manipulations but would like to benefit from the structure of a good framework.

...