This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
projects/index | |
<h1>Listing projects</h1> | |
<br /> | |
<div id="projects_list"> | |
<% @projects.each do |project| %> | |
<%= project.name %><br> | |
<% end %> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before_save :set_expiration_date #once its been saved update the expires_at attribute with the set_expiration_method | |
def expired? | |
if accepted! #if an offer has been accepted it cannot expire | |
return false | |
else | |
created_at > expires_at #if created_at is greater than expires_at return true, else return false | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AddExpiresAtToOffer < ActiveRecord::Migration | |
def change | |
add_column :offers, :expires_at, :date | |
Offer.reset_column_information | |
Offer.find_each do |offer| | |
puts '...running loop' | |
offer.update_attribute(:expires_at, offer.created_at + 6.months) | |
offer.save |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this is my console after I commented out 'Capybara.server_boot_timeout = 50' in spec_helper.rb | |
george@ubuntu:~/workspace/openbay$ rspec spec | |
No DRb server is running. Running in local process instead ... | |
Finished in 0.21461 seconds | |
0 examples, 0 failures | |
/usr/lib/ruby/gems/1.9.1/gems/headless-1.0.1/lib/headless/cli_util.rb:9:in `ensure_application_exists!': Xvfb not found on your system (Headless::Exception) | |
from /usr/lib/ruby/gems/1.9.1/gems/headless-1.0.1/lib/headless.rb:68:in `initialize' | |
from /home/george/workspace/openbay/spec/spec_helper.rb:37:in `new' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/home/george/.rvm/gems/ruby-1.9.3-p374@global/gems/bundler-1.3.5/lib/bundler/rubygems_integration.rb:224:in `block in replace_gem': can't activate bcrypt-ruby (~> 3.0.0), already activated bcrypt-ruby-3.1.1. Make sure all dependencies are added to Gemfile. (Gem::LoadError) | |
12:32:46 web.1 | from /home/george/workspace/openbay/lib/gem_ext/active_model/secure_password.rb:39:in `has_openbay_secure_password' | |
12:32:46 web.1 | from /home/george/workspace/openbay/app/models/service_station/employee.rb:10:in `<class:Employee>' | |
12:32:46 web.1 | from /home/george/workspace/openbay/app/models/service_station/employee.rb:3:in `<top (required)>' | |
12:32:46 web.1 | from /home/george/.rvm/gems/ruby-1.9.3-p374@openbay/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:469:in `load' | |
12:32:46 web.1 | from /home/george/.rvm/gems/ruby-1.9.3-p374@openbay/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:469:in `block in load_file' | |
12:32:46 web.1 | from /home/george/.rvm/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Email One Off</title> | |
<style type="text/css"></style> | |
</head> | |
<body> | |
<form action="process.php" method="POST"> | |
<p>To</p> | |
<input type="text" name="to" id="to" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<link rel="stylesheet" type="text/css" href="css/test.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div id="dealersHand" class="cf"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var deck = [2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11]; | |
// Creates a Call To Action div | |
// Add button class to create basic button style | |
// @params c - the class | |
// @params i - the id e.g. ctaHit, ctaStand etc | |
// @params t - the text | |
// @params f - the function to call onclick | |
function ctaGenerator(c, i, t) { | |
var cta = document.createElement('div'); | |
cta.setAttribute('class', c); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<link rel="stylesheet" type="text/css" href="css/test.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div id="playerScore"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<link rel="stylesheet" type="text/css" href="css/test.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div id="playerScore"></div> |
OlderNewer