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
$ rake swatches | |
"Creating: white (#FFFFFF) => images/colors/white.png" | |
"Creating: navy (#304264) => images/colors/navy.png" | |
"Creating: black (#0F0F0F) => images/colors/black.png" | |
"Creating: forest_green (#2E5234) => images/colors/forest_green.png" | |
"Creating: blue (#3055A0) => images/colors/blue.png" | |
"Creating: orange (#DA7A2D) => images/colors/orange.png" | |
"Creating: green (#4D8756) => images/colors/green.png" | |
"Creating: brick (#6F0028) => images/colors/brick.png" |
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 Metric | |
include MongoMapper::Document | |
key :timestamps, Array | |
key :action, String | |
def self.track(action) | |
collection.update( | |
{ :action => action }, | |
{ "$push" => { :timestamps => Time.now }}, |
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
# app/models/job.rb | |
class Job | |
# job.specializations will hold an array of strings | |
# like this: ['rails', 'javascript'] | |
serialize :specializations, Array | |
# Solr will index each element of the array separately | |
searchable do |
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
# | |
# You can also do Job.solr_search, but I like this syntax better | |
# | |
Sunspot.search(Job) do | |
with(:specializations, ['rails', 'python', 'perl') | |
end.results |
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
<% form_for Job.new do |f| %> | |
# | |
# Here, we use a multiple select, but any forrm element named | |
# "job_specializations[]" will populate the jobs.specializations | |
# array | |
# | |
<%= f.select :specializations, | |
["rails", "ruby", "js", "python], | |
:multiple => true %> |
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
# | |
# Here, we query all JobSeekers where any of their "desired | |
# specializations" match any of the job's "required specializations" | |
# AND any of their "desired positions" match any of the job's...etc | |
# | |
# We also only want JobSeekers who have NOT accepted this job. | |
# | |
# And we do a fulltext keyword search too, just for fun. | |
# |
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
Delivered-To: [email protected] | |
Received: by 10.52.174.78 with SMTP id bq14csp20270vdc; | |
Sat, 28 Apr 2012 10:31:46 -0700 (PDT) | |
Received: by 10.216.135.225 with SMTP id u75mr8769804wei.97.1335634305296; | |
Sat, 28 Apr 2012 10:31:45 -0700 (PDT) | |
Return-Path: <[email protected]> | |
Received: from nm7-vm0.bullet.mail.ird.yahoo.com (nm7-vm0.bullet.mail.ird.yahoo.com. [77.238.189.222]) | |
by mx.google.com with SMTP id ei5si7755970wid.4.2012.04.28.10.31.44; | |
Sat, 28 Apr 2012 10:31:45 -0700 (PDT) | |
Received-SPF: pass (google.com: best guess record for domain of [email protected] designates 77.238.189.222 as permitted sender) client-ip=77.238.189.222; |
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
Honeybadger.configure do |config| | |
# Will send session["sensitive_key"] = "FILTERED" to Honeybadger | |
config.params_filters << "sensitive_key" | |
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
# First, you define an email receiver class | |
class EmailReceiver < Incoming::Strategies::CloudMailin | |
def receive(mail) | |
puts %(Got message from #{mail.to.first} with subject "#{mail.subject}") | |
end | |
end | |
# Then you feed it a Rack::Request object. And you're done. | |
req = Rack::Request.new(env) | |
result = EmailReceiver.receive(req) # => Got message from [email protected] with subject "hello world" |
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
# app/controllers/emails_controller.rb | |
class EmailsController < ActionController::Base | |
def create | |
if EmailToSmsReceiver.receive(request) | |
render :json => { :status => 'ok' } | |
else | |
render :json => { :status => 'rejected' }, :status => 403 | |
end | |
end | |
end |