Sha256: 4f298e787d49c1ef8e8cc40bf08b9f391de187a6af6d7ea51bc44b1770e699b9

Contents?: true

Size: 938 Bytes

Versions: 34

Compression:

Stored size: 938 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
require 'rake'
require "bundler/gem_tasks"

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end


task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "shopify_api #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

34 entries across 34 versions & 3 rubygems

Version Path
shopify_cli-1.0.5 Rakefile
shopify_cli-1.0.4 Rakefile
shopify_api_console-2.0.0 Rakefile
shopify_cli-1.0.3 Rakefile
shopify_cli-1.0.2 Rakefile
shopify_api-4.2.2 Rakefile
shopify_api-4.2.1 Rakefile
shopify_api-4.2.0 Rakefile
shopify_api-4.1.1 Rakefile
shopify_api-4.1.0 Rakefile
shopify_api-4.0.7 Rakefile
shopify_api-4.0.6 Rakefile
shopify_api-4.0.5 Rakefile
shopify_cli-1.0.1 Rakefile
shopify_api-4.0.4 Rakefile
shopify_api-4.0.3 Rakefile
shopify_api-4.0.2 Rakefile
shopify_api-4.0.1 Rakefile
shopify_api-4.0.0 Rakefile
shopify_cli-1.0.0 Rakefile