Skip to content

Instantly share code, notes, and snippets.

{
"ignored_packages":
[
"Vintage"
],
"hot_exit": false,
"remember_open_files": false,
"save_on_focus_lost": true,
"tab_size": 2,
"translate_tabs_to_spaces": true
require 'digest/sha2'
module GoogleAuthoriseHelper
def google_auth_url(user_id)
encoded_id = encode_id_and_store(user.id)
end
def encode_id_and_store(user_id)
sha256 = Digest::SHA2.new(256)
require 'net/http'
require 'net/https'
require 'openssl'
file_path = File.expand_path(__FILE__)
path = File.dirname(file_path)
oauth_url = 'https://accounts.google.com/o/oauth2/auth'
url = URI.parse(oauth_url)
class Url < ActiveRecord::Base
def find_link(url)
link = link_finder(url)
EM::Run {
link.callback {
p "done"
}
}
end
end
@jlebrech
jlebrech / routes.rb
Created February 25, 2013 10:39
how to send "/:username" to "show/username" and nest favourites into "/username"
...
resources :users do # should map "/:username" to user_controller/show
resources :favourites do # should send /:username/favourites, to favourite_controller/index
resources :fruit, :cars, :sports, :foods
end
end
@jlebrech
jlebrech / _form.html.erb
Last active December 13, 2015 19:08
Nested resource with custom path
..
form_for [current_user,@thing]
..
# this creates the path
# /user/bob/things to post to
# but I would like the path
# /bob/things
@jlebrech
jlebrech / aliases_with_params.rb
Created February 12, 2013 09:00
Would be nice if this worked?
alias :save :user_confirm
alias :delete :user_confirm
def user_confirm(current_user)
unless self.user == current_user
errors.add(:user, 'Must be you')
else
super
end
end
@jlebrech
jlebrech / _widget.erb
Last active December 12, 2015 05:29
domain problem based javascript, css and html
<% widget_coffee :my_widget do %>
... some coffeescript excluding closure wrapping
... this content gets compiled into application.js once.
<% end %>
<% widget_sass :my_widget do %>
... namespaced styling for my_widget
... this gets compiled into application.css once.
<% end %>
@jlebrech
jlebrech / new.rb
Created February 6, 2013 10:20
Instead of a blank migration, a commented out but moderately complex example (using the name from the cli)
# class AddCategories < ActiveRecord::Migration
# def up
# create_table :categories do |t|
# t.string :name
# t.integer :score
# ... # other examples
# end
# end
# def down