1

Gem tilt is used with sprockets for Rails assets precompile. We are having hard time to find the version running on our Rails 4 app as tilt --version returns version unknown:

$ tilt --version
tilt: version unknown

tilt --help give no info about how to find version. Is there way to find tilt version?

user938363
  • 9,990
  • 38
  • 137
  • 303

1 Answers1

2

Use bundle show to get the versions of your installed gems. For a particular gem, like tilt, you can use bundle show tilt.

steve klein
  • 2,566
  • 1
  • 14
  • 27