workarea-yotpo 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.editorconfig +20 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
- data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/workflows/ci.yml +54 -0
- data/.gitignore +23 -0
- data/.rubocop.yml +3 -0
- data/.travis.yml +27 -0
- data/CHANGELOG.md +20 -0
- data/CODE_OF_CONDUCT.md +3 -0
- data/CONTRIBUTING.md +3 -0
- data/Gemfile +6 -0
- data/LICENSE.md +3 -0
- data/README.md +86 -0
- data/Rakefile +60 -0
- data/app/assets/images/yotpo/.keep +0 -0
- data/app/assets/javascripts/yotpo/.keep +0 -0
- data/app/assets/stylesheets/yotpo/.keep +0 -0
- data/app/controllers/.keep +0 -0
- data/app/helpers/.keep +0 -0
- data/app/mailers/.keep +0 -0
- data/app/models/.keep +0 -0
- data/app/services/yotpo/order.rb +81 -0
- data/app/views/workarea/storefront/_yotpo_tracking.html.haml +3 -0
- data/app/views/workarea/storefront/checkouts/_yotpo_order_tracking.html.haml +7 -0
- data/app/views/workarea/storefront/products/_yotpo_product_summary.html.haml +2 -0
- data/app/views/workarea/storefront/products/_yotpo_reviews.html.haml +2 -0
- data/app/views/workarea/storefront/products/_yotpo_summary.html.haml +2 -0
- data/app/workers/workarea/yotpo/save_order.rb +20 -0
- data/bin/rails +25 -0
- data/config/initializers/appends.rb +24 -0
- data/config/initializers/workarea.rb +11 -0
- data/config/routes.rb +2 -0
- data/lib/workarea/yotpo.rb +41 -0
- data/lib/workarea/yotpo/authentication.rb +45 -0
- data/lib/workarea/yotpo/bogus_gateway.rb +33 -0
- data/lib/workarea/yotpo/engine.rb +10 -0
- data/lib/workarea/yotpo/gateway.rb +64 -0
- data/lib/workarea/yotpo/response.rb +17 -0
- data/lib/workarea/yotpo/version.rb +5 -0
- data/script/static_analysis +29 -0
- data/script/travis +6 -0
- data/test/dummy/.ruby-version +1 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/config/manifest.js +3 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +14 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/jobs/application_job.rb +2 -0
- data/test/dummy/app/mailers/application_mailer.rb +4 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +28 -0
- data/test/dummy/bin/update +28 -0
- data/test/dummy/bin/yarn +11 -0
- data/test/dummy/config.ru +5 -0
- data/test/dummy/config/application.rb +34 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +52 -0
- data/test/dummy/config/environments/production.rb +83 -0
- data/test/dummy/config/environments/test.rb +45 -0
- data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/test/dummy/config/initializers/assets.rb +14 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/content_security_policy.rb +25 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/workarea.rb +5 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/test/dummy/config/locales/en.yml +33 -0
- data/test/dummy/config/puma.rb +34 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/config/spring.rb +6 -0
- data/test/dummy/db/seeds.rb +2 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/integration/workarea/yotpo/yotpo_integration_test.rb +44 -0
- data/test/services/yotpo/order_test.rb +61 -0
- data/test/teaspoon_env.rb +6 -0
- data/test/test_helper.rb +10 -0
- data/test/workers/workarea/yotpo/save_order_test.rb +13 -0
- data/workarea-yotpo.gemspec +20 -0
- metadata +163 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
20
|
+
# the default I18n backend:
|
21
|
+
#
|
22
|
+
# true, false, on, off, yes, no
|
23
|
+
#
|
24
|
+
# Instead, surround them with single quotes.
|
25
|
+
#
|
26
|
+
# en:
|
27
|
+
# 'true': 'foo'
|
28
|
+
#
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
30
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
31
|
+
|
32
|
+
en:
|
33
|
+
hello: "Hello world"
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
2
|
+
# The `threads` method setting takes two numbers: a minimum and maximum.
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
|
+
# and maximum; this matches the default thread size of Active Record.
|
6
|
+
#
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
8
|
+
threads threads_count, threads_count
|
9
|
+
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
11
|
+
#
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
13
|
+
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
15
|
+
#
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
17
|
+
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
22
|
+
# processes).
|
23
|
+
#
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
25
|
+
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
29
|
+
# process behavior so workers use less memory.
|
30
|
+
#
|
31
|
+
# preload_app!
|
32
|
+
|
33
|
+
# Allow puma to be restarted by `rails restart` command.
|
34
|
+
plugin :tmp_restart
|
File without changes
|
File without changes
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module Workarea
|
4
|
+
module Storefront
|
5
|
+
class YotpoIntegrationTest < Workarea::IntegrationTest
|
6
|
+
include Workarea::Storefront::IntegrationTest
|
7
|
+
|
8
|
+
def test_js_tracking
|
9
|
+
Workarea.with_config do |config|
|
10
|
+
key = "YOTPO-TRACKING-APP-KEY"
|
11
|
+
config.yotpo.app_key = key
|
12
|
+
|
13
|
+
get storefront.root_path
|
14
|
+
assert_includes(response.body, 'staticw2.yotpo.com/YOTPO-TRACKING-APP-KEY/widget.js')
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_product_review
|
19
|
+
Workarea.with_config do |config|
|
20
|
+
key = "YOTPO-TRACKING-APP-KEY"
|
21
|
+
config.yotpo.app_key = key
|
22
|
+
config.yotpo.show_review_summary_on_pdp = true
|
23
|
+
|
24
|
+
get storefront.product_path(create_product)
|
25
|
+
|
26
|
+
assert_includes(response.body, 'yotpo yotpo-main-widget')
|
27
|
+
assert_includes(response.body, 'yotpo bottomLine')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_order_confirmation_tracking
|
32
|
+
Workarea.with_config do |config|
|
33
|
+
key = "YOTPO-TRACKING-APP-KEY"
|
34
|
+
config.yotpo.app_key = key
|
35
|
+
|
36
|
+
complete_checkout
|
37
|
+
follow_redirect!
|
38
|
+
|
39
|
+
assert_includes(response.body, 'api.yotpo.com/conversion_tracking.gif')
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module Workarea
|
4
|
+
module Yotpo
|
5
|
+
class OrderTest < Workarea::TestCase
|
6
|
+
def test_to_h
|
7
|
+
_order_total_discount = create_order_total_discount(order_total: 1.to_m)
|
8
|
+
order = create_placed_order
|
9
|
+
|
10
|
+
hash = Order.new(order.id).to_h
|
11
|
+
|
12
|
+
assert_equal(order.total_price.currency.iso_code, hash[:currency_iso])
|
13
|
+
assert_equal(order.email, hash[:email])
|
14
|
+
assert_equal(order.id, hash[:order_id])
|
15
|
+
|
16
|
+
item = Workarea::Storefront::OrderItemViewModel.new(order.items.first)
|
17
|
+
hash_product = hash[:products][item.product_id]
|
18
|
+
|
19
|
+
assert(hash[:products][item.product_id].present?)
|
20
|
+
assert_equal(hash_product[:description], item.product.description)
|
21
|
+
assert_equal(hash_product[:name], item.product.name)
|
22
|
+
assert_equal(hash_product[:price], item.original_price.to_s)
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def create_placed_order(overrides = {})
|
28
|
+
attributes = factory_defaults(:placed_order).merge(overrides)
|
29
|
+
|
30
|
+
shipping_service = create_shipping_service
|
31
|
+
sku = 'SKU'
|
32
|
+
create_product(description: "test description", variants: [{ sku: sku, regular: 5.to_m }])
|
33
|
+
details = OrderItemDetails.find(sku)
|
34
|
+
order = Workarea::Order.new(attributes)
|
35
|
+
item = { sku: sku, quantity: 2 }.merge(details.to_h)
|
36
|
+
|
37
|
+
order.add_item(item)
|
38
|
+
|
39
|
+
checkout = Checkout.new(order)
|
40
|
+
checkout.update(
|
41
|
+
factory_defaults(:checkout_payment).merge(
|
42
|
+
shipping_address: factory_defaults(:shipping_address),
|
43
|
+
billing_address: factory_defaults(:billing_address),
|
44
|
+
shipping_service: shipping_service.name,
|
45
|
+
)
|
46
|
+
)
|
47
|
+
|
48
|
+
unless checkout.place_order
|
49
|
+
raise(
|
50
|
+
UnplacedOrderError,
|
51
|
+
'failed placing the order in the create_placed_order factory'
|
52
|
+
)
|
53
|
+
end
|
54
|
+
|
55
|
+
forced_attrs = overrides.slice(:placed_at, :update_at, :total_price)
|
56
|
+
order.update_attributes!(forced_attrs)
|
57
|
+
order
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV['RAILS_ENV'] = 'test'
|
3
|
+
|
4
|
+
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
5
|
+
require 'rails/test_help'
|
6
|
+
require 'workarea/test_help'
|
7
|
+
|
8
|
+
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
9
|
+
# to be shown.
|
10
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module Workarea
|
4
|
+
class Yotpo::SaveOrderTest < TestCase
|
5
|
+
def test_order_yotpo_save_order
|
6
|
+
order = create_placed_order
|
7
|
+
|
8
|
+
response = Workarea::Yotpo::SaveOrder.new.perform(order.id)
|
9
|
+
|
10
|
+
assert_instance_of(Workarea::Yotpo::Response, response)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
$:.push File.expand_path("lib", __dir__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require "workarea/yotpo/version"
|
5
|
+
|
6
|
+
# Describe your gem and declare its dependencies:
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = "workarea-yotpo"
|
9
|
+
spec.version = Workarea::Yotpo::VERSION
|
10
|
+
spec.authors = ["Jeff Yucis"]
|
11
|
+
spec.email = ["jyucis@workarea.com"]
|
12
|
+
spec.homepage = "https://github.com/workarea-commerce/workarea-yotpo"
|
13
|
+
spec.summary = "Yotpo User Generated Content for Workarea Ecommerce."
|
14
|
+
spec.description = "Reviews and order syncing for YotPo"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split("\n")
|
17
|
+
|
18
|
+
spec.add_dependency 'workarea', '~> 3.x'
|
19
|
+
spec.add_dependency 'faraday'
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: workarea-yotpo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeff Yucis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-11-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: workarea
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.x
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.x
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Reviews and order syncing for YotPo
|
42
|
+
email:
|
43
|
+
- jyucis@workarea.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".editorconfig"
|
49
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
50
|
+
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
51
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
52
|
+
- ".github/workflows/ci.yml"
|
53
|
+
- ".gitignore"
|
54
|
+
- ".rubocop.yml"
|
55
|
+
- ".travis.yml"
|
56
|
+
- CHANGELOG.md
|
57
|
+
- CODE_OF_CONDUCT.md
|
58
|
+
- CONTRIBUTING.md
|
59
|
+
- Gemfile
|
60
|
+
- LICENSE.md
|
61
|
+
- README.md
|
62
|
+
- Rakefile
|
63
|
+
- app/assets/images/yotpo/.keep
|
64
|
+
- app/assets/javascripts/yotpo/.keep
|
65
|
+
- app/assets/stylesheets/yotpo/.keep
|
66
|
+
- app/controllers/.keep
|
67
|
+
- app/helpers/.keep
|
68
|
+
- app/mailers/.keep
|
69
|
+
- app/models/.keep
|
70
|
+
- app/services/yotpo/order.rb
|
71
|
+
- app/views/workarea/storefront/_yotpo_tracking.html.haml
|
72
|
+
- app/views/workarea/storefront/checkouts/_yotpo_order_tracking.html.haml
|
73
|
+
- app/views/workarea/storefront/products/_yotpo_product_summary.html.haml
|
74
|
+
- app/views/workarea/storefront/products/_yotpo_reviews.html.haml
|
75
|
+
- app/views/workarea/storefront/products/_yotpo_summary.html.haml
|
76
|
+
- app/workers/workarea/yotpo/save_order.rb
|
77
|
+
- bin/rails
|
78
|
+
- config/initializers/appends.rb
|
79
|
+
- config/initializers/workarea.rb
|
80
|
+
- config/routes.rb
|
81
|
+
- lib/workarea/yotpo.rb
|
82
|
+
- lib/workarea/yotpo/authentication.rb
|
83
|
+
- lib/workarea/yotpo/bogus_gateway.rb
|
84
|
+
- lib/workarea/yotpo/engine.rb
|
85
|
+
- lib/workarea/yotpo/gateway.rb
|
86
|
+
- lib/workarea/yotpo/response.rb
|
87
|
+
- lib/workarea/yotpo/version.rb
|
88
|
+
- script/static_analysis
|
89
|
+
- script/travis
|
90
|
+
- test/dummy/.ruby-version
|
91
|
+
- test/dummy/Rakefile
|
92
|
+
- test/dummy/app/assets/config/manifest.js
|
93
|
+
- test/dummy/app/assets/images/.keep
|
94
|
+
- test/dummy/app/assets/javascripts/application.js
|
95
|
+
- test/dummy/app/assets/stylesheets/application.css
|
96
|
+
- test/dummy/app/controllers/application_controller.rb
|
97
|
+
- test/dummy/app/controllers/concerns/.keep
|
98
|
+
- test/dummy/app/helpers/application_helper.rb
|
99
|
+
- test/dummy/app/jobs/application_job.rb
|
100
|
+
- test/dummy/app/mailers/application_mailer.rb
|
101
|
+
- test/dummy/app/models/concerns/.keep
|
102
|
+
- test/dummy/app/views/layouts/application.html.erb
|
103
|
+
- test/dummy/app/views/layouts/mailer.html.erb
|
104
|
+
- test/dummy/app/views/layouts/mailer.text.erb
|
105
|
+
- test/dummy/bin/bundle
|
106
|
+
- test/dummy/bin/rails
|
107
|
+
- test/dummy/bin/rake
|
108
|
+
- test/dummy/bin/setup
|
109
|
+
- test/dummy/bin/update
|
110
|
+
- test/dummy/bin/yarn
|
111
|
+
- test/dummy/config.ru
|
112
|
+
- test/dummy/config/application.rb
|
113
|
+
- test/dummy/config/boot.rb
|
114
|
+
- test/dummy/config/environment.rb
|
115
|
+
- test/dummy/config/environments/development.rb
|
116
|
+
- test/dummy/config/environments/production.rb
|
117
|
+
- test/dummy/config/environments/test.rb
|
118
|
+
- test/dummy/config/initializers/application_controller_renderer.rb
|
119
|
+
- test/dummy/config/initializers/assets.rb
|
120
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
121
|
+
- test/dummy/config/initializers/content_security_policy.rb
|
122
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
123
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
124
|
+
- test/dummy/config/initializers/inflections.rb
|
125
|
+
- test/dummy/config/initializers/mime_types.rb
|
126
|
+
- test/dummy/config/initializers/workarea.rb
|
127
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
128
|
+
- test/dummy/config/locales/en.yml
|
129
|
+
- test/dummy/config/puma.rb
|
130
|
+
- test/dummy/config/routes.rb
|
131
|
+
- test/dummy/config/spring.rb
|
132
|
+
- test/dummy/db/seeds.rb
|
133
|
+
- test/dummy/lib/assets/.keep
|
134
|
+
- test/dummy/log/.keep
|
135
|
+
- test/integration/workarea/yotpo/yotpo_integration_test.rb
|
136
|
+
- test/services/yotpo/order_test.rb
|
137
|
+
- test/teaspoon_env.rb
|
138
|
+
- test/test_helper.rb
|
139
|
+
- test/workers/workarea/yotpo/save_order_test.rb
|
140
|
+
- workarea-yotpo.gemspec
|
141
|
+
homepage: https://github.com/workarea-commerce/workarea-yotpo
|
142
|
+
licenses: []
|
143
|
+
metadata: {}
|
144
|
+
post_install_message:
|
145
|
+
rdoc_options: []
|
146
|
+
require_paths:
|
147
|
+
- lib
|
148
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
requirements: []
|
159
|
+
rubygems_version: 3.0.6
|
160
|
+
signing_key:
|
161
|
+
specification_version: 4
|
162
|
+
summary: Yotpo User Generated Content for Workarea Ecommerce.
|
163
|
+
test_files: []
|