18 Retrospective 16.4 Task K4: Add a locale switcher.
git add .
git commit -a -m "save work"
[master bfaf02b] save work
131 files changed, 3621 insertions(+), 122 deletions(-)
create mode 100644 app/assets/javascripts/admin.js.coffee
create mode 100644 app/assets/javascripts/carts.js.coffee
create mode 100644 app/assets/javascripts/line_items.js.coffee
create mode 100644 app/assets/javascripts/orders.js.coffee
create mode 100644 app/assets/javascripts/sessions.js.coffee
create mode 100644 app/assets/javascripts/store.js.coffee
create mode 100644 app/assets/javascripts/users.js.coffee
create mode 100644 app/assets/stylesheets/admin.css.scss
create mode 100644 app/assets/stylesheets/application.css.scss
create mode 100644 app/assets/stylesheets/carts.css.scss
create mode 100644 app/assets/stylesheets/line_items.css.scss
create mode 100644 app/assets/stylesheets/orders.css.scss
create mode 100644 app/assets/stylesheets/sessions.css.scss
create mode 100644 app/assets/stylesheets/store.css.scss
create mode 100644 app/assets/stylesheets/users.css.scss
create mode 100644 app/controllers/admin_controller.rb
create mode 100644 app/controllers/carts_controller.rb
create mode 100644 app/controllers/concerns/current_cart.rb
create mode 100644 app/controllers/line_items_controller.rb
create mode 100644 app/controllers/orders_controller.rb
create mode 100644 app/controllers/sessions_controller.rb
create mode 100644 app/controllers/store_controller.rb
create mode 100644 app/controllers/users_controller.rb
create mode 100644 app/helpers/admin_helper.rb
create mode 100644 app/helpers/carts_helper.rb
create mode 100644 app/helpers/line_items_helper.rb
create mode 100644 app/helpers/orders_helper.rb
create mode 100644 app/helpers/sessions_helper.rb
create mode 100644 app/helpers/store_helper.rb
create mode 100644 app/helpers/users_helper.rb
create mode 100644 app/mailers/order_mailer.rb
create mode 100644 app/models/cart.rb
create mode 100644 app/models/line_item.rb
create mode 100644 app/models/order.rb
create mode 100644 app/models/user.rb
create mode 100644 app/views/admin/index.html.erb
create mode 100644 app/views/carts/_cart.html.erb
create mode 100644 app/views/carts/_cart.json.jbuilder
create mode 100644 app/views/carts/_form.html.erb
create mode 100644 app/views/carts/edit.html.erb
create mode 100644 app/views/carts/index.html.erb
create mode 100644 app/views/carts/index.json.jbuilder
create mode 100644 app/views/carts/new.html.erb
create mode 100644 app/views/carts/show.html.erb
create mode 100644 app/views/carts/show.json.jbuilder
create mode 100644 app/views/line_items/_form.html.erb
create mode 100644 app/views/line_items/_line_item.html.erb
create mode 100644 app/views/line_items/_line_item.json.jbuilder
create mode 100644 app/views/line_items/_line_item.text.erb
create mode 100644 app/views/line_items/create.js.erb
create mode 100644 app/views/line_items/edit.html.erb
create mode 100644 app/views/line_items/index.html.erb
create mode 100644 app/views/line_items/index.json.jbuilder
create mode 100644 app/views/line_items/new.html.erb
create mode 100644 app/views/line_items/show.html.erb
create mode 100644 app/views/line_items/show.json.jbuilder
create mode 100644 app/views/order_mailer/received.text.erb
create mode 100644 app/views/order_mailer/shipped.html.erb
create mode 100644 app/views/orders/_form.html.erb
create mode 100644 app/views/orders/_order.html.erb
create mode 100644 app/views/orders/_order.json.jbuilder
create mode 100644 app/views/orders/edit.html.erb
create mode 100644 app/views/orders/index.html.erb
create mode 100644 app/views/orders/index.json.jbuilder
create mode 100644 app/views/orders/new.html.erb
create mode 100644 app/views/orders/show.html.erb
create mode 100644 app/views/orders/show.json.jbuilder
create mode 100644 app/views/products/who_bought.atom.builder
create mode 100644 app/views/products/who_bought.html.erb
create mode 100644 app/views/products/who_bought.xml.builder
create mode 100644 app/views/sessions/create.html.erb
create mode 100644 app/views/sessions/destroy.html.erb
create mode 100644 app/views/sessions/new.html.erb
create mode 100644 app/views/store/index.html.erb
create mode 100644 app/views/users/_form.html.erb
create mode 100644 app/views/users/_user.json.jbuilder
create mode 100644 app/views/users/edit.html.erb
create mode 100644 app/views/users/index.html.erb
create mode 100644 app/views/users/index.json.jbuilder
create mode 100644 app/views/users/new.html.erb
create mode 100644 app/views/users/show.html.erb
create mode 100644 app/views/users/show.json.jbuilder
create mode 100644 config/initializers/i18n.rb
rewrite config/locales/en.yml (99%)
create mode 100644 config/locales/es.yml
rewrite config/routes.rb (89%)
create mode 100644 db/migrate/20170603000002_create_carts.rb
create mode 100644 db/migrate/20170603000003_create_line_items.rb
create mode 100644 db/migrate/20170603000004_add_quantity_to_line_items.rb
create mode 100644 db/migrate/20170603000005_combine_items_in_cart.rb
create mode 100644 db/migrate/20170603000006_add_price_to_line_item.rb
create mode 100644 db/migrate/20170603000007_create_orders.rb
create mode 100644 db/migrate/20170603000008_add_order_id_to_line_item.rb
create mode 100644 db/migrate/20170603000009_create_users.rb
create mode 100644 public/javascripts/i18n.js
create mode 100644 public/javascripts/translations.js
create mode 100644 test/controllers/admin_controller_test.rb
create mode 100644 test/controllers/carts_controller_test.rb
create mode 100644 test/controllers/line_items_controller_test.rb
create mode 100644 test/controllers/orders_controller_test.rb
create mode 100644 test/controllers/sessions_controller_test.rb
create mode 100644 test/controllers/store_controller_test.rb
create mode 100644 test/controllers/users_controller_test.rb
create mode 100644 test/fixtures/carts.yml
create mode 100644 test/fixtures/line_items.yml
create mode 100644 test/fixtures/orders.yml
create mode 100644 test/fixtures/users.yml
create mode 100644 test/helpers/admin_helper_test.rb
create mode 100644 test/helpers/carts_helper_test.rb
create mode 100644 test/helpers/line_items_helper_test.rb
create mode 100644 test/helpers/orders_helper_test.rb
create mode 100644 test/helpers/sessions_helper_test.rb
create mode 100644 test/helpers/store_helper_test.rb
create mode 100644 test/helpers/users_helper_test.rb
create mode 100644 test/integration/dsl_user_stories_test.rb
create mode 100644 test/integration/user_stories_test.rb
create mode 100644 test/mailers/order_mailer_test.rb
create mode 100644 test/mailers/previews/order_mailer_preview.rb
create mode 100644 test/models/cart_test.rb
create mode 100644 test/models/line_item_test.rb
create mode 100644 test/models/order_test.rb
create mode 100644 test/models/user_test.rb
edit config/database.yml
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: db/test.sqlite3
production:
adapter: mysql2
encoding: utf8
reconnect: false
database: depot_production
pool: 5
username: username
password: password
host: localhost
edit Gemfile
group :production do
gem 'mysql2', '~> 0.3.10'
end
edit Gemfile
# Use Capistrano for deployment
gem 'capistrano-rails', group: :development
gem 'capistrano-rvm', group: :development
gem 'capistrano-bundler', group: :development
gem 'capistrano-passenger', group: :development
bundle install --local
Resolving dependencies...
Using rake 12.0.0
Using i18n 0.8.4
Using json 1.8.6
Using minitest 5.3.3
Using thread_safe 0.3.6
Using builder 3.2.3
Using erubis 2.7.0
Using rack 1.5.5
Using mime-types-data 3.2016.0521
Using arel 5.0.1.20140414130214
Using bundler 1.15.1
Using thor 0.19.4
Using hike 1.2.3
Using multi_json 1.12.1
Using tilt 1.4.1
Using sqlite3 1.3.13
Using mysql2 0.3.21
Using sass 3.2.19
Using execjs 2.7.0
Using coffee-script-source 1.12.2
Using turbolinks-source 5.0.3
Using rdoc 4.3.0
Using spring 1.7.2
Using bcrypt 3.1.11
Using net-ssh 4.1.0
Using i18n-js 3.0.0
Using tzinfo 1.2.3
Using rack-test 0.6.3
Using mime-types 3.1
Using sprockets 2.12.4
Using uglifier 3.2.0
Using coffee-script 2.4.1
Using turbolinks 5.0.1
Using sdoc 0.4.2
Using net-scp 1.2.1
Using activesupport 4.1.16 from source at `/home/rubys/git/rails`
Using mail 2.6.5
Using sshkit 1.13.1
Using actionview 4.1.16 from source at `/home/rubys/git/rails`
Using activemodel 4.1.16 from source at `/home/rubys/git/rails`
Using jbuilder 2.6.4
Using airbrussh 1.2.0
Using actionpack 4.1.16 from source at `/home/rubys/git/rails`
Using activerecord 4.1.16 from source at `/home/rubys/git/rails`
Using capistrano 3.8.1
Using actionmailer 4.1.16 from source at `/home/rubys/git/rails`
Using railties 4.1.16 from source at `/home/rubys/git/rails`
Using sprockets-rails 2.3.3
Using capistrano-bundler 1.2.0
Using capistrano-rvm 0.1.2
Using capistrano-passenger 0.2.0
Using coffee-rails 4.0.1
Using jquery-rails 3.1.4
Using jquery-ui-rails 6.0.1
Using rails 4.1.16 from source at `/home/rubys/git/rails`
Using sass-rails 4.0.5
Using capistrano-rails 1.2.3
Bundle complete! 18 Gemfile dependencies, 57 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
rake db:setup RAILS_ENV=production
-- create_table("carts", {:force=>true})
-> 0.0256s
-- create_table("line_items", {:force=>true})
-> 0.0193s
-- add_index("line_items", ["cart_id"], {:name=>"index_line_items_on_cart_id"})
-> 0.0340s
-- add_index("line_items", ["product_id"], {:name=>"index_line_items_on_product_id"})
-> 0.0319s
-- create_table("orders", {:force=>true})
-> 0.0192s
-- create_table("products", {:force=>true})
-> 0.0189s
-- create_table("users", {:force=>true})
-> 0.0193s
-- initialize_schema_migrations_table()
-> 0.0708s
echo no | bundle exec cap install STAGES=production
mkdir -p config/deploy
mkdir -p lib/capistrano/tasks
create config/deploy.rb
create config/deploy/production.rb
create Capfile
Capified
edit config/deploy.rb
# be sure to change these values
user = 'rubys'
domain = 'depot.pragprog.com'
# adjust if you are using RVM, remove if you are not
set :rvm_type, :system
set :rvm_ruby_string, 'ruby-2.2.6'
# file paths
set :application, 'depot'
set :repo_url, "#{user}@#{domain}:git/#{fetch(:application)}.git"
set :deploy_to, "/home/#{user}/deploy/#{fetch(:application)}"
# distribute your applications across servers (the instructions below put them
# all on the same server, defined above as 'domain', adjust as necessary)
role :app, domain
role :web, domain
role :db, domain
# you might need to set this if you aren't seeing password prompts
# or are seeing errors like 'no tty present and no askpass program specified'
#
# set :pty true
# As Capistrano executes in a non-interactive mode and therefore doesn't cause
# any of your shell profile scripts to be run, the following might be needed
# if (for example) you have locally installed gems or applications. Note:
# this needs to contain the full values for the variables set, not simply
# the deltas.
#
# set :default_environment, {
# 'PATH' => '<your paths>:/usr/local/bin:/usr/bin:/bin',
# 'GEM_PATH' => '<your paths>:/usr/lib/ruby/gems/1.8'
# }
#
# See https://rvm.io/deployment/capistrano#environment for more info.
edit lib/capistrano/tasks/deploy-seed.rake
#
# Additional task to deploy seed data
#
namespace :deploy do
desc "reload the database with seed data"
task :seed do
on roles(:app) do
execute "cd #{current_path}; bin/rails db:seed RAILS_ENV=production"
end
end
end
edit Capfile
# Load DSL and set up stages
require "capistrano/setup"
# Include default deployment tasks
require "capistrano/deploy"
# Load the SCM plugin appropriate to your project:
#
# require "capistrano/scm/hg"
# install_plugin Capistrano::SCM::Hg
# or
# require "capistrano/scm/svn"
# install_plugin Capistrano::SCM::Svn
# or
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git
# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
#
# https://github.com/capistrano/rvm
# https://github.com/capistrano/rbenv
# https://github.com/capistrano/chruby
# https://github.com/capistrano/bundler
# https://github.com/capistrano/rails
# https://github.com/capistrano/passenger
#
require "capistrano/rvm"
# require "capistrano/rbenv"
# require "capistrano/chruby"
require "capistrano/bundler"
require "capistrano/rails/assets"
require "capistrano/rails/migrations"
require "capistrano/passenger"
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
edit config/environments/production.rb
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Enable Rack::Cache to put a simple HTTP cache in front of your application
# Add `rack-cache` to your Gemfile before enabling this.
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
# config.action_dispatch.rack_cache = true
# Disable Rails's static asset server (Apache or nginx will already do this).
config.serve_static_assets = false
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false
# Generate digests for assets URLs.
config.assets.digest = true
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# Set to :debug to see everything in the log.
config.log_level = :info
# Prepend all log lines with the following tags.
# config.log_tags = [ :subdomain, :uuid ]
# Use a different logger for distributed setups.
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = "http://assets.example.com"
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
# config.action_mailer.raise_delivery_errors = false
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
# Disable automatic flushing of the log to improve performance.
# config.autoflush_log = false
# Use default logging formatter so that PID and timestamp are not suppressed.
config.log_formatter = ::Logger::Formatter.new
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
require 'active_support/core_ext/numeric/bytes'
config.logger = Logger.new(paths['log'].first, 2, 10.megabytes)
end
echo "Depot::Application.configure { paths['log'].first }" | IRBRC=tmp/irbrc ruby bin/rails console production
Loading production environment (Rails 4.1.16)
Switch to inspect mode.
>> Depot::Application.configure { paths['log'].first }
=> "/home/rubys/git/awdwr/edition4/work-226-41/depot/log/production.log"
>>
git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: Gemfile
modified: Gemfile.lock
modified: config/database.yml
modified: config/environments/production.rb
Untracked files:
(use "git add <file>..." to include in what will be committed)
Capfile
config/deploy.rb
config/deploy/
lib/capistrano/
no changes added to commit (use "git add" and/or "git commit -a")