random Flashcards
Single responsibility principle
The single responsibility principle is a computer programming principle that states that every module or class should have responsibility over a single part of the functionality provided by the software, and that responsibility should be entirely encapsulated by the class
What is Rails?
Rails is a web application development framework written
Rails two major guiding principles:
Don’t Repeat Yourself:
Convention Over Configuration:
Installing Rails
1) $ ruby -v
2) $ sqlite3 –version
3) $ gem install rails
4) $ rails –version
Creating a Rails Application
$ rails new app_name
$ bundle install
$ cd app_name
What does the folder app/ contain?
Contains the controllers, models, views, helpers, mailers, channels, jobs and assets for your application.
What does the folder bin/ contain?
Contains the rails script that starts your app and can contain other scripts you use to setup, update, deploy or run your application.
What does the folder config/ contain?
Configure your application’s routes, database, and more. This is covered in more detail in Configuring Rails Applications.
whats in config.ru file?
Rack configuration for Rack based servers used to start the application.
What does the folder db/ contain?
Contains your current database schema, as well as the database migrations.
what’s in Gemfile and
Gemfile.lock file?
These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the Bundler website.
What does the folder lib/ contain?
Extended modules for your application.
What does the folder public/ contain?
The only folder seen by the world as-is. Contains static files and compiled assets.
what’s in Rakefile?
This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing Rakefile, you should add your own tasks by adding files to the lib/tasks directory of your application.
README.md
This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on.
What does the folder test/ contain?
Unit tests, fixtures, and other test apparatus. These are covered in Testing Rails Applications.
What does the folder tmp/ contain?
Temporary files (like cache and pid files).
What does the folder vendor/ contain?
A place for all third-party code. In a typical Rails application this includes vendored gems.
gitignore
This file tells git which files (or patterns) it should ignore. See Github - Ignoring files for more info about ignoring files.
Starting up the Web Server
$ rails server
What is a controller
A controller’s purpose is to receive specific requests for the application.
What is routing
Routing decides which controller receives which requests.
What is an action
Each action’s purpose is to collect information to provide it to a view.
What is a view?
A view’s purpose is to display this information in a human readable format.
create a new controller
$ rails generate controller Welcome index
tell it you want a controller called “Welcome” with an action called “index”
Setting the Application Home Page
Open the file config/routes.rb in your editor.
add root ‘welcome#index’
Whats a resource?
A resource is the term used for a collection of similar objects, such as articles, people or animals
What can you do with a resource?
You can create, read, update and destroy items for a resource and these operations are referred to as CRUD operations.
where do i add a resource?
resources :articles in config/routes.rb
How to see routes?
$ rails routes
What environments do rails have?
test, production, and development
How do you see the current environment?
in folder config/environment and RAILS_ENV,