This file contains hidden or 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
diff --git a/ext/openssl/ossl_ssl.c b/ext/openssl/ossl_ssl.c | |
--- a/ext/openssl/ossl_ssl.c | |
+++ b/ext/openssl/ossl_ssl.c | |
@@ -107,6 +107,18 @@ | |
OSSL_SSL_METHOD_ENTRY(TLSv1), | |
OSSL_SSL_METHOD_ENTRY(TLSv1_server), | |
OSSL_SSL_METHOD_ENTRY(TLSv1_client), | |
+#if defined(HAVE_TLSV1_2_METHOD) && defined(HAVE_TLSV1_2_SERVER_METHOD) && \ | |
+ defined(HAVE_TLSV1_2_CLIENT_METHOD) | |
+ OSSL_SSL_METHOD_ENTRY(TLSv1_2), |
This file contains hidden or 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 CreateResumeDesigns < ActiveRecord::Migration | |
def up | |
change_table :resume_designs do |t| | |
t.string :purpose | |
end | |
end | |
def down | |
end | |
end |
This file contains hidden or 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
describe ".inc_num_runs_by_brand" do | |
let (:upc_master) {FactoryGirl.create(:upc_master_with_sizes)} | |
it "increments the num runs correctly" do | |
UpcMaster.inc_num_runs_by_brand(upc_master.sizes.first.brand) | |
upc_master.reload.num_runs.should == 1 | |
end | |
end |
This file contains hidden or 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
command! -nargs=1 Silent | |
\ | execute ':silent !'.<q-args> | |
\ | execute ':redraw!' | |
" test the current file in the next tmux window | |
nmap <leader>tt :Silent tmux send-keys -t 1 "rspec %" C-m <cr> | |
" test the line from user input | |
nmap <leader>tl :Silent tmux send-keys -t 1 "rspec %:<C-r>=line('.')<cr>" C-m <cr> |
This file contains hidden or 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
add "add bitty account" link in networks index page | |
problem with twitter lists on twitter account (won't load) | |
followers button on twitter account (won't load?) | |
remove quick reply actions (pictures, link) until we have them working | |
loader on timeline network nav change (wtf does this mean?) | |
performance on loading a single twitter account (can't really be helped, api request bound..) | |
add ok/apply button on report date select | |
padding on left of users index | |
show on report clicks (load info in bottom) (wtf does this mean?) | |
all external links in system should load to new page using target="_blank" (fb post links don't do this atm) |