Skip to content

Commit

Permalink
Fix expanding LOAD_PATH in gemspec
Browse files Browse the repository at this point in the history
Otherwise Grape::VERSION might refer to another, e.g.,
 system wide installed gem version
  • Loading branch information
2maz committed May 6, 2018
1 parent c951628 commit 3ee2956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#### Fixes

* [#1759](https://github.com/ruby-grape/grape/pull/1759): Update appraisal for rails_edge - [@zvkemp](https://github.com/zvkemp).
* [#1758](https://github.com/ruby-grape/grape/pull/1758): Fix expanding load_path in gemspec - [@2maz](https://github.com/2maz).
* Your contribution here.

### 1.0.3 (4/23/2018)
Expand Down
2 changes: 1 addition & 1 deletion grape.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'grape/version'

Gem::Specification.new do |s|
Expand Down

0 comments on commit 3ee2956

Please sign in to comment.