All users will start at (root):
/user/dashboard (show)
User will create a new writting request:
/assignment/new
FactoryGirl.define do | |
factory :email, class: OpenStruct do | |
# to [{ full: '[email protected]', email: '[email protected]', token: 'to_user', host: 'email.com', name: nil }] | |
# from '[email protected]' | |
subject 'email subject' | |
body 'Hello!' | |
end | |
end |
[user] | |
name = Timothy Barnes | |
email = [email protected] | |
[alias] | |
co = checkout | |
st = status | |
[color] | |
diff = auto | |
status = auto | |
branch = auto |
$(document).ready(function(){ | |
function canvas() { | |
window.requestAnimationFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame||function(f){window.setTimeout(f,40/60); | |
};};} | |
var canvas1; | |
var canvas2; | |
var canvas3; | |
var canvas4; | |
var canvas5; |
<br> | |
<div class="row"> | |
<div class="col-lg-12"> | |
<div class="col-lg-8 image_container"><%= image_tag(@promotion.image_url, class: "img-rounded") if @promotion.image? %> | |
</div> | |
<div class="col-lg-3 thumbnail"> | |
<h4 align="center">Summary</h4> | |
<br> | |
<p align="center">Price: $<%= @promotion.price %></p> | |
<br> |
group :assets do | |
gem 'sass-rails', '3.2.6' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'bootstrap-sass', '~> 2.3.1.0' | |
gem 'sass', '3.2.10' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', :platforms => :ruby |
class Playlist | |
attr_reader :song_list, :history | |
def create_playlist(list) | |
@song_list = list | |
@song_index = 0 | |
@history = [current_song] | |
end | |
# def problem_2(s, t) | |
# a = 0; s.split.each_with_index { |c, i| a += 1 if t[i] != c }; a | |
# end | |
def problem_2(s, t) | |
(s.split("") & t.split("")).size | |
end | |
s = "AAABab" | |
t = "AAAAaa" |
All users will start at (root):
/user/dashboard (show)
User will create a new writting request:
/assignment/new
require 'active_support/concern' | |
module Testable | |
extend ActiveSupport::Concern | |
def instance_puts | |
puts "This is an instance method" | |
end | |
# def self.included(base) |
alias subl='"/c/Program Files/Sublime Text 2/sublime_text.exe"' | |
alias irb='ruby -S irb' | |
alias open='start $@' | |
export EDITOR='subl -w' |