Sha256: 43efc231fc2fe46aa026caf7c4953d6ef4812780be8347b226c829a04f509153

Contents?: true

Size: 913 Bytes

Versions: 15

Compression:

Stored size: 913 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
require 'rake'

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 'rake/rdoctask'
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

15 entries across 15 versions & 2 rubygems

Version Path
shopify_api-3.0.3 Rakefile
shopify_api-3.0.2 Rakefile
shopify_api-3.0.1 Rakefile
shopify_api-3.0.0 Rakefile
shopify_api-2.3.0 Rakefile
shopify_api-2.2.0 Rakefile
shopify_api-2.1.0 Rakefile
shopify_api-2.0.0 Rakefile
th_shopify_api-1.2.6.pre Rakefile
shopify_api-1.2.5 Rakefile
shopify_api-1.2.2 Rakefile
shopify_api-1.2.1 Rakefile
shopify_api-1.2.0 Rakefile
shopify_api-1.1.3 Rakefile
shopify_api-1.1.2 Rakefile