Sha256: 35e0d5db00e0a6c6d1709f4895e94178898327ce47e51c5525cefbd477d9bc7b
Contents?: true
Size: 479 Bytes
Versions: 3
Compression:
Stored size: 479 Bytes
Contents
require "bundler" require "rake" require "bundler/gem_tasks" require "rspec/core/rake_task" 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.version_path = 'VERSION' c.changelog_path = 'UPGRADE.md' c.tag_prefix = 'v' c.changelog_matching = ['^QUGC','^WIKI'] end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
quandl_operation-0.4.1 | Rakefile |
quandl_operation-0.4.0 | Rakefile |
quandl_logger-0.3.1 | Rakefile |