Skip to content

Commit

Permalink
Fix gem loading from executable
Browse files Browse the repository at this point in the history
  • Loading branch information
mjacobus committed Jun 20, 2019
1 parent bf7bce2 commit 19211b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions exe/run_test
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env ruby
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'bundler/setup'
require 'koine/test_runner'
Expand Down
1 change: 0 additions & 1 deletion koine-test_runner.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 1.14'
spec.add_development_dependency 'coveralls', '~> 0.8.21'
spec.add_development_dependency 'object_comparator', '~> 0.1.3'
spec.add_development_dependency 'rake', '~> 10.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/koine/test_runner/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class TestRunner
VERSION = '0.2.0'.freeze
VERSION = '0.2.1'.freeze
end

0 comments on commit 19211b4

Please sign in to comment.