Skip to content

Instantly share code, notes, and snippets.

@thisiskun
thisiskun / Gemfile
Created March 13, 2013 08:45
test env setup
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'pry-rails'
gem 'pry-nav'
end
group :test do
gem 'capybara'
end
@thisiskun
thisiskun / gist:1730796
Created February 3, 2012 15:45
hmac sha1
# for 1.9, make sure 'gem install ruby-hmac'
require 'hmac-sha1'
key = '123456'
message = 'hello world'
hmac = HMAC::SHA1.new key
hmac.update message
sig = hmac.hexdigest
puts sig
@thisiskun
thisiskun / helloworld.rb
Created January 6, 2012 03:47
helloworld
class HelloWorld
def say_hello(name)
puts "hello, #{name}"
end
end