shopify_app 3.0.3 → 3.0.4
Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc
CHANGED
@@ -76,7 +76,7 @@ Now visit http://localhost:3000 and install your application in a Shopify store.
|
|
76
76
|
After your application has been given whatever API permissions you requested by the
|
77
77
|
shop, you're ready to start experimenting with the Shopify API.
|
78
78
|
|
79
|
-
== Rails 3.0 Support
|
79
|
+
== Rails 3.0 (as in before 3.1) Support
|
80
80
|
|
81
81
|
Rails 3.0 (as in before the big changes in 3.1) is supported on a branch of our github repo: https://github.com/Shopify/shopify_app/tree/rails_3.0_support
|
82
82
|
|
@@ -2,6 +2,10 @@ Rails.application.config.middleware.use OmniAuth::Builder do
|
|
2
2
|
provider :shopify,
|
3
3
|
ShopifyApp.configuration.api_key,
|
4
4
|
ShopifyApp.configuration.secret,
|
5
|
+
|
6
|
+
# Example permission scopes - see http://api.shopify.com/authentication.html for full listing
|
7
|
+
# :scope => 'read_orders, write_products',
|
8
|
+
|
5
9
|
:setup => lambda {|env|
|
6
10
|
params = Rack::Utils.parse_query(env['QUERY_STRING'])
|
7
11
|
site_url = "https://#{params['shop']}"
|
data/lib/shopify_app/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopify_app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-07-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70223159670160 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70223159670160
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: shopify_api
|
27
|
-
requirement: &
|
27
|
+
requirement: &70223159669660 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 3.0.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70223159669660
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: omniauth-shopify-oauth2
|
38
|
-
requirement: &
|
38
|
+
requirement: &70223159669160 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - =
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 1.0.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70223159669160
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rake
|
49
|
-
requirement: &
|
49
|
+
requirement: &70223159668780 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
version: '0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70223159668780
|
58
58
|
description: Creates a basic login controller for authenticating with your Shop and
|
59
59
|
also a product controller which lets your edit your products easily.
|
60
60
|
email:
|