Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: ea
# contributor: Translated from TextMate Snippet
# name: each { |e| .. }
# --
each { |${1:e}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eab
# contributor: Translated from TextMate Snippet
# name: each_byte { |byte| .. }
# --
each_byte { |${1:byte}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eac-
# contributor: Translated from TextMate Snippet
# name: each_char { |chr| .. }
# --
each_char { |${1:chr}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eac-
# contributor: Translated from TextMate Snippet
# name: each_cons(..) { |group| .. }
# --
each_cons(${1:2}) { |${2:group}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eai
# contributor: Translated from TextMate Snippet
# name: each_index { |i| .. }
# --
each_index { |${1:i}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eak
# contributor: Translated from TextMate Snippet
# name: each_key { |key| .. }
# --
each_key { |${1:key}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eal
# contributor: Translated from TextMate Snippet
# name: each_line { |line| .. }
# --
each_line$1 { |${2:line}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eap
# contributor: Translated from TextMate Snippet
# name: each_pair { |name, val| .. }
# --
each_pair { |${1:name}, ${2:val}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eas-
# contributor: Translated from TextMate Snippet
# name: each_slice(..) { |group| .. }
# --
each_slice(${1:2}) { |${2:group}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eav
# contributor: Translated from TextMate Snippet
# name: each_value { |val| .. }
# --
each_value { |${1:val}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: eawi
# contributor: Translated from TextMate Snippet
# name: each_with_index { |e, i| .. }
# --
each_with_index { |${1:e}, ${2:i}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: inj
# contributor: Translated from TextMate Snippet
# name: inject(init) { |mem, var| .. }
# --
inject${1/.+/(/}${1:init}${1/.+/)/} { |${2:mem}, ${3:var}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: map
# contributor: Translated from TextMate Snippet
# name: map { |e| .. }
# --
map { |${1:e}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: mapwi-
# contributor: Translated from TextMate Snippet
# name: map_with_index { |e, i| .. }
# --
enum_with_index.map { |${1:e}, ${2:i}| $0 }

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: reve
# contributor: Translated from TextMate Snippet
# name: reverse_each { |e| .. }
# --
reverse_each { |${1:e}| $0 }