Sha256: 71e6d52790b1193549404bd53918aec5fe78be2b6c2767e03c44bf847bdacb86

Contents?: true

Size: 481 Bytes

Versions: 5

Compression:

Stored size: 481 Bytes

Contents

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
task :test => :spec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
postrunner-0.0.9 Rakefile
postrunner-0.0.8 Rakefile
postrunner-0.0.7 Rakefile
postrunner-0.0.6 Rakefile
postrunner-0.0.5 Rakefile