Sha256: 310b6cdf1de013210aea73cd356492c736c09664fa644bfc76ad40ac8ac23e71

Contents?: true

Size: 415 Bytes

Versions: 7

Compression:

Stored size: 415 Bytes

Contents

require 'bundler/gem_tasks'

begin
  require 'rspec/core/rake_task'

  RSpec::Core::RakeTask.new(:spec) do |task|
    task.rspec_opts = ["--color", "--format", "doc"]
  end
  task :default => :spec
  task :test    => :spec
rescue LoadError
  # no rspec available
end

begin
  require 'yard'

  YARD::Rake::YardocTask.new do |task|
    task.files   = ["lib/**/*.rb"]
  end
rescue LoadError
  # no yard available
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
oanda_api-0.9.6 Rakefile
oanda_api-0.9.5 Rakefile
oanda_api-0.9.4 Rakefile
oanda_api-0.9.3 Rakefile
oanda_api-0.9.2 Rakefile
oanda_api-0.9.0 Rakefile
oanda_api-0.8.3 Rakefile