version.rb 277 B

12345678910
  1. module Select2
  2. module Bootstrap
  3. # This is updated via the `grunt bump` command, which has a pretty
  4. # unflexible matching syntax.
  5. VERSION_STRING = "'version': '1.4.6'"
  6. # Then, just the version.
  7. VERSION = VERSION_STRING.match(/\d+\.\d+\.\d+/)[0]
  8. end
  9. end