Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
trkoch committed Feb 12, 2013
0 parents commit efb4361
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
23 changes: 23 additions & 0 deletions snippets/javascript.snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# des
snippet des
describe("${1}", function() {
${2}
});
# it
snippet it
it("${1}", function() {
${2}
});
# beforeEach
snippet beforeEach
beforeEach(function() {
${1}
});
# afterEach
snippet afterEach
afterEach(function() {
${1}
});
# ex
snippet ex
expect(${1}).
11 changes: 11 additions & 0 deletions snippets/ruby.snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# do
snippet do
do
${1}
end
snippet do|
do |${1}|
${2}
end
snippet debugger
require 'pry-debugger'; binding.pry

0 comments on commit efb4361

Please sign in to comment.