shopify_app 7.1.1 → 7.2.0

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: 657035a2108236d9d62af84f1f751d2443798dd8
4
- data.tar.gz: bf79895ae70e8b85af7a4887856aad56feaf8c8d
3
+ metadata.gz: 47504ce67fc91bae133ac9451f21eb46b2307f6b
4
+ data.tar.gz: 1c9430ae87f14834389188ea630a43574e1d31c4
5
5
  SHA512:
6
- metadata.gz: 3767d662a1b4c5f1ec39d33a1e4f73233b72d3968f775f1427e08c0eeebc1f6fb1459701b3ace70f447be7892c4e12f7a26af259d02237aea3a35b45834ce07d
7
- data.tar.gz: d963eda875cee0f064c0a75f060f5dffb1b4979c8b618774dea17b08abf93f28b87e9056ad0e36eb14d9df82769ba3542a17f1c26a7ca1444cc6426f1c49e581
6
+ metadata.gz: dce462b93f79c591d00801bf8eaedec76be7fcee1aa65184d6d2cad28480c438c92b2b4e1239382225f7782eb62bf735f941ca1c6bed166b0a016a4b7ca9d055
7
+ data.tar.gz: f5e656f7f0c720daa423d20dea3bddc47439e556713d6bfa8cca030ef12617ac64bbdeedb4541dd85dc311b229231662635f1ea6994b18ed761806d18a24207a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 7.2.0
2
+ -----
3
+ * Disable application layout rendering for the `/login` page
4
+
1
5
  7.1.1
2
6
  -----
3
7
  * Lower required Ruby version to 2.2.2 to better match up with Rails 5.0
@@ -1,5 +1,5 @@
1
1
  class HomeController < ShopifyApp::AuthenticatedController
2
2
  def index
3
- @products = ShopifyAPI::Product.find(:all, :params => {:limit => 10})
3
+ @products = ShopifyAPI::Product.find(:all, params: { limit: 10 })
4
4
  end
5
5
  end
@@ -4,6 +4,7 @@ module ShopifyApp
4
4
 
5
5
  included do
6
6
  include ShopifyApp::LoginProtection
7
+ layout false, only: :new
7
8
  end
8
9
 
9
10
  def new
@@ -1,3 +1,3 @@
1
1
  module ShopifyApp
2
- VERSION = '7.1.1'
2
+ VERSION = '7.2.0'
3
3
  end
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.1.1
4
+ version: 7.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-16 00:00:00.000000000 Z
11
+ date: 2016-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails