Skip to content

Instantly share code, notes, and snippets.

@neerajsingh0101
neerajsingh0101 / Gemfile
Created April 24, 2012 22:36 — forked from drogus/Gemfile
Router
gem "actionpack"
gem "thin"
@neerajsingh0101
neerajsingh0101 / capybara cheat sheet
Created March 30, 2012 02:56 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')
@neerajsingh0101
neerajsingh0101 / to_xml
Created April 26, 2010 13:06 — forked from josevalim/to_xml
to_xml agreement
> [User.first, User.last].to_xml
# master branch
<users type="array">
<user>
<name>John</name>
</user>
<user>
<name>Mary</name>
</user>
</users>
[pjackson@host]$ cat ~/.ssh/environment
ORACLE_BASE="/opt/oracle"
ORACLE_HOME="/opt/oracle/product/10.2.0/client_1"
DYLD_LIBRARY_PATH=/opt/oracle/product/10.2.0/client_1/lib
[pjackson@host]$ sudo grep PermitUser /etc/ssh/sshd_config
PermitUserEnvironment yes
require 'rubygems'
require 'eventmachine'
module ChatClient
def self.list
@list ||= []
end
def post_init
@name = "anonymous_#{rand(99999)}"