Files
sure/config/initializers/version.rb
Juan José Mata 656f7e9495 Remove Intercom integration (#51)
* Remove Intercom integration

* New Sure name

* More documentation/Discord link updates

* Bump to 0.6.1

* More copy fixes/Sure branding

* Make LLMs happy
2025-08-01 19:47:48 +02:00

21 lines
291 B
Ruby

module Maybe
class << self
def version
Semver.new(semver)
end
def commit_sha
if Rails.env.production?
ENV["BUILD_COMMIT_SHA"]
else
`git rev-parse HEAD`.chomp
end
end
private
def semver
"0.6.1"
end
end
end