Sha256: 1221671598575bc36e5d20b4a56d4065fad95c859597520062faace66b00a2e8

Contents?: true

Size: 851 Bytes

Versions: 8

Compression:

Stored size: 851 Bytes

Contents

name: shopify-api

type: ruby

up:
  - ruby
  - bundler:
      gemfile: Gemfile

commands:
  console:
    desc: 'start a ruby shell with ShopifyAPI already loaded'
    aliases: ['c']
    run: bundle exec irb -Ilib -rshopify_api
  style:
    desc: 'run rubocop'
    run: bundle exec rubocop
  typecheck:
    desc: 'run Sorbet typechecking'
    aliases: ['tc']
    run: bundle exec srb tc
  test:
    run: bundle exec rake test
  sanity:
    desc: 'run all static checks against the codebase'
    run: bundle exec rubocop && bundle exec srb tc && bundle exec rake test
    subcommands:
      all:
        desc: 'run all checks regardless of the success states of previous checks'
        run: bundle exec rubocop; bundle exec srb tc; bundle exec rake test
  rbi:
    desc: 'generate .rbi files for specified gem to the project'
    run: bin/tapioca gem

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shopify_api-14.8.0 dev.yml
shopify_api-14.7.0 dev.yml
shopify_api-14.6.0 dev.yml
shopify_api-14.5.0 dev.yml
shopify_api-14.4.0 dev.yml
shopify_api-14.3.0 dev.yml
shopify_api-14.2.0 dev.yml
shopify_api-14.1.0 dev.yml