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?
Use
bundle show
to get the versions of your installed gems. For a particular gem, like tilt, you can usebundle show tilt
.