Sha256: f5605195164d0c1f159771a0bfb0d5f900e02d4dea6ff083a0b68e29fc2b165a

Contents?: true

Size: 1020 Bytes

Versions: 9

Compression:

Stored size: 1020 Bytes

Contents

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.warning = false
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

task :docker do
  cmd = "docker-compose up -d && docker exec -i -t shopify_api bash"
  exec(cmd, err: File::NULL)
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
shopify_api-9.1.0 Rakefile
shopify_api-9.0.4 Rakefile
shopify_api-9.0.3 Rakefile
shopify_api-9.0.2 Rakefile
shopify_api-9.0.1 Rakefile
shopify_api-9.0.0 Rakefile
shopify_api-8.1.0 Rakefile
shopify_api-8.0.0 Rakefile
shopify_api-7.1.0 Rakefile