You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

  1. module Live
  2. # My live constants
  3. module Constants
  4. extend Definable
  5. STIMULUS_DEBUG = boolean false
  6. ACTION_VIEW = boolean false
  7. ACTIVE_RECORD = boolean false
  8. MY_INTEGER = integer 8
  9. MY_STRING = string 'tutu'
  10. end
  11. end