Skip to content

Commit 04a28bf

Browse files
viktorsmarilpil
authored andcommitted
Replace the hash rocket syntax from ruby with a colon
1 parent b072110 commit 04a28bf

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

UltiSnips/eruby.snippets

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ snippet fi "<%= Fixtures.identify(:symbol) %>"
4444
endsnippet
4545

4646
snippet ft "form_tag" w
47-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_INLINE', snip)`form_tag(${1::action => '${2:update}'}${3:, ${4:${5:class} => '${6:form}'\}}}) do`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
47+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_INLINE', snip)`form_tag(${1:action: '${2:update}'}${3:, ${4:${5:class}: '${6:form}'\}}}) do`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
4848
$0
4949
`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_BLOCK', snip)`
5050
endsnippet
5151

5252
snippet ffs "form_for submit 2" w
53-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`${1:f}.submit '${2:Submit}'${3:, :disable_with => '${4:$2ing...}'}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
53+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`${1:f}.submit '${2:Submit}'${3:, disable_with: '${4:$2ing...}'}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
5454
endsnippet
5555

5656
snippet f. "f_fields_for (nff)" w
@@ -84,7 +84,7 @@ snippet f. "f.radio_button" w
8484
endsnippet
8585

8686
snippet f. "f.submit" w
87-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`f.submit "${1:Submit}"${2:, :disable_with => '${3:$1ing...}'}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
87+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`f.submit "${1:Submit}"${2:, disable_with: '${3:$1ing...}'}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
8888
endsnippet
8989

9090
snippet f. "f.text_area" w
@@ -110,43 +110,43 @@ snippet ff "form_for" w
110110
endsnippet
111111

112112
snippet ist "image_submit_tag" w
113-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`image_submit_tag("${1:agree.png}"${2:${3:, :id => "${4:${1/^(\w+)(\.\w*)?$/$1/}}"}${5:, :name => "${6:${1/^(\w+)(\.\w*)?$/$1/}}"}${7:, :class => "${8:${1/^(\w+)(\.\w*)?$/$1/}-button}"}${9:, :disabled => ${10:false}}})`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
113+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`image_submit_tag("${1:agree.png}"${2:${3:, id: "${4:${1/^(\w+)(\.\w*)?$/$1/}}"}${5:, name: "${6:${1/^(\w+)(\.\w*)?$/$1/}}"}${7:, class: "${8:${1/^(\w+)(\.\w*)?$/$1/}-button}"}${9:, disabled: ${10:false}}})`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
114114
endsnippet
115115

116116
snippet it "image_tag" w
117-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`image_tag "$1${2:.png}"${3:${4:, :title => "${5:title}"}${6:, :class => "${7:class}"}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
117+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`image_tag "$1${2:.png}"${3:${4:, title: "${5:title}"}${6:, class: "${7:class}"}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
118118
endsnippet
119119

120120
snippet layout "layout"
121-
layout "${1:template_name}"${2:${3:, :only => ${4:[:${5:action}, :${6:action}]}}${7:, :except => ${8:[:${9:action}, :${10:action}]}}}
121+
layout "${1:template_name}"${2:${3:, only: ${4:[:${5:action}, :${6:action}]}}${7:, except: ${8:[:${9:action}, :${10:action}]}}}
122122
endsnippet
123123

124124
snippet jit "javascript_include_tag" w
125-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`javascript_include_tag ${1::all}${2:, :cache => ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
125+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`javascript_include_tag ${1::all}${2:, cache: ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
126126
endsnippet
127127

128128
snippet lt "link_to (name, dest)" w
129129
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", ${2:dest}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
130130
endsnippet
131131

132132
snippet lia "link_to (action)" w
133-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", :action => "${2:index}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
133+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", action: "${2:index}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
134134
endsnippet
135135

136136
snippet liai "link_to (action, id)" w
137-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", :action => "${2:edit}", :id => ${3:@item}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
137+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", action: "${2:edit}", id: ${3:@item}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
138138
endsnippet
139139

140140
snippet lic "link_to (controller)" w
141-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", :controller => "${2:items}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
141+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", controller: "${2:items}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
142142
endsnippet
143143

144144
snippet lica "link_to (controller, action)" w
145-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", :controller => "${2:items}", :action => "${3:index}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
145+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", controller: "${2:items}", action: "${3:index}"`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
146146
endsnippet
147147

148148
snippet licai "link_to (controller, action, id)" w
149-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", :controller => "${2:items}", :action => "${3:edit}", :id => ${4:@item}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
149+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`link_to "${1:link text...}", controller: "${2:items}", action: "${3:edit}", id: ${4:@item}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
150150
endsnippet
151151

152152
snippet linpp "link_to (nested path plural)" w
@@ -174,15 +174,15 @@ page.hide ${1:"${2:id(s)}"}
174174
endsnippet
175175

176176
snippet ins "page.insert_html (position, id, partial)"
177-
page.insert_html :${1:top}, ${2:"${3:id}"}, :${4:partial => "${5:template}"}
177+
page.insert_html :${1:top}, ${2:"${3:id}"}, ${4:partial: "${5:template}"}
178178
endsnippet
179179

180180
snippet rep "page.replace (id, partial)"
181-
page.replace ${1:"${2:id}"}, :${3:partial => "${4:template}"}
181+
page.replace ${1:"${2:id}"}, ${3:partial: "${4:template}"}
182182
endsnippet
183183

184184
snippet reph "page.replace_html (id, partial)"
185-
page.replace_html ${1:"${2:id}"}, :${3:partial => "${4:template}"}
185+
page.replace_html ${1:"${2:id}"}, ${3:partial: "${4:template}"}
186186
endsnippet
187187

188188
snippet show "page.show (*ids)"
@@ -198,31 +198,31 @@ page.visual_effect :${1:toggle_slide}, ${2:"${3:DOM ID}"}
198198
endsnippet
199199

200200
snippet rp "render (partial) (rp)"
201-
render :partial => "${1:item}"
201+
render partial: "${1:item}"
202202
endsnippet
203203

204204
snippet rpc "render (partial,collection) (rpc)"
205-
render :partial => "${1:item}", :collection => ${2:@$1s}
205+
render partial: "${1:item}", collection: ${2:@$1s}
206206
endsnippet
207207

208208
snippet rpl "render (partial,locals) (rpl)"
209-
render :partial => "${1:item}", :locals => { :${2:$1} => ${3:@$1}$0 }
209+
render partial: "${1:item}", locals: { ${2:$1}: ${3:@$1}$0 }
210210
endsnippet
211211

212212
snippet rpo "render (partial,object) (rpo)"
213-
render :partial => "${1:item}", :object => ${2:@$1}
213+
render partial: "${1:item}", object: ${2:@$1}
214214
endsnippet
215215

216216
snippet rps "render (partial,status) (rps)"
217-
render :partial => "${1:item}", :status => ${2:500}
217+
render partial: "${1:item}", status: ${2:500}
218218
endsnippet
219219

220220
snippet slt "stylesheet_link_tag" w
221-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`stylesheet_link_tag ${1::all}${2:, :cache => ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
221+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`stylesheet_link_tag ${1::all}${2:, cache: ${3:true}}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
222222
endsnippet
223223

224224
snippet st "submit_tag" w
225-
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`submit_tag "${1:Save changes}"${2:, :id => "${3:submit}"}${4:, :name => "${5:$3}"}${6:, :class => "${7:form_$3}"}${8:, :disabled => ${9:false}}${10:, :disable_with => "${11:Please wait...}"}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
225+
`!p textmate_var('TM_RAILS_TEMPLATE_START_RUBY_EXPR', snip)`submit_tag "${1:Save changes}"${2:, id: "${3:submit}"}${4:, name: "${5:$3}"}${6:, class: "${7:form_$3}"}${8:, disabled: ${9:false}}${10:, disable_with: "${11:Please wait...}"}`!p textmate_var('TM_RAILS_TEMPLATE_END_RUBY_EXPR', snip)`
226226
endsnippet
227227

228228
snippet else "else (ERB)"

0 commit comments

Comments
 (0)