1 Dr Alexiei Dingli Web Science Stream Installing ROR.

Slides:



Advertisements
Similar presentations
Recipe for ??????????????????????????????? What you will make Ingredients What to do
Advertisements

Agenda Web Application Web Page development WAMP
Kyira Hauer; Associate Director; NAMI Wisconsin (608) ; Presented By: NAMI Wisconsin Affiliate Profile Center Training.
Chapter 15 © 2010 by Addison Wesley Longman, Inc Origins and Uses of Ruby - Designed by Yukihiro Matsumoto; released in Use spread rapidly.
Trestle Generator Industrial-strength scaffolding for Ruby on Rails web application development.
Creating Web Services with Ruby on Rails Robert Thew Internet and Web Systems II.
C Pre-Course Workshop Terence Lee QT406 -> PQ607
Creating Web Services with Ruby on Rails Robert Thew Internet and Web Systems II.
Using Relational Databases and SQL Steven Emory Department of Computer Science California State University, Los Angeles Laboratory 1: Introduction to Relational.
XMAS installation instructions Windows Version: 1.0 4/22/2008.
Programming for the Web Assignment 1 Help Mark Johnson.
A complete ror application. Some easy tutorials This uses oracle but it is easy to replace that with mysql:
Creating a wiki blog. Run apps that come with instant rails distribution select I /rails applications/open ruby console window Cd to cookbook or typo.
Presented by Mina Haratiannezhadi 1.  publishing, editing and modifying content  maintenance  central interface  manage workflows 2.
Ruby on Rails CSE 190M, Spring 2009 Week 5. Installing Rails First, install Ruby with RubyGems Then, install the Rails gem gem install rails -version=2.3.2.
Ruby on Rails Creating a Rails Application Carol E Wolf CS396X.
Ruby on Rails (Slides modified by ements-2ed.shtml)
An Introduction to ASP.NET Web Pages 2 Module 1: Webmatrix Installation and Your First Web Site Tom Perkins.
SEEM4570: XAMPP, Eclipse, Summary of Html Kangfei Zhao Room 711,ERB
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Open Source Software WampServer Presented By Mr. R.Aravindhan.
DAT602 Database Application Development Lecture 15 Java Server Pages Part 1.
What is GAMS?.
Rails and Grails. To get started Make sure you have java installed You can get the sdk and jre at:
1 Dr Alexiei Dingli Web Science Stream Models, Views and Controllers.
UC Berkeley Hello Rails. Review: MVC Goal: separate organization of data (model) from UI & presentation (view) by introducing controller –mediates user.
bWAPP – Bee Bug – Installation
1 IMPORTANT NOTE  IMPORTANT NOTE not  As of this writing the default project you will download, import and use in this class is not enabled for Tomcat.
WaveMaker Visual AJAX Studio 4.0 Training Installation.
The PLASTIC Model to WSDL transformation tool UDA.
1 Dr Alexiei Dingli Web Science Stream Helpers, Forms and Layouts.
1 Dr Alexiei Dingli Web Science Stream Advanced ROR.
Basic Setup Copyright © Liferay, Inc. All Rights Reserved. No material may be reproduced electronically or in print without written permission.
Ruby on Rails CSE 190M, Spring 2009 Week 6. Overview How to use a database Demo creating a blog application on Rails Explain how the application works.
Ruby on Rails (Slides modified by ements-2ed.shtml)
Associations INFO 2310: Topics in Web Design and Programming.
1 Dr Alexiei Dingli Web Science Stream A ROR Blog.
Ruby on Rails vs ASP.NET MVC Simone Chiaretta Web Architect, Council of the EU Milano, 19 Febbraio 2011 Sandro.
1 Dr Alexiei Dingli Web Science Stream A ROR Twitter.
Matthew Ellis rd January 2006 CM610 Assignment Bsc(Hons) Computing Studies.
QX5 Digital Microscope: New Installation Software … works with Intel Macs! Amy Reese Elementary Science Resource Teacher Amy Reese Elementary Science Resource.
1 Dr Alexiei Dingli Web Science Stream Web We’ll implement a voting mechanism Using AJAX Web 2.0.
Unzip the attachment and double click to run it..
Ruby on Rails By S. Christopher Hellriegel. Overview 1. What is Ruby on Rails? 2. What is MVC? 3. Simple example 4. Wow, that was cool!
How to Download and Install the Naper eReader and eBook Naper Publishing Group.
Cloud Foundry Part II - Tutorial Dr. Guy Tel-Zur.
Page 1 | | ©2009 Installation of Selenium IDE and RC Amit Maheshwari 20 th Sep’10.
Studio Fx on Rails Demonstrating the Studio Fx API.
WAMP Server Installatin Shiyun Wen. WAMP Server Installation  WAMP Server is an integrated installation of Apache, MySQL, and PHP for Windows. Following.
Server Side Scripting. Common Gateway Interface (CGI) The web is a client-server system.
1 More About HTML Images and Links. 22 Objectives You will be able to Include images in your HTML page. Create links to other pages on your HTML page.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Installing RandoNode Starter Kit OPEN Development Conference September 19, 2008 Max Lin Systems Analyst Julia Chen Systems Analyst.
Installing a Moodle Test Site The painless and easy way.
Outline  XAMPP  XAMPP Install  Put php and HTML documents  Windows and Mac Version  Security.
1 How to Publish Your HTML Page on the Web. Every USF Student has a website 2 Your Net ID You have a directory on the server.
ML-Dev: SML Plug-in for Eclipse Yevgeniy Bangiyev 02/07/07 Yevgeniy Bangiyev 02/07/07.
1 Adding a Model. We have created an MVC web app project Added a controller class. Added a view class. Next we will add some classes for managing movies.
Melbourne LUG Presentation Learning Rails and Ruby - making webapps easier.
Mid-Hudson Valley Linux Users Group Ruby on Rails Web Development is Fun Again MHVLUG Meeting Jan 7 th 2009 Sean Dague sean.dague.net.
Ruby Tooling in NetBeans
Opening Mini Baja Template
Content: What is JMeter? What can I do with JMeter?
Updating Java Go to Java.com with-in the browser, Firefox or Internet Explorer. This example is with-in firefox.
1. Open Visual Studio 2008.
Flight prices.
Chapter 15 Introduction to Rails.
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Updating or installing Flash Player
Presentation transcript:

1 Dr Alexiei Dingli Web Science Stream Installing ROR

2 Instant Rails is a one-stop Rails runtime solution containing Ruby, Rails, Apache, and MySQL, all pre-configured and ready to run. No installer, you simply drop it into the directory of your choice and run it. It does not modify your system environment. What is Instant Rails?

3 Download Instant Rails from – –Files > InstantRails-2.0-win.zip Unzip the file into C:\InstantRails Step 1 – Download and Unzip

4 Double click on InstantRails.exe Just click OK or Continue You should be presented with the InstantRails console Step 2 – Start railing

5 Instant Rails Console Web Server Database

6 Opening a Ruby Console Updating Instant Rails

7 Type: gem update --system

8 Type: gem update

9 Welcome to ROR

10 Create a ToDo application in 5 minutes... Let’s get our hands dirty!

11 1.Open a ruby console Instant Rails Menu > Rails Applications > Open Ruby Console 2.Where you want to create your application type rails todo This will create the whole directory structure Steps (1)

12 3.Go into the todo dir cd todo 4.Load the server by typing ruby script/server 5. Access it through a normal browser by going to Steps (2)

13 So far so good...

14 6. Let’s use some scaffolding... ruby script/generate scaffold Item name:string description:text 7. Let’s make the database rake db:migrate 8. Let’s try it out Steps (3)

15 Here’s your 5 minutes ToDo list

16 Create a simple recipe database which contains the name of the recipe, the ingredients, the quantities and the description Exercise