Sha256: b8a09d118d94e772b2993b83ddbb2174a51381163fbee46212c091cd0b54e7c2

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "shopify_app/version"

Gem::Specification.new do |s|
  s.name        = "shopify_app"
  s.version     = ShopifyApp::VERSION
  s.platform    = Gem::Platform::RUBY
  s.author      = "Shopify"
  s.email       = ["edward@shopify.com", "willem@shopify.com", "david.underwood@shopify.com"]
  s.homepage    = "http://www.shopify.com/developers"
  s.summary     = %q{This gem is used to get quickly started with the Shopify API}
  s.description = %q{Creates a basic sessions controller for authenticating with your Shop and also a product controller which lets your edit your products easily.}

  s.rubyforge_project = "shopify-api"

  s.add_runtime_dependency('rails', '>= 3.1', '< 5.0')
  s.add_runtime_dependency('shopify_api', '~> 3.2.0')
  s.add_runtime_dependency('omniauth-shopify-oauth2', '~> 1.1.4')
  s.add_runtime_dependency('less-rails-bootstrap', '~> 2.0')

  s.add_development_dependency('rake')
  s.add_development_dependency('minitest')
  s.add_development_dependency('mocha')

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
shopify_app-5.0.2 shopify_app.gemspec
shopify_app-5.0.1 shopify_app.gemspec
shopify_app-5.0.0 shopify_app.gemspec
shopify_app-4.4.6 shopify_app.gemspec
shopify_app-4.4.5 shopify_app.gemspec
shopify_app-4.4.4 shopify_app.gemspec