Sha256: 772015293044ab8f5529d73c05323fe7955a184877627a32feb100bed6351ae0

Contents?: true

Size: 1.62 KB

Versions: 9

Compression:

Stored size: 1.62 KB

Contents

require_relative 'lib/shopify-cli/version'

Gem::Specification.new do |spec|
  spec.name = "shopify-cli"
  spec.version = ShopifyCli::VERSION
  spec.authors = ["Shopify"]
  spec.email = ["dev-tools-education@shopify.com"]
  spec.license = 'MIT'

  spec.summary = "Shopify CLI helps you build Shopify apps faster."
  spec.description = <<~HERE
    Shopify CLI helps you build Shopify apps faster. It quickly scaffolds Node.js
    and Ruby on Rails embedded apps. It also automates many common tasks in the
    development process and lets you quickly add popular features, such as billing
    and webhooks.
  HERE
  spec.homepage = "https://shopify.github.io/shopify-app-cli/"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.5")

  spec.metadata["allowed_push_host"] = "https://rubygems.org"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/Shopify/shopify-app-cli"
  spec.metadata["changelog_uri"] = "https://github.com/Shopify/shopify-app-cli/blob/master/CHANGELOG.md"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
    %x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test|spec|features|packaging)/}) }
  end
  spec.bindir = "bin"
  spec.require_paths = ["lib", "vendor"]
  spec.extensions = ["ext/shopify-cli/extconf.rb"]

  spec.add_development_dependency('bundler', '~> 1.17')
  spec.add_development_dependency('rake', '~> 12.3', '>= 12.3.3')
  spec.add_development_dependency('minitest', '~> 5.0')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
shopify-cli-1.0.5 shopify-cli.gemspec
shopify-cli-1.0.4 shopify-cli.gemspec
shopify-cli-1.0.3 shopify-cli.gemspec
shopify-cli-1.0.2 shopify-cli.gemspec
shopify-cli-1.0.1 shopify-cli.gemspec
shopify-cli-1.0.0 shopify-cli.gemspec
shopify-cli-0.9.3 shopify-cli.gemspec
shopify-cli-0.9.2 shopify-cli.gemspec
shopify-cli-0.9.1 shopify-cli.gemspec