Skip to content

Instantly share code, notes, and snippets.

class WelcomeController < ApplicationController
def index
if @user = current_user
@todos = @user.todos.all
else
#Handle unauthenticated user
end
end
end
@MichaelCPell
MichaelCPell / gist:3169eeb2b119b8b3175a
Last active August 29, 2015 14:07
Devise Api::SessionsController
class Api::SessionsController < ApiController
def create
if params[:username]
@user = User.find_by_username(params[:username])
token.user = @user if _provided_valid_password? || _provided_valid_api_key?
end
respond_with token
end
class AuthController < ApplicationController
#POST /users/token
def token
user = User.find_by(email: params[:email])
if user.valid_password?(params[:password])
respond_with user.authentication_token
else
#handle bad credentials
end
render js: "window.location = '#{root_path}'; $('#flash-notice').html('LOG YO SELF')"
@MichaelCPell
MichaelCPell / gist:2322be6fd6858b197cc6
Created November 19, 2014 21:31
example client-side basic validation
$("#day-field").change(function(){
new_val = $(this).val()
if(new_val < 1 || new_val > 31){
$(this).val(1)
$("#day-field").append("<p>Invalid Date Entered</p>")
}
})
<%= form_for current_user do |f| %>
<%= f.hidden_field :role, value: "standard" %>
<%= f.submit %>
<% end %>
class Title
attr_accessor :string
def initialize(string)
@string = string
end
def fix
articles = %w{a of the and And The AND THE}
a = string.split(' ')
@MichaelCPell
MichaelCPell / gist:a4bc3221c60478344cfb
Created February 5, 2015 19:10
Basic Example for seeds, talk to me when you try to implement it!
f = File.open("/path/to/some/image.png")
a = AvatarUploader.new(file)
User.create(...
avatar: a
...)
var = nil
counter = 0
while(var==nil) do
counter = counter + 1
puts counter
var = true if counter >= 5
end
class Calculator
def self.description
"Performs basic mathematical operations"
end
# def instance methods
# calc = Calculator.new(7,2)
# end
def initialize(x, y)