workarea-theme 1.1.1

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.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +20 -0
  3. data/.eslintrc +25 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  5. data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
  6. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  7. data/.gitignore +25 -0
  8. data/.rubocop.yml +8 -0
  9. data/.scss-lint.yml +192 -0
  10. data/CHANGELOG.md +88 -0
  11. data/CODE_OF_CONDUCT.md +3 -0
  12. data/CONTRIBUTING.md +3 -0
  13. data/Gemfile +20 -0
  14. data/LICENSE +52 -0
  15. data/README.md +315 -0
  16. data/Rakefile +63 -0
  17. data/bin/rails +21 -0
  18. data/config/initializers/workarea.rb +3 -0
  19. data/config/routes.rb +2 -0
  20. data/docs/guides/source/theme_template.rb +155 -0
  21. data/engines/workarea-bogus-theme/.gitignore +19 -0
  22. data/engines/workarea-bogus-theme/Gemfile +19 -0
  23. data/engines/workarea-bogus-theme/README.md +51 -0
  24. data/engines/workarea-bogus-theme/Rakefile +108 -0
  25. data/engines/workarea-bogus-theme/bin/rails +21 -0
  26. data/engines/workarea-bogus-theme/config/initializers/theme.rb +16 -0
  27. data/engines/workarea-bogus-theme/config/initializers/workarea.rb +3 -0
  28. data/engines/workarea-bogus-theme/config/routes.rb +2 -0
  29. data/engines/workarea-bogus-theme/lib/tasks/bogus_theme_tasks.rake +4 -0
  30. data/engines/workarea-bogus-theme/lib/workarea/bogus_theme.rb +11 -0
  31. data/engines/workarea-bogus-theme/lib/workarea/bogus_theme/engine.rb +11 -0
  32. data/engines/workarea-bogus-theme/lib/workarea/bogus_theme/version.rb +5 -0
  33. data/engines/workarea-bogus-theme/test/dummy/Rakefile +6 -0
  34. data/engines/workarea-bogus-theme/test/dummy/bin/bundle +4 -0
  35. data/engines/workarea-bogus-theme/test/dummy/bin/rails +5 -0
  36. data/engines/workarea-bogus-theme/test/dummy/bin/rake +5 -0
  37. data/engines/workarea-bogus-theme/test/dummy/bin/setup +38 -0
  38. data/engines/workarea-bogus-theme/test/dummy/bin/update +30 -0
  39. data/engines/workarea-bogus-theme/test/dummy/bin/yarn +12 -0
  40. data/engines/workarea-bogus-theme/test/dummy/config.ru +5 -0
  41. data/engines/workarea-bogus-theme/test/dummy/config/application.rb +27 -0
  42. data/engines/workarea-bogus-theme/test/dummy/config/boot.rb +5 -0
  43. data/engines/workarea-bogus-theme/test/dummy/config/cable.yml +10 -0
  44. data/engines/workarea-bogus-theme/test/dummy/config/environment.rb +5 -0
  45. data/engines/workarea-bogus-theme/test/dummy/config/environments/development.rb +54 -0
  46. data/engines/workarea-bogus-theme/test/dummy/config/environments/production.rb +91 -0
  47. data/engines/workarea-bogus-theme/test/dummy/config/environments/test.rb +44 -0
  48. data/engines/workarea-bogus-theme/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  49. data/engines/workarea-bogus-theme/test/dummy/config/initializers/assets.rb +14 -0
  50. data/engines/workarea-bogus-theme/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  51. data/engines/workarea-bogus-theme/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  52. data/engines/workarea-bogus-theme/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/engines/workarea-bogus-theme/test/dummy/config/initializers/inflections.rb +16 -0
  54. data/engines/workarea-bogus-theme/test/dummy/config/initializers/mime_types.rb +4 -0
  55. data/engines/workarea-bogus-theme/test/dummy/config/initializers/workarea.rb +5 -0
  56. data/engines/workarea-bogus-theme/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/engines/workarea-bogus-theme/test/dummy/config/locales/en.yml +33 -0
  58. data/engines/workarea-bogus-theme/test/dummy/config/puma.rb +56 -0
  59. data/engines/workarea-bogus-theme/test/dummy/config/routes.rb +5 -0
  60. data/engines/workarea-bogus-theme/test/dummy/config/secrets.yml +32 -0
  61. data/engines/workarea-bogus-theme/test/dummy/config/spring.rb +6 -0
  62. data/engines/workarea-bogus-theme/test/dummy/db/seeds.rb +2 -0
  63. data/engines/workarea-bogus-theme/test/dummy/lib/assets/.keep +0 -0
  64. data/engines/workarea-bogus-theme/test/dummy/log/.keep +0 -0
  65. data/engines/workarea-bogus-theme/test/dummy/package.json +5 -0
  66. data/engines/workarea-bogus-theme/test/teaspoon_env.rb +6 -0
  67. data/engines/workarea-bogus-theme/test/test_helper.rb +10 -0
  68. data/engines/workarea-bogus-theme/workarea-bogus_theme.gemspec +21 -0
  69. data/lib/generators/workarea/starter_store/USAGE +13 -0
  70. data/lib/generators/workarea/starter_store/starter_store_generator.rb +124 -0
  71. data/lib/generators/workarea/theme_override/USAGE +8 -0
  72. data/lib/generators/workarea/theme_override/theme_override_generator.rb +50 -0
  73. data/lib/tasks/theme_tasks.rake +4 -0
  74. data/lib/workarea/theme.rb +40 -0
  75. data/lib/workarea/theme/engine.rb +8 -0
  76. data/lib/workarea/theme/errors.rb +5 -0
  77. data/lib/workarea/theme/version.rb +5 -0
  78. data/test/dummy/Rakefile +6 -0
  79. data/test/dummy/bin/bundle +4 -0
  80. data/test/dummy/bin/rails +5 -0
  81. data/test/dummy/bin/rake +5 -0
  82. data/test/dummy/bin/setup +38 -0
  83. data/test/dummy/bin/update +30 -0
  84. data/test/dummy/bin/yarn +12 -0
  85. data/test/dummy/config.ru +5 -0
  86. data/test/dummy/config/application.rb +27 -0
  87. data/test/dummy/config/boot.rb +5 -0
  88. data/test/dummy/config/cable.yml +10 -0
  89. data/test/dummy/config/environment.rb +5 -0
  90. data/test/dummy/config/environments/development.rb +54 -0
  91. data/test/dummy/config/environments/production.rb +91 -0
  92. data/test/dummy/config/environments/test.rb +44 -0
  93. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  94. data/test/dummy/config/initializers/assets.rb +14 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  96. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  97. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  98. data/test/dummy/config/initializers/inflections.rb +16 -0
  99. data/test/dummy/config/initializers/mime_types.rb +4 -0
  100. data/test/dummy/config/initializers/workarea.rb +5 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/en.yml +33 -0
  103. data/test/dummy/config/puma.rb +56 -0
  104. data/test/dummy/config/routes.rb +5 -0
  105. data/test/dummy/config/secrets.yml +32 -0
  106. data/test/dummy/config/spring.rb +6 -0
  107. data/test/dummy/db/seeds.rb +2 -0
  108. data/test/dummy/lib/assets/.keep +0 -0
  109. data/test/dummy/log/.keep +0 -0
  110. data/test/dummy/package.json +5 -0
  111. data/test/generators/workarea/starter_store_generator_test.rb +79 -0
  112. data/test/generators/workarea/theme_override_generator_test.rb +23 -0
  113. data/test/teaspoon_env.rb +6 -0
  114. data/test/test_helper.rb +10 -0
  115. data/workarea-theme.gemspec +21 -0
  116. metadata +201 -0
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,5 @@
1
+ Workarea.configure do |config|
2
+ # Basic site info
3
+ config.site_name = 'Workarea Theme'
4
+ config.host = 'www.example.com'
5
+ end
@@ -0,0 +1,14 @@
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
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # 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,56 @@
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. If you use this option
30
+ # you need to make sure to reconnect any threads in the `on_worker_boot`
31
+ # block.
32
+ #
33
+ # preload_app!
34
+
35
+ # If you are preloading your application and using Active Record, it's
36
+ # recommended that you close any connections to the database before workers
37
+ # are forked to prevent connection leakage.
38
+ #
39
+ # before_fork do
40
+ # ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
41
+ # end
42
+
43
+ # The code in the `on_worker_boot` will be called if you are using
44
+ # clustered mode by specifying a number of `workers`. After each worker
45
+ # process is booted, this block will be run. If you are using the `preload_app!`
46
+ # option, you will want to use this block to reconnect to any threads
47
+ # or connections that may have been created at application boot, as Ruby
48
+ # cannot share connections between processes.
49
+ #
50
+ # on_worker_boot do
51
+ # ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
52
+ # end
53
+ #
54
+
55
+ # Allow puma to be restarted by `rails restart` command.
56
+ plugin :tmp_restart
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+ mount Workarea::Core::Engine => '/'
3
+ mount Workarea::Admin::Engine => '/admin', as: 'admin'
4
+ mount Workarea::Storefront::Engine => '/', as: 'storefront'
5
+ end
@@ -0,0 +1,32 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ # Shared secrets are available across all environments.
14
+
15
+ # shared:
16
+ # api_key: a1B2c3D4e5F6
17
+
18
+ # Environmental secrets are only available for that specific environment.
19
+
20
+ development:
21
+ secret_key_base: acc6796cb894a784068e2b42f245cb02f1d033012ca93cf1dac2cad6cc889a56a4d478090f684b5071d59982dcb6ee3716520bcf060e0c951c2262aaee23eb38
22
+
23
+ test:
24
+ secret_key_base: 731c746fe334748e52f4d46091cf0ef4577f9f2538eb19b934f1641fbd5e4b30f54c54e4a650b32cd56c26aefade435f9026ac3e118ce5802e5ff91dd43b0afc
25
+
26
+ # Do not keep production secrets in the unencrypted secrets file.
27
+ # Instead, either read values from the environment.
28
+ # Or, use `bin/rails secrets:setup` to configure encrypted secrets
29
+ # and move the `production:` environment over there.
30
+
31
+ production:
32
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w[
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1,2 @@
1
+ require 'workarea/seeds'
2
+ Workarea::Seeds.run
File without changes
File without changes
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -0,0 +1,79 @@
1
+ require 'test_helper'
2
+ require 'generators/workarea/starter_store/starter_store_generator'
3
+
4
+ module Workarea
5
+ class StarterStoreGeneratorTest < GeneratorTest
6
+ tests Workarea::StarterStoreGenerator
7
+ destination Dir.mktmpdir
8
+
9
+ def self.running_in_gem?
10
+ Workarea::Theme.installed.name == 'Workarea::BogusTheme'
11
+ end
12
+
13
+ if running_in_gem?
14
+ setup do
15
+ prepare_destination
16
+ FileUtils.mkdir_p "#{destination_root}/config/initializers"
17
+ create_gemfile
18
+ create_application_config
19
+ end
20
+
21
+ def create_gemfile
22
+ File.open "#{destination_root}/Gemfile", 'w' do |file|
23
+ file.write <<~eos
24
+ gem 'workarea-bogus_theme', path: '~/src/workarea-bogus-theme'
25
+ source 'https://gems.weblinc.com' do
26
+
27
+ end
28
+ eos
29
+ end
30
+ end
31
+
32
+ def create_application_config
33
+ File.open "#{destination_root}/config/application.rb", 'w' do |file|
34
+ file.write <<~eos
35
+ module TestApp
36
+ class Application < Rails::Application
37
+
38
+ end
39
+ end
40
+ eos
41
+ end
42
+ end
43
+
44
+ def test_importing_app_files
45
+ run_generator
46
+ assert_file 'app/views/layouts/workarea/storefront/bogus.html.haml'
47
+ end
48
+
49
+ def test_importing_initializers
50
+ run_generator
51
+ assert_file 'config/initializers/theme.rb'
52
+ end
53
+
54
+ def test_loading_helpers
55
+ run_generator
56
+ assert_file 'config/application.rb' do |app_config|
57
+ assert_match('config.to_prepare do', app_config)
58
+ assert_match('BogusThemeHelper', app_config)
59
+ end
60
+ end
61
+
62
+ def test_theme_commented_out_in_gemfile
63
+ run_generator
64
+
65
+ assert_file 'Gemfile' do |gemfile|
66
+ assert_match("# gem 'workarea-bogus_theme'", gemfile)
67
+ end
68
+ end
69
+
70
+ def test_dependencies_added_to_gemfile
71
+ run_generator
72
+
73
+ assert_file 'Gemfile' do |gemfile|
74
+ assert_match("gem 'workarea-blog', '>= 3.2.0'", gemfile)
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,23 @@
1
+ require 'test_helper'
2
+ require 'generators/workarea/theme_override/theme_override_generator'
3
+
4
+ module Workarea
5
+ class ThemeOverrideGeneratorTest < GeneratorTest
6
+ tests Workarea::ThemeOverrideGenerator
7
+ destination Dir.mktmpdir
8
+
9
+ def self.running_in_gem?
10
+ Workarea::Theme.installed.name == 'Workarea::BogusTheme'
11
+ end
12
+
13
+ if running_in_gem?
14
+ setup :prepare_destination
15
+
16
+ def test_copying_files
17
+ run_generator
18
+
19
+ assert_file 'lib/workarea/theme/override_commit'
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,6 @@
1
+ require 'workarea/testing/teaspoon'
2
+
3
+ Teaspoon.configure do |config|
4
+ config.root = Workarea::Theme::Engine.root
5
+ Workarea::Teaspoon.apply(config)
6
+ end
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV['RAILS_ENV'] = 'test'
3
+
4
+ require File.expand_path('../test/dummy/config/environment.rb', __dir__)
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,21 @@
1
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
2
+
3
+ # Maintain your gem's version:
4
+ require 'workarea/theme/version'
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = 'workarea-theme'
9
+ s.version = Workarea::Theme::VERSION
10
+ s.authors = ['Curt Howard']
11
+ s.email = ['choward@workarea.com']
12
+ s.homepage = 'https://github.com/workarea-commerce/workarea-theme'
13
+ s.summary = 'Theme tooling for Workarea Commerce Platform'
14
+ s.description = 'Tools and generators for working with themes on the Workarea Commerce Platform'
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+
18
+ s.license = 'Business Software License'
19
+
20
+ s.add_dependency 'workarea', '~> 3.x'
21
+ end
metadata ADDED
@@ -0,0 +1,201 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: workarea-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Curt Howard
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-08-22 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
+ description: Tools and generators for working with themes on the Workarea Commerce
28
+ Platform
29
+ email:
30
+ - choward@workarea.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".editorconfig"
36
+ - ".eslintrc"
37
+ - ".github/ISSUE_TEMPLATE/bug_report.md"
38
+ - ".github/ISSUE_TEMPLATE/documentation-request.md"
39
+ - ".github/ISSUE_TEMPLATE/feature_request.md"
40
+ - ".gitignore"
41
+ - ".rubocop.yml"
42
+ - ".scss-lint.yml"
43
+ - CHANGELOG.md
44
+ - CODE_OF_CONDUCT.md
45
+ - CONTRIBUTING.md
46
+ - Gemfile
47
+ - LICENSE
48
+ - README.md
49
+ - Rakefile
50
+ - bin/rails
51
+ - config/initializers/workarea.rb
52
+ - config/routes.rb
53
+ - docs/guides/source/theme_template.rb
54
+ - engines/workarea-bogus-theme/.gitignore
55
+ - engines/workarea-bogus-theme/Gemfile
56
+ - engines/workarea-bogus-theme/README.md
57
+ - engines/workarea-bogus-theme/Rakefile
58
+ - engines/workarea-bogus-theme/app/assets/stylesheets/bogus_theme/.keep
59
+ - engines/workarea-bogus-theme/app/helpers/workarea/storefront/bogus_theme_helper.rb
60
+ - engines/workarea-bogus-theme/app/views/layouts/workarea/storefront/bogus.html.haml
61
+ - engines/workarea-bogus-theme/bin/rails
62
+ - engines/workarea-bogus-theme/config/initializers/theme.rb
63
+ - engines/workarea-bogus-theme/config/initializers/workarea.rb
64
+ - engines/workarea-bogus-theme/config/routes.rb
65
+ - engines/workarea-bogus-theme/lib/tasks/bogus_theme_tasks.rake
66
+ - engines/workarea-bogus-theme/lib/workarea/bogus_theme.rb
67
+ - engines/workarea-bogus-theme/lib/workarea/bogus_theme/engine.rb
68
+ - engines/workarea-bogus-theme/lib/workarea/bogus_theme/version.rb
69
+ - engines/workarea-bogus-theme/test/dummy/Rakefile
70
+ - engines/workarea-bogus-theme/test/dummy/app/assets/config/manifest.js
71
+ - engines/workarea-bogus-theme/test/dummy/app/assets/images/.keep
72
+ - engines/workarea-bogus-theme/test/dummy/app/assets/javascripts/application.js
73
+ - engines/workarea-bogus-theme/test/dummy/app/assets/stylesheets/application.css
74
+ - engines/workarea-bogus-theme/test/dummy/app/controllers/application_controller.rb
75
+ - engines/workarea-bogus-theme/test/dummy/app/controllers/concerns/.keep
76
+ - engines/workarea-bogus-theme/test/dummy/app/helpers/application_helper.rb
77
+ - engines/workarea-bogus-theme/test/dummy/app/jobs/application_job.rb
78
+ - engines/workarea-bogus-theme/test/dummy/app/mailers/application_mailer.rb
79
+ - engines/workarea-bogus-theme/test/dummy/app/models/concerns/.keep
80
+ - engines/workarea-bogus-theme/test/dummy/app/views/layouts/application.html.erb
81
+ - engines/workarea-bogus-theme/test/dummy/app/views/layouts/mailer.html.erb
82
+ - engines/workarea-bogus-theme/test/dummy/app/views/layouts/mailer.text.erb
83
+ - engines/workarea-bogus-theme/test/dummy/bin/bundle
84
+ - engines/workarea-bogus-theme/test/dummy/bin/rails
85
+ - engines/workarea-bogus-theme/test/dummy/bin/rake
86
+ - engines/workarea-bogus-theme/test/dummy/bin/setup
87
+ - engines/workarea-bogus-theme/test/dummy/bin/update
88
+ - engines/workarea-bogus-theme/test/dummy/bin/yarn
89
+ - engines/workarea-bogus-theme/test/dummy/config.ru
90
+ - engines/workarea-bogus-theme/test/dummy/config/application.rb
91
+ - engines/workarea-bogus-theme/test/dummy/config/boot.rb
92
+ - engines/workarea-bogus-theme/test/dummy/config/cable.yml
93
+ - engines/workarea-bogus-theme/test/dummy/config/environment.rb
94
+ - engines/workarea-bogus-theme/test/dummy/config/environments/development.rb
95
+ - engines/workarea-bogus-theme/test/dummy/config/environments/production.rb
96
+ - engines/workarea-bogus-theme/test/dummy/config/environments/test.rb
97
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/application_controller_renderer.rb
98
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/assets.rb
99
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/backtrace_silencers.rb
100
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/cookies_serializer.rb
101
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/filter_parameter_logging.rb
102
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/inflections.rb
103
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/mime_types.rb
104
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/workarea.rb
105
+ - engines/workarea-bogus-theme/test/dummy/config/initializers/wrap_parameters.rb
106
+ - engines/workarea-bogus-theme/test/dummy/config/locales/en.yml
107
+ - engines/workarea-bogus-theme/test/dummy/config/puma.rb
108
+ - engines/workarea-bogus-theme/test/dummy/config/routes.rb
109
+ - engines/workarea-bogus-theme/test/dummy/config/secrets.yml
110
+ - engines/workarea-bogus-theme/test/dummy/config/spring.rb
111
+ - engines/workarea-bogus-theme/test/dummy/db/seeds.rb
112
+ - engines/workarea-bogus-theme/test/dummy/lib/assets/.keep
113
+ - engines/workarea-bogus-theme/test/dummy/log/.keep
114
+ - engines/workarea-bogus-theme/test/dummy/package.json
115
+ - engines/workarea-bogus-theme/test/teaspoon_env.rb
116
+ - engines/workarea-bogus-theme/test/test_helper.rb
117
+ - engines/workarea-bogus-theme/workarea-bogus_theme.gemspec
118
+ - lib/generators/workarea/starter_store/USAGE
119
+ - lib/generators/workarea/starter_store/starter_store_generator.rb
120
+ - lib/generators/workarea/theme_override/USAGE
121
+ - lib/generators/workarea/theme_override/theme_override_generator.rb
122
+ - lib/tasks/theme_tasks.rake
123
+ - lib/workarea/theme.rb
124
+ - lib/workarea/theme/engine.rb
125
+ - lib/workarea/theme/errors.rb
126
+ - lib/workarea/theme/version.rb
127
+ - test/dummy/Rakefile
128
+ - test/dummy/app/assets/config/manifest.js
129
+ - test/dummy/app/assets/images/.keep
130
+ - test/dummy/app/assets/javascripts/application.js
131
+ - test/dummy/app/assets/stylesheets/application.css
132
+ - test/dummy/app/controllers/application_controller.rb
133
+ - test/dummy/app/controllers/concerns/.keep
134
+ - test/dummy/app/helpers/application_helper.rb
135
+ - test/dummy/app/jobs/application_job.rb
136
+ - test/dummy/app/mailers/application_mailer.rb
137
+ - test/dummy/app/models/concerns/.keep
138
+ - test/dummy/app/views/layouts/application.html.erb
139
+ - test/dummy/app/views/layouts/mailer.html.erb
140
+ - test/dummy/app/views/layouts/mailer.text.erb
141
+ - test/dummy/bin/bundle
142
+ - test/dummy/bin/rails
143
+ - test/dummy/bin/rake
144
+ - test/dummy/bin/setup
145
+ - test/dummy/bin/update
146
+ - test/dummy/bin/yarn
147
+ - test/dummy/config.ru
148
+ - test/dummy/config/application.rb
149
+ - test/dummy/config/boot.rb
150
+ - test/dummy/config/cable.yml
151
+ - test/dummy/config/environment.rb
152
+ - test/dummy/config/environments/development.rb
153
+ - test/dummy/config/environments/production.rb
154
+ - test/dummy/config/environments/test.rb
155
+ - test/dummy/config/initializers/application_controller_renderer.rb
156
+ - test/dummy/config/initializers/assets.rb
157
+ - test/dummy/config/initializers/backtrace_silencers.rb
158
+ - test/dummy/config/initializers/cookies_serializer.rb
159
+ - test/dummy/config/initializers/filter_parameter_logging.rb
160
+ - test/dummy/config/initializers/inflections.rb
161
+ - test/dummy/config/initializers/mime_types.rb
162
+ - test/dummy/config/initializers/workarea.rb
163
+ - test/dummy/config/initializers/wrap_parameters.rb
164
+ - test/dummy/config/locales/en.yml
165
+ - test/dummy/config/puma.rb
166
+ - test/dummy/config/routes.rb
167
+ - test/dummy/config/secrets.yml
168
+ - test/dummy/config/spring.rb
169
+ - test/dummy/db/seeds.rb
170
+ - test/dummy/lib/assets/.keep
171
+ - test/dummy/log/.keep
172
+ - test/dummy/package.json
173
+ - test/generators/workarea/starter_store_generator_test.rb
174
+ - test/generators/workarea/theme_override_generator_test.rb
175
+ - test/teaspoon_env.rb
176
+ - test/test_helper.rb
177
+ - workarea-theme.gemspec
178
+ homepage: https://github.com/workarea-commerce/workarea-theme
179
+ licenses:
180
+ - Business Software License
181
+ metadata: {}
182
+ post_install_message:
183
+ rdoc_options: []
184
+ require_paths:
185
+ - lib
186
+ required_ruby_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ requirements: []
197
+ rubygems_version: 3.0.4
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: Theme tooling for Workarea Commerce Platform
201
+ test_files: []