Skip to content

Commit 172bc71

Browse files
committed
Fix gemspec
It wasn't possible to bundle install the dependencies, as this command tries to load the gemspec, the gemspec required the code, and the code was trying to load the dependencies that were not yet available. This fix is to just load the file that defines the version number from the gemspec, not the whole code.
1 parent acf8871 commit 172bc71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

board-linuxfr.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# encoding: utf-8
22
lib = File.expand_path('../lib', __FILE__)
33
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require './lib/board-linuxfr'
4+
require './lib/board-linuxfr/version'
55

66
Gem::Specification.new do |s|
77
s.name = "board-linuxfr"

0 commit comments

Comments
 (0)