Sha256: b9748f4ede962924daa565d7d40821a60a6285bdc7ddbbf4492186bc1922f9c3
Contents?: true
Size: 591 Bytes
Versions: 5
Compression:
Stored size: 591 Bytes
Contents
require "bundler" require "rake" require "bundler/gem_tasks" require "rspec/core/rake_task" $:.unshift File.join(File.dirname(__FILE__), *%w[.. lib]) require 'pry' require_relative 'spec/config/quandl' task :default => :spec desc "Run all specs" RSpec::Core::RakeTask.new(:spec) do |task| task.pattern = "spec/**/*_spec.rb" end require 'quandl/utility/rake_tasks' Quandl::Utility::Tasks.configure do |c| c.name = 'quandl' c.tag_prefix = 'v' c.version_path = 'VERSION' c.changelog_path = 'UPGRADE.md' c.changelog_matching = ['^QUGC','^WIKI'] end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
quandl_client-2.11.0 | Rakefile |
quandl_client-2.10.2 | Rakefile |
quandl_client-2.10.1 | Rakefile |
quandl_client-2.10.0 | Rakefile |
quandl_client-2.9.0 | Rakefile |