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
# Expirable is a module that lets you easily cache | |
# groups of records, either across an entire record: | |
# cache(Snippet) => cache(Snippet.cache_key) | |
# or, across a scope: | |
# cache(page.blocks) => cache(page.blocks.cache_key) | |
# | |
# Why not just use `maximum(:updated_at)`? | |
# Because it requires 2 queries: the total count, | |
# and the updated_at timestamp |
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
console: bundle exec rails console | |
rake: bundle exec rake | |
web: daemonized-worker & web | |
worker: worker |
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 JavascriptGenerator < Rails::Generators::NamedBase | |
def create_javascript_files | |
create_file "app/assets/javascripts/#{file_name}.coffee", "# New JavaScript File" | |
create_file "spec/javascripts/#{file_name}_spec.coffee", <<-SPEC | |
describe "test for #{file_name}", -> | |
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
def ask_for_age(name) | |
# We have to ask for this person's age | |
print "What is #{name}'s age? " | |
rand(100) # gets.chomp.to_i | |
end | |
# Roomful of People |
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 Car | |
class << self | |
def advertise(model) | |
puts "BUY IT NOW! #{model}" | |
end | |
def manufacture(make) |
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
# Quiz Exercise, Part One | |
# | |
# Quiz for a name and birthday, | |
# then display the age | |
# | |
# For example: | |
# | |
# Hey there! Please enter your name: | |
# > John | |
# |
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
# Quiz Exercise, Part One | |
# | |
# Quiz for a list of names & birthdays, | |
# then list out their ages | |
# | |
# For example: | |
# | |
# Hey there! Please enter a list of names: | |
# > John, Sam, Bob, Alisha, Henry | |
# |
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
# Quiz Exercise, Part One | |
# | |
# Quiz for a name and birthday, | |
# then display the age | |
# | |
# For example: | |
# | |
# Hey there! Please enter your name: | |
# > John | |
# |
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
# Quiz Exercise, Part One | |
# | |
# Quiz for a list of names & birthdays, | |
# then list out their ages | |
# | |
# For example: | |
# | |
# Hey there! Please enter a list of names: | |
# > John, Sam, Bob, Alisha, Henry | |
# |
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
def bouncer(name, age = 18) | |
if age < 21 | |
puts "Go away, #{name}" | |
else | |
puts "OK" | |
end | |
end | |