haf / semver

gem: "semver2" fork. simple command line util & ruby module for managing versions according to http://semver.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Semver inside gemspec.

utilityboy opened this issue · comments

Hi,

A colleague posted this on the parent repo. Thought I'd cross-post here:

flazz#11

Thanks for any insight.

It's a different gem by now though...

You can do

gem.version = `semver`

perhaps?

Thanks @haf. We're using your version of the gem. My colleague just posted to the incorrect repo.

I'll give that a shot.

@haf it seems everything requires semver2 to be pre-installed and not listed as a dependency in the gemspec. There doesn't appear to be a way to tell bundler to "install this first before doing anything else".

Any other ideas?

VERSION = begin ; SemVer.find.to_s ; rescue => e ; "0.0.0" ; end

Perhaps?