summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChris Schlaeger <chris@linux.com>2015-09-12 21:54:53 +0200
committerChris Schlaeger <chris@linux.com>2015-09-12 21:54:53 +0200
commitb5267c1a8fda1784e5a4892ee227f5e4fb57e804 (patch)
treebfd1dfea01003f6b8347119f026d31c813b10fda /Rakefile
parent21eddca873d2912e9f5f8ab88c681ce55cbe0c6f (diff)
downloadpostrunner-b5267c1a8fda1784e5a4892ee227f5e4fb57e804.zip
Adding plumbing to have PEROBS as additional dependency.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Rakefile b/Rakefile
index a2728e4..7053a89 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,16 +1,6 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
-# Add the include path for the fit4ruby library. We assume it is located in
-# the same directory as the postrunner directory.
-fit4ruby = File.realpath(File.join(File.dirname(__FILE__), '..',
- 'fit4ruby', 'lib'))
-if ENV['RUBYLIB']
- ENV['RUBYLIB'] += ":#{fit4ruby}"
-else
- ENV['RUBYLIB'] = fit4ruby
-end
-
RSpec::Core::RakeTask.new
task :default => :spec