Rakefile in quandl_format-0.2.8 vs Rakefile in quandl_format-0.3.0
- old
+ new
@@ -1,11 +1,25 @@
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.version_path = 'VERSION'
+ c.changelog_path = 'UPGRADE.md'
+ c.changelog_matching = ['^QUGC','^WIKI']
end