#Xcode Command Line Tools
Xcode > Preferences > Downloads > Command Line Tools
####Homebrew
# install package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
#!/usr/bin/env bash | |
TOKEN="INSERTACCESSTOKENHERE" | |
OWNER="BBC-News" | |
REPO="responsive-news" | |
FILE_PATH="scripts/build/tabloid.sh" | |
FILE="https://api.github.com/repos/$OWNER/$REPO/contents/$FILE_PATH" | |
curl --header "Authorization: token $TOKEN" \ | |
--header 'Accept: application/vnd.github.v3.raw' \ |
#!/bin/bash | |
COOKIE_JAR="ab-cookie-jar" | |
COOKIE_NAME="_myapp_session" | |
USERNAME="[email protected]" | |
PASSWORD="password" | |
LOGIN_PAGE_URI="http://localhost:3000/users/sign_in" | |
TEST_PAGE_URI="http://localhost:3000/dashboard" | |
echo "Logging in and storing session id." |
#!/bin/bash | |
COOKIE_JAR="ab-cookie-jar" | |
COOKIE_NAME="_myapp_session" | |
USERNAME="[email protected]" | |
PASSWORD="password" | |
LOGIN_PAGE_URI="http://localhost:3000/users/sign_in" | |
TEST_PAGE_URI="http://localhost:3000/dashboard" | |
echo "Logging in and storing session id." |
#Xcode Command Line Tools
Xcode > Preferences > Downloads > Command Line Tools
####Homebrew
# install package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
#Ruby For Beginners : Setup
Greetings Rubyists:
We hope you are excited to learn Ruby. Before the workshop, we need you to set up your development environment with Ruby and a text editor. Choose one of the three options listed below.
$ gem install sinatra
in your Terminal and install the sinatra gem without any errors.$ gem install sinatra
in your Terminal and install the sinatra gem without any errorPart of why we want to separate code into separate classes and modules is that it keeps things flexible. For example, let's say that there is no GothamCrimeFigher class and there is only a Human class. If we wanted to include the UtilityBelt module in the human class we would be giving all humans utility belts. While this would be fantastic, it is unnecessary. Therefore, we abstract out the functionality that is not shared across all of humanity into a subclass that we can change as we see fit