Module: Vident::Stimulus::Naming
- Defined in:
- lib/vident/stimulus/naming.rb
Class Method Summary collapse
Class Method Details
.js_name(name) ⇒ Object
14 15 16 |
# File 'lib/vident/stimulus/naming.rb', line 14 def js_name(name) name.to_s.camelize(:lower) end |
.stimulize_path(path) ⇒ Object
10 11 12 |
# File 'lib/vident/stimulus/naming.rb', line 10 def stimulize_path(path) path.to_s.split("/").map(&:dasherize).join("--") end |