Closed ianneub closed 9 years ago
https://github.com/bellycard/napa/blob/master/napa.gemspec#L27
From a fresh install of napa, running bundle install results in Grape 0.11.0 being used.
bundle install
Is that really the version that Napa intended?
I think the line above should read:
gem.add_dependency 'grape', '~> 0.9.0'
As well as the other dependencies.
If you agree, I can create a quick PR.
@ianneub great catch! Totally on board.
Overall, we need to dig deeper into the gems we use (by default scaffolds and Napa itself). This is a solid step towards that.
https://github.com/bellycard/napa/blob/master/napa.gemspec#L27
From a fresh install of napa, running
bundle install
results in Grape 0.11.0 being used.Is that really the version that Napa intended?
I think the line above should read:
As well as the other dependencies.
If you agree, I can create a quick PR.