I hereby claim:
- I am brmatt on github.
- I am thatmatt (https://keybase.io/thatmatt) on keybase.
- I have a public key ASCzUvNoJaxPkxvJVoltLkDSfhTvX6CmR-9V0V5ulm4CXgo
To claim this, I am signing this object:
<?php | |
add_filter('memberful_wp_after_sign_in_url', 'my_after_sign_in_url'); | |
function my_after_sign_in_url() { | |
return 'http://gohere.com'; | |
} |
# Activate the gem you are reporting the issue against. | |
gem 'activerecord', if ENV['RAILS_3'] then '3.2.19' else '4.1.6' end | |
require 'active_record' | |
require 'minitest/autorun' | |
require 'logger' | |
# Ensure backward compatibility with Minitest 4 | |
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test) | |
# This connection will do for database-independent bug reports. |
SELECT "posts".*, "authors".* | |
FROM "posts" | |
LEFT JOIN "authors" ON ("posts"."author_id" = "authors"."author_id"); |
require 'oauth2' | |
client = OAuth2::Client.new( | |
'client_id', | |
'client_secret', | |
:site => 'https://workshop.memberful.com', | |
:authorize_url => '/oauth' | |
) | |
redirect_to client.auth_code.authorize_url |
Whoops, 404! |
I hereby claim:
To claim this, I am signing this object:
{ | |
"x_axis": { | |
"labels": [ | |
"2000", | |
"2001", | |
"2002", | |
"2003", | |
"2004", | |
"2005" | |
] |
#!/usr/bin/env ruby | |
resources = $stdin.readlines.map(&:split).flatten.map do |resource| | |
{ | |
module: resource.scan(%r{module\.([a-z0-9\-_]+)}).to_a.join("."), | |
identifier: resource.match(%r{(?:module\.[a-z0-9\-_]+\.)*(.*)$}).captures.first, | |
} | |
end | |
resources.each do |resource| |