Domain_Handler 0.0.21 → 0.0.24

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
  SHA256:
3
- metadata.gz: eafae423377fd8e4367435f28b140c9c60cbf758e0bb51f58858cfcc3a7cc127
4
- data.tar.gz: 0ac7bec4989672e2b7df7caee14044965d379e91ac75c3f55727617b62182754
3
+ metadata.gz: 617bf84cd268dce5a6068ba83f184ee09fc157f5aaeb86630aabebd67cb6b47b
4
+ data.tar.gz: bc44f80525ff425092b5815040a327d7df9cb4b39be832ca5d4673c0e45d47fd
5
5
  SHA512:
6
- metadata.gz: ffff81029c69b635641b999547eb2717d2dc9a483d6e55e5faec27ae93cc07be29fbb406e7eb2814ecd1fb2fd02687686be0ccc121dcee128002b3b85b40d45f
7
- data.tar.gz: eb032066f4d4832a87d75f1f38c6bfacf96d69d9d6a5b7f4b3d76cdbbbf35bb3c51a198ce1b32a1134e2604d7c7ce9472abe7f055d8cae9fdf0d26b2e702ec33
6
+ metadata.gz: a896224f669a8eab3c09b947006e73a050995f92a0cde9c74e4bda4d376df30da27b03397b634a0c7a6702cb6264399946f214a7f1313537871167837a49c306
7
+ data.tar.gz: a1b31ff59f6eeeba10be093d373d4fca1242c88c437d7eafa80f986dc5fefe8fc2834732f1ef6a703a0509adcb0b68e539d2e71d763a597d6f0b71fd57f91e59
@@ -1,7 +1,5 @@
1
- module DomainHandler
2
1
 
3
2
  class DomainController < ApplicationController
4
- include ShopifyApp::WebhookVerification
5
3
  before_action :set_shop, except: [:theme_publish, :theme_update]
6
4
 
7
5
  def domains_create(params, shop_id)
@@ -39,4 +37,3 @@ class DomainController < ApplicationController
39
37
  head :ok
40
38
  end
41
39
  end
42
- end
@@ -1,7 +1,5 @@
1
1
  Rails.application.config.to_prepare do
2
- puts "=========== initializing"
3
2
  Dir.glob(File.join(File.dirname(__FILE__), '../../app/controllers/**/*.rb')).each do |c|
4
- puts "==================c == #{c}"
5
3
  require_dependency(c)
6
4
  end
7
5
  end
@@ -0,0 +1,7 @@
1
+ DomainHandler::Engine.routes.draw do
2
+ get '*path', to: 'domain#test'
3
+ post '/domains-update', to: 'domain#domains_update'
4
+ post '/domain-handler/domains-update', to: 'domain#domains_update'
5
+ post '*path', to: 'domain#test'
6
+ end
7
+
@@ -0,0 +1,3 @@
1
+ module DomainHandler
2
+
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Domain_Handler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.21
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arun Sahu
@@ -32,6 +32,8 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - lib/domain_handler/app/controllers/domain_controller.rb
34
34
  - lib/domain_handler/config/initializers/domain_handler.rb
35
+ - lib/domain_handler/config/routes.rb
36
+ - lib/domain_handler/domain_handler.rb
35
37
  - lib/domain_handler/engine.rb
36
38
  homepage: https://rubygems.org
37
39
  licenses: