Sha256: 5aeb37de4342b0a97b0bf7c870c963e223ffbffd9760f4608c634175e0cf5c3a

Contents?: true

Size: 569 Bytes

Versions: 1

Compression:

Stored size: 569 Bytes

Contents

require "bundler"
require "rake"
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require 'quandl/format'
require 'pry'

task :default => :spec

desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |task|
  task.pattern = "spec/**/*_spec.rb"
end

task :console do |t,args|
  binding.pry
end

require 'quandl/utility/rake_tasks'
Quandl::Utility::Tasks.configure do |c|
  c.name              = 'quandl_format'
  c.tag_prefix        = 'v'
  c.version_path      = 'VERSION'
  c.changelog_path    = 'UPGRADE.md'
  c.changelog_matching  = ['^QUGC','^WIKI']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
quandl_format-0.4.0 Rakefile