shopify_app 7.2.6 → 7.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9335f7bf026825facf051b989eea2e4b3e30e9e
4
- data.tar.gz: c7ef43c749908fe81968378060687a6dd6621019
3
+ metadata.gz: f713d95ff6dc0893127eb63073b613788d7754d3
4
+ data.tar.gz: 3558a5c9c95aa561c32ee4b67f04f05832a3a911
5
5
  SHA512:
6
- metadata.gz: 6f23af64be558128afc5e8ac8a6fd2db88d6048e684a1305ca03be2cba181756f2ad58a5df462f695bc8d85c530721b3852c65d3697f638e791a78b3b9dc8b07
7
- data.tar.gz: d092113b766bf4fc2ae0e661ea50a1467284c7628a8fc5d1c4259e6c70ea48641de695d5051841cccac880d2284bd2be131f75114415f66adfe13b8d847e61af
6
+ metadata.gz: 02b5223eebfbcd825b025266a6a64847f8fe6246d3b27d3698ca7e8ffdc2e60df6432dcee05930ec938a0424daf5c590ef37ea69a734a18096a6a4d48e6b6ebd
7
+ data.tar.gz: b743970932f0672b161b152606cbe35a9660d34124fdcd51e14583a79cb01c79479a07569d190b0927c67aa9214311abf216e64e9f9a2675494edb9a7510eaa0
@@ -6,12 +6,5 @@ rvm:
6
6
  - 2.3.1
7
7
 
8
8
  gemfile:
9
- - Gemfile
9
+ - Gemfile.rails40
10
10
  - Gemfile.rails50
11
-
12
- matrix:
13
- include:
14
- - rvm: 2.2.2
15
- gemfile: Gemfile.ruby22
16
- - rvm: 2.2.2
17
- gemfile: Gemfile.ruby22.rails50
@@ -1,3 +1,9 @@
1
+ 7.2.7
2
+ -----
3
+ * Require `shopify_app` `>= 4.3.2`. This version relaxes the ruby version requirement from `>= 2.3.0` to `>= 2.0`
4
+ * Rails 5: ActionDispatch::Reloader#to_prepare is deprecated
5
+ [[#404]](https://github.com/Shopify/shopify_app/pull/404)
6
+
1
7
  7.2.6
2
8
  -----
3
9
  * Update LoginProtection#fullpage_redirect_to to get shopify domain from session
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ gem 'rails', '>=4.2.6', '<5.0.0'
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
  gemspec
3
3
 
4
- gem 'rails', '~> 5.0'
4
+ gem 'rails', '5.0.2'
5
5
  gem 'activeresource', github: 'rails/activeresource'
@@ -1,7 +1,9 @@
1
1
  if Rails.configuration.cache_classes
2
2
  ShopifyApp::SessionRepository.storage = Shop
3
3
  else
4
- ActionDispatch::Reloader.to_prepare do
4
+ reloader = defined?(ActiveSupport::Reloader) ? ActiveSupport::Reloader : ActionDispatch::Reloader
5
+
6
+ reloader.to_prepare do
5
7
  ShopifyApp::SessionRepository.storage = Shop
6
8
  end
7
9
  end
@@ -1,3 +1,3 @@
1
1
  module ShopifyApp
2
- VERSION = '7.2.6'
2
+ VERSION = '7.2.7'
3
3
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.required_ruby_version = ">= 2.2.2"
12
12
 
13
13
  s.add_runtime_dependency('rails', '>= 4.2.6')
14
- s.add_runtime_dependency('shopify_api', '>= 4.2.2')
14
+ s.add_runtime_dependency('shopify_api', '>= 4.3.2')
15
15
  s.add_runtime_dependency('omniauth-shopify-oauth2', '~> 1.1.11')
16
16
 
17
17
  s.add_development_dependency('rake')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.6
4
+ version: 7.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-11 00:00:00.000000000 Z
11
+ date: 2017-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 4.2.2
33
+ version: 4.3.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 4.2.2
40
+ version: 4.3.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: omniauth-shopify-oauth2
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -132,9 +132,8 @@ files:
132
132
  - ".travis.yml"
133
133
  - CHANGELOG.md
134
134
  - Gemfile
135
+ - Gemfile.rails40
135
136
  - Gemfile.rails50
136
- - Gemfile.ruby22
137
- - Gemfile.ruby22.rails50
138
137
  - ISSUE_TEMPLATE.md
139
138
  - LICENSE
140
139
  - QUICKSTART.md
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in shopify_app.gemspec
4
- gemspec
5
-
6
- gem 'shopify_api', '< 4.3'
@@ -1,9 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in shopify_app.gemspec
4
- gemspec
5
-
6
- gem 'rails', '~> 5.0'
7
- gem 'activeresource', github: 'rails/activeresource'
8
-
9
- gem 'shopify_api', '< 4.3'