Skip to content

Commit 9a4b939

Browse files
authored
Merge pull request #1758 from 2maz/master
Fix expanding LOAD_PATH in gemspec
2 parents c951628 + 3ee2956 commit 9a4b939

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#### Fixes
88

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

1213
### 1.0.3 (4/23/2018)

grape.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
1+
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
22
require 'grape/version'
33

44
Gem::Specification.new do |s|

0 commit comments

Comments
 (0)