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
// this is comment | |
/* | |
this is multi | |
level | |
comment | |
*/ | |
document.write("print this"); | |
// window.alert(5 + 6); | |
console.log('in console'); | |
var a, b, c; |
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
Initial: | |
------- | |
<?xml version="1.0" encoding="UTF-8"?> | |
<aiml version="2.0"> | |
<category> | |
<pattern>hi</pattern> | |
<template>hello there..</template> | |
</category> | |
</aiml> |
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
Rspec:: | |
rspec | |
rspec spec/models | |
rspec spec/controllers/accounts_controller_spec.rb | |
rails generate rspec:model | |
/factories /support /models /controllers /features /views /mailers /routing /helpers | |
Model spec - behavior of model | |
require "rails_helper" |