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
ssh [email protected] | |
git clone git://github.com/myname/myapp.git | |
cd myapp/ |
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
$ rails c | |
class MyMailer < ActionMailer::Base | |
default :from => '[email protected]' | |
def test_email | |
mail(:to => "[email protected]", :subject => 'Testing from Rails console', :body => 'This is a test email') | |
end | |
end | |
MyMailer::test_email.deliver! |
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
# List group and example names | |
rspec spec --format d | |
# Generate HTML report | |
rspec spec --format html -o "public/rspec-report.html" |
OlderNewer