Skip to content

Commit a2e13fc

Browse files
committed
added first_app
0 parents  commit a2e13fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+9955
-0
lines changed

Gemfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.0.1'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3-ruby', :require => 'sqlite3'
9+
10+
# Use unicorn as the web server
11+
# gem 'unicorn'
12+
13+
# Deploy with Capistrano
14+
# gem 'capistrano'
15+
16+
# To use debugger
17+
# gem 'ruby-debug'
18+
19+
# Bundle the extra gems:
20+
# gem 'bj'
21+
# gem 'nokogiri'
22+
# gem 'sqlite3-ruby', :require => 'sqlite3'
23+
# gem 'aws-s3', :require => 'aws/s3'
24+
25+
# Bundle gems for the local environment. Make sure to
26+
# put test-only gems in this group so their generators
27+
# and rake tasks are available in development mode:
28+
# group :development, :test do
29+
# gem 'webrat'
30+
# end

README.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Ruby on Rails Tutorial: first application
2+
3+
This is the first application for
4+
[*Ruby on Rails Tutorial: Learn Rails by Example*] (http://railstutorial.org/)
5+
by [Michael Hartl](http://michaelhartl.com/).
6+

Rakefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
require 'rake'
6+
7+
FirstApp::Application.load_tasks
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class ApplicationController < ActionController::Base
2+
protect_from_forgery
3+
end

app/helpers/application_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ApplicationHelper
2+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>FirstApp</title>
5+
<%= stylesheet_link_tag :all %>
6+
<%= javascript_include_tag :defaults %>
7+
<%= csrf_meta_tag %>
8+
</head>
9+
<body>
10+
11+
<%= yield %>
12+
13+
</body>
14+
</html>

config.ru

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# This file is used by Rack-based servers to start the application.
2+
3+
require ::File.expand_path('../config/environment', __FILE__)
4+
run FirstApp::Application

config/application.rb

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
require File.expand_path('../boot', __FILE__)
2+
3+
require 'rails/all'
4+
5+
# If you have a Gemfile, require the gems listed there, including any gems
6+
# you've limited to :test, :development, or :production.
7+
Bundler.require(:default, Rails.env) if defined?(Bundler)
8+
9+
module FirstApp
10+
class Application < Rails::Application
11+
# Settings in config/environments/* take precedence over those specified here.
12+
# Application configuration should go into files in config/initializers
13+
# -- all .rb files in that directory are automatically loaded.
14+
15+
# Custom directories with classes and modules you want to be autoloadable.
16+
# config.autoload_paths += %W(#{config.root}/extras)
17+
18+
# Only load the plugins named here, in the order given (default is alphabetical).
19+
# :all can be used as a placeholder for all plugins not explicitly named.
20+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
21+
22+
# Activate observers that should always be running.
23+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
24+
25+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
26+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
27+
# config.time_zone = 'Central Time (US & Canada)'
28+
29+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
30+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
31+
# config.i18n.default_locale = :de
32+
33+
# JavaScript files you want as :defaults (application.js is always included).
34+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
35+
36+
# Configure the default encoding used in templates for Ruby 1.9.
37+
config.encoding = "utf-8"
38+
39+
# Configure sensitive parameters which will be filtered from the log file.
40+
config.filter_parameters += [:password]
41+
end
42+
end

config/boot.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require 'rubygems'
2+
3+
# Set up gems listed in the Gemfile.
4+
gemfile = File.expand_path('../../Gemfile', __FILE__)
5+
begin
6+
ENV['BUNDLE_GEMFILE'] = gemfile
7+
require 'bundler'
8+
Bundler.setup
9+
rescue Bundler::GemNotFound => e
10+
STDERR.puts e.message
11+
STDERR.puts "Try running `bundle install`."
12+
exit!
13+
end if File.exist?(gemfile)

config/database.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# SQLite version 3.x
2+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
3+
development:
4+
adapter: sqlite3
5+
database: db/development.sqlite3
6+
pool: 5
7+
timeout: 5000
8+
9+
# Warning: The database defined as "test" will be erased and
10+
# re-generated from your development database when you run "rake".
11+
# Do not set this db to the same as development or production.
12+
test:
13+
adapter: sqlite3
14+
database: db/test.sqlite3
15+
pool: 5
16+
timeout: 5000
17+
18+
production:
19+
adapter: sqlite3
20+
database: db/production.sqlite3
21+
pool: 5
22+
timeout: 5000

0 commit comments

Comments
 (0)