spree_frontend 4.3.2 → 4.5.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.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +192 -0
  3. data/.codeclimate.yml +36 -0
  4. data/.deepsource.toml +19 -0
  5. data/.editorconfig +22 -0
  6. data/.eslintignore +7 -0
  7. data/.eslintrc +36 -0
  8. data/.gem_release.yml +7 -0
  9. data/.github/CONTRIBUTING.md +1 -0
  10. data/.github/ISSUE_TEMPLATE/bug_report.md +47 -0
  11. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  12. data/.github/ISSUE_TEMPLATE.md +39 -0
  13. data/.github/dependabot.yml +32 -0
  14. data/.gitignore +58 -0
  15. data/.rubocop.yml +197 -0
  16. data/.solargraph.yml +20 -0
  17. data/.stylelintignore +4 -0
  18. data/.stylelintrc +6 -0
  19. data/CODE_OF_CONDUCT.md +22 -0
  20. data/Gemfile +58 -3
  21. data/LICENSE +1 -1
  22. data/README.md +88 -0
  23. data/SECURITY.md +1 -0
  24. data/app/assets/config/spree_frontend_manifest.js +1 -0
  25. data/app/assets/javascripts/spree/{api → frontend/api}/main.js +4 -4
  26. data/app/assets/javascripts/spree/{api → frontend/api}/storefront/cart.js +1 -1
  27. data/app/assets/javascripts/spree/frontend/checkout/address.js +3 -3
  28. data/app/assets/javascripts/spree/frontend/currency.js +6 -7
  29. data/app/assets/javascripts/spree/frontend/locale.es6 +1 -2
  30. data/app/assets/javascripts/{spree.js → spree/frontend/main.js} +5 -5
  31. data/app/assets/javascripts/spree/frontend/{turbolinks_scroll_fix.js → turbo_scroll_fix.js} +3 -3
  32. data/app/assets/javascripts/spree/frontend/views/spree/home/product_carousels.js +1 -1
  33. data/app/assets/javascripts/spree/frontend/views/spree/product/related.js +1 -1
  34. data/app/assets/javascripts/spree/frontend/views/spree/products/cart_form.js +8 -8
  35. data/app/assets/javascripts/spree/frontend/views/spree/products/description.js +1 -1
  36. data/app/assets/javascripts/spree/frontend/views/spree/products/index.js +1 -1
  37. data/app/assets/javascripts/spree/frontend/views/spree/shared/mobile_navigation.js +4 -4
  38. data/app/assets/javascripts/spree/frontend/views/spree/shared/variant_select.js +3 -3
  39. data/app/assets/javascripts/spree/frontend.js +10 -17
  40. data/app/controllers/spree/addresses_controller.rb +4 -4
  41. data/app/controllers/spree/checkout_controller.rb +2 -2
  42. data/app/controllers/spree/locale_controller.rb +3 -2
  43. data/app/controllers/spree/orders_controller.rb +1 -1
  44. data/app/controllers/spree/store_controller.rb +42 -1
  45. data/app/helpers/spree/frontend_helper.rb +32 -8
  46. data/app/helpers/spree/navigation_helper.rb +2 -2
  47. data/app/helpers/spree/products_filters_helper.rb +1 -1
  48. data/app/helpers/spree/store_helper.rb +1 -1
  49. data/app/services/spree/build_localized_redirect_url.rb +101 -0
  50. data/app/views/spree/checkout/_delivery.html.erb +1 -1
  51. data/app/views/spree/checkout/edit.html.erb +1 -1
  52. data/app/views/spree/checkout/registration.html.erb +1 -1
  53. data/app/views/spree/orders/_line_item.html.erb +1 -1
  54. data/app/views/spree/orders/_line_item_data.html.erb +1 -1
  55. data/app/views/spree/products/_color_option_type.html.erb +2 -2
  56. data/app/views/spree/products/_description.html.erb +1 -1
  57. data/app/views/spree/products/_filters_desktop.html.erb +3 -3
  58. data/app/views/spree/products/_filters_mobile.html.erb +2 -2
  59. data/app/views/spree/products/_thumbnails.html.erb +2 -2
  60. data/app/views/spree/shared/_head.html.erb +3 -2
  61. data/app/views/spree/shared/_line_item.html.erb +1 -1
  62. data/app/views/spree/shared/_link_to_account.html.erb +3 -1
  63. data/app/views/spree/shared/_login.html.erb +1 -1
  64. data/app/views/spree/shared/_main_nav_bar.html.erb +1 -1
  65. data/app/views/spree/shared/_nav_bar.html.erb +1 -1
  66. data/app/views/spree/shared/_order_details.html.erb +1 -1
  67. data/app/views/spree/shared/_paths.html.erb +1 -1
  68. data/app/views/spree/shared/_translations.html.erb +1 -1
  69. data/app/views/spree/shared/carousel/_single.html.erb +2 -2
  70. data/app/views/spree/shared/carousel/_thumbnails.html.erb +1 -1
  71. data/app/views/spree/shared/cms/sections/_hero_image.html.erb +9 -9
  72. data/app/views/spree/shared/cms/sections/_image_gallery.html.erb +21 -21
  73. data/app/views/spree/shared/cms/sections/_side_by_side_images.html.erb +14 -14
  74. data/app/views/spree/taxons/_header.html.erb +1 -1
  75. data/app/views/spree/users/_address_controls.html.erb +1 -1
  76. data/config/routes.rb +4 -4
  77. data/lib/generators/spree/frontend/install/install_generator.rb +1 -1
  78. data/lib/spree/frontend/configuration.rb +18 -0
  79. data/lib/spree/frontend/engine.rb +3 -7
  80. data/lib/spree/frontend/version.rb +9 -0
  81. data/lib/spree/frontend.rb +2 -1
  82. data/license.md +13 -0
  83. data/spree_frontend.gemspec +5 -4
  84. metadata +57 -21
  85. data/app/models/spree/frontend_configuration.rb +0 -10
  86. data/app/views/spree/shared/_taxonomies.html.erb +0 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b78705780cd1446c55f87a0694c8d887c3612571a1db1d869f9468a852dd219b
4
- data.tar.gz: e99f4c4516fa69b041e222c41fbe22b7e19087af11adfef44c8017e9a90c7234
3
+ metadata.gz: 1402fb31c7f3b252aa0143299ea5a3d7fbacda30d8d28fb535c26fef9e06bbf4
4
+ data.tar.gz: 6ae0c987bc34ff834db6b02c2133277412175aba67f5586f9d938813677a3150
5
5
  SHA512:
6
- metadata.gz: b83d560ee3832e02164f14749186fdddec5a897aaf8a488f115789f18d151e2cfaf48f93a04f2bbaa50747094cfe88d759662322ce251ef4af5fc981cb3745f1
7
- data.tar.gz: 21d1e380bf606a5caaaa6c9274d90fd8495f099a7bc4085d30c3be5d9dcf6e595d07b4662c2c9370840c58fab70baf007e14c98e54666dac54c3d83c9fd74b2c
6
+ metadata.gz: 899e115454881c1e7c759cfb95ed0e9990d7bbe519c0b114dbf506426864f296f557b5ecebe3196c42b6f59ce0d33a66038f8eea8bf6e37013b35fac2c2871fc
7
+ data.tar.gz: a51ca9229e1f1130ab4c6d951f9c415410f5c9980d65937a417131eb99164b09dde80045bd5b8c086efa02842572318c60aaaff2ffd244d23234f4b0f99758fd
@@ -0,0 +1,192 @@
1
+ version: 2.1 # use CircleCI 2.0
2
+
3
+ defaults: &defaults
4
+ environment: &environment
5
+ CIRCLE_TEST_REPORTS: /tmp/test-results
6
+ CIRCLE_ARTIFACTS: /tmp/test-artifacts
7
+ BUNDLE_JOBS: 4
8
+ BUNDLE_RETRY: 3
9
+ BUNDLE_PATH: ~/spree/vendor/bundle
10
+ RAILS_VERSION: '~> 7.0'
11
+ working_directory: ~/spree
12
+ docker:
13
+ - image: &ruby_2_7_image circleci/ruby:2.7-node-browsers
14
+ - image: &redis_image circleci/redis:6.2-alpine
15
+
16
+ defaults_3_0: &defaults_3_0
17
+ <<: *defaults
18
+ docker:
19
+ - image: &ruby_3_0_image circleci/ruby:3.0-node-browsers
20
+ - image: *redis_image
21
+
22
+ run_tests_2_7: &run_tests_2_7
23
+ <<: *defaults
24
+ parallelism: 8
25
+ steps:
26
+ - checkout
27
+ - restore_cache:
28
+ keys:
29
+ - spree-storefront-old-bundle-v10-ruby-2-7-{{ .Branch }}
30
+ - spree-storefront-old-bundle-v10-ruby-2-7
31
+ - run:
32
+ name: Install libvips
33
+ command: sudo apt-get install libvips
34
+ - run:
35
+ name: Set bundle path
36
+ command: bundle config --local path vendor/bundle
37
+ - run:
38
+ name: Ensure bundle Install
39
+ command: |
40
+ bundle check || bundle install
41
+ - run:
42
+ name: Create test app
43
+ command: |
44
+ bundle exec rake test_app
45
+ - run:
46
+ name: Run Rspec
47
+ command: |
48
+ TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
49
+ bundle exec rspec --format documentation \
50
+ --format RspecJunitFormatter \
51
+ -o ~/rspec/rspec.xml \
52
+ -- ${TESTFILES}
53
+ - store_test_results:
54
+ path: ~/rspec
55
+ - store_artifacts:
56
+ path: tmp/capybara
57
+
58
+ run_tests_3_0: &run_tests_3_0
59
+ <<: *defaults_3_0
60
+ parallelism: 8
61
+ steps:
62
+ - checkout
63
+ - restore_cache:
64
+ keys:
65
+ - spree-storefront-old-bundle-v10-ruby-3-0-{{ .Branch }}
66
+ - spree-storefront-old-bundle-v10-ruby-3-0
67
+ - run:
68
+ name: Install libvips
69
+ command: sudo apt-get install libvips
70
+ - run:
71
+ name: Set bundle path
72
+ command: bundle config --local path vendor/bundle
73
+ - run:
74
+ name: Ensure bundle Install
75
+ command: |
76
+ bundle check || bundle install
77
+ - run:
78
+ name: Create test app
79
+ command: |
80
+ bundle exec rake test_app
81
+ - run:
82
+ name: Run Rspec
83
+ command: |
84
+ TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
85
+ bundle exec rspec --format documentation \
86
+ --format RspecJunitFormatter \
87
+ -o ~/rspec/rspec.xml \
88
+ -- ${TESTFILES}
89
+ - store_test_results:
90
+ path: ~/rspec
91
+ - store_artifacts:
92
+ path: tmp/capybara
93
+
94
+ jobs:
95
+ bundle_ruby_2_7:
96
+ <<: *defaults
97
+ steps:
98
+ - checkout
99
+ - restore_cache:
100
+ keys:
101
+ - spree-storefront-old-bundle-v10-ruby-2-7-{{ .Branch }}
102
+ - spree-storefront-old-bundle-v10-ruby-2-7
103
+ - run:
104
+ name: Install libvips
105
+ command: sudo apt-get install libvips
106
+ - run:
107
+ name: Set bundle path
108
+ command: bundle config --local path vendor/bundle
109
+ - run:
110
+ name: Bundle Install
111
+ command: |
112
+ bundle check || bundle install
113
+ - save_cache:
114
+ paths:
115
+ - vendor/bundle
116
+ key: spree-storefront-old-bundle-v10-ruby-2-7-{{ checksum "Gemfile.lock" }}
117
+
118
+ bundle_ruby_3_0:
119
+ <<: *defaults_3_0
120
+ steps:
121
+ - checkout
122
+ - restore_cache:
123
+ keys:
124
+ - spree-storefront-old-bundle-v10-ruby-3-0-{{ .Branch }}
125
+ - spree-storefront-old-bundle-v10-ruby-3-0
126
+ - run:
127
+ name: Install libvips
128
+ command: sudo apt-get install libvips
129
+ - run:
130
+ name: Set bundle path
131
+ command: bundle config --local path vendor/bundle
132
+ - run:
133
+ name: Bundle Install
134
+ command: |
135
+ bundle check || bundle install
136
+ - save_cache:
137
+ paths:
138
+ - vendor/bundle
139
+ key: spree-storefront-old-bundle-v10-ruby-3-0-{{ checksum "Gemfile.lock" }}
140
+
141
+ tests_ruby_2_7_rails_7_0_postgres:
142
+ <<: *run_tests_2_7
143
+ environment: &postgres_environment
144
+ <<: *environment
145
+ DB: postgres
146
+ DB_HOST: localhost
147
+ DB_USERNAME: postgres
148
+ docker:
149
+ - image: *ruby_2_7_image
150
+ - image: *redis_image
151
+ - image: &postgres_image circleci/postgres:12-alpine
152
+ environment:
153
+ POSTGRES_USER: postgres
154
+
155
+ tests_ruby_3_0_rails_7_0_postgres:
156
+ <<: *run_tests_3_0
157
+ environment:
158
+ <<: *postgres_environment
159
+ docker:
160
+ - image: *ruby_3_0_image
161
+ - image: *postgres_image
162
+ - image: *redis_image
163
+
164
+ tests_ruby_2_7_rails_7_0_mysql:
165
+ <<: *run_tests_2_7
166
+ environment: &mysql_environment
167
+ <<: *environment
168
+ DB: mysql
169
+ DB_HOST: 127.0.0.1
170
+ DB_USERNAME: root
171
+ COVERAGE: true
172
+ COVERAGE_DIR: /tmp/workspace/simplecov
173
+ docker:
174
+ - image: *ruby_2_7_image
175
+ - image: *redis_image
176
+ - image: &mysql_image circleci/mysql:8-ram
177
+
178
+ workflows:
179
+ version: 2
180
+ main:
181
+ jobs:
182
+ - bundle_ruby_2_7
183
+ - bundle_ruby_3_0
184
+ - tests_ruby_3_0_rails_7_0_postgres:
185
+ requires:
186
+ - bundle_ruby_3_0
187
+ - tests_ruby_2_7_rails_7_0_postgres:
188
+ requires:
189
+ - bundle_ruby_2_7
190
+ - tests_ruby_2_7_rails_7_0_mysql:
191
+ requires:
192
+ - bundle_ruby_2_7
data/.codeclimate.yml ADDED
@@ -0,0 +1,36 @@
1
+ version: "2"
2
+ plugins:
3
+ rubocop:
4
+ enabled: true
5
+ checks:
6
+ Rubocop/Naming/RescuedExceptionsVariableName:
7
+ enabled: false
8
+ Rubocop/Layout/AlignArguments:
9
+ enabled: false
10
+ Rubocop/Style/MultilineWhenThen:
11
+ enabled: false
12
+ Rubocop/Layout/SpaceAroundOperators:
13
+ enabled: false
14
+ Rubocop/Style/FormatStringToken:
15
+ enabled: false
16
+ config:
17
+ file: .rubocop.yml
18
+ channel: "rubocop-0-80" # need to keep this value the same as rubocop version
19
+ # https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
20
+ eslint:
21
+ enabled: true
22
+ config:
23
+ extensions:
24
+ - .es6
25
+ - .js
26
+ channel: "eslint-7" # need to keep this value the same as eslint version
27
+ # https://docs.codeclimate.com/v1.0/docs/eslint#section-eslint-versions
28
+ stylelint:
29
+ enabled: true
30
+ exclude_patterns:
31
+ - "**/bin/"
32
+ - "**/script/"
33
+ - "**/vendor/"
34
+ - "**/spec/"
35
+ - "public/"
36
+ - "sample/db/samples"
data/.deepsource.toml ADDED
@@ -0,0 +1,19 @@
1
+ version = 1
2
+
3
+ exclude_patterns = [
4
+ "**/sandbox/**/*",
5
+ "**/db/migrate/*",
6
+ "**/Gemfile",
7
+ "**/Gemfile.lock",
8
+ "**/Rakefile",
9
+ "**/rails",
10
+ "**/*.gemspec",
11
+ "**/dummy/**/*",
12
+ "**/vendor/**/*",
13
+ "**/spec_helper.rb",
14
+ "**/templates/**/*"
15
+ ]
16
+
17
+ [[analyzers]]
18
+ name = "ruby"
19
+ enabled = true
data/.editorconfig ADDED
@@ -0,0 +1,22 @@
1
+ # http://EditorConfig.org
2
+ # https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
3
+
4
+ root = true
5
+
6
+ [*]
7
+ charset = utf-8
8
+ end_of_line = lf
9
+ indent_size = 2
10
+ indent_style = space
11
+ insert_final_newline = true
12
+ trim_trailing_whitespace = true
13
+ tab_width = 2
14
+
15
+ [**.rb]
16
+ max_line_length = 150
17
+
18
+ [**.js, **.coffee]
19
+ max_line_length = 150
20
+
21
+ [*.md]
22
+ trim_trailing_whitespace = false
data/.eslintignore ADDED
@@ -0,0 +1,7 @@
1
+ **/vendor/**
2
+ **/dummy/**
3
+ **/sandbox/**
4
+ *-min.js
5
+ *.min.js
6
+ jquery*.js
7
+ /cli/lib/spree_cli/templates/**
data/.eslintrc ADDED
@@ -0,0 +1,36 @@
1
+ ---
2
+ extends: standard
3
+
4
+ globals:
5
+ Spree: true
6
+ analytics: true
7
+ DOMPurify: true
8
+ flatpickr: true
9
+ Sortable: true
10
+ ga: true
11
+ _: true
12
+ Select2: true
13
+ Handlebars: true
14
+ Raphael: true
15
+ SpreeAPI: true
16
+ SpreePaths: true
17
+ CouponManager: true
18
+ ThumbnailsCarousel: true
19
+ Turbo: true
20
+ ADDRESS_FIELDS: true
21
+ AUTH_TOKEN: true
22
+ SPREE_LOCALE: true
23
+ SPREE_CURRENCY: true
24
+ SPREE_DEFAULT_CURRENCY: true
25
+ SPREE_DEFAULT_LOCALE: true
26
+ OAUTH_TOKEN: true
27
+ updateAddressState: true
28
+ formatSelect2Options: true
29
+
30
+ env:
31
+ browser: true
32
+ jquery: true
33
+
34
+ rules:
35
+ space-before-function-paren: off
36
+ semi: off
data/.gem_release.yml ADDED
@@ -0,0 +1,7 @@
1
+
2
+ bump:
3
+ recurse: false
4
+ file: 'frontend/lib/spree/frontend/version.rb'
5
+
6
+ release:
7
+ recurse: true
@@ -0,0 +1 @@
1
+ Please visit [Contributing section](https://dev-docs.spreecommerce.org/contributing/index) of Spree Guides. Thank you!
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: Needs Confirmation
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ <!--- Provide a general summary of the issue in the Title above -->
11
+
12
+ ## Context
13
+ <!--- Provide a more detailed introduction to the issue itself -->
14
+ <!--- How has this issue affected you? What were you trying to accomplish? -->
15
+
16
+ ## Expected Behavior
17
+ <!--- Tell us what should happen -->
18
+
19
+ ## Actual Behavior
20
+ <!--- Tell us what happens instead -->
21
+
22
+ ## Possible Fix
23
+ <!--- Not obligatory, but suggest a fix or reason for the issue -->
24
+
25
+ ## Steps to Reproduce
26
+ <!--- Provide a link to a live example, or an unambiguous set of steps to -->
27
+ <!--- reproduce this issue include code to reproduce, if relevant -->
28
+ 1.
29
+ 2.
30
+ 3.
31
+ 4.
32
+
33
+ ## Your Environment
34
+ <!--- Include as many relevant details about the environment you experienced the issue in -->
35
+ * Version used:
36
+ * Gemfile and Gemfile.lock as text in a Gist:
37
+ * Any relevant stack traces ("Full trace" preferred):
38
+
39
+ <!--- Please remember to format code using triple backticks (`)
40
+ so that it is neatly formatted when the issue is posted. -->
41
+
42
+ <!--- In 99% of cases, this information is enough to determine the cause and
43
+ solution to the problem that is being described.
44
+
45
+ Any issue that is open for 14 days without actionable information or
46
+ activity will be marked as "stalled" and then closed. Stalled issues
47
+ can be re-opened if the information requested is provided. -->
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: 'New Feature :tada:'
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,39 @@
1
+
2
+ <!--- Provide a general summary of the issue in the Title above -->
3
+
4
+ ## Context
5
+ <!--- Provide a more detailed introduction to the issue itself -->
6
+ <!--- How has this issue affected you? What were you trying to accomplish? -->
7
+
8
+ ## Expected Behavior
9
+ <!--- Tell us what should happen -->
10
+
11
+ ## Actual Behavior
12
+ <!--- Tell us what happens instead -->
13
+
14
+ ## Possible Fix
15
+ <!--- Not obligatory, but suggest a fix or reason for the issue -->
16
+
17
+ ## Steps to Reproduce
18
+ <!--- Provide a link to a live example, or an unambiguous set of steps to -->
19
+ <!--- reproduce this issue include code to reproduce, if relevant -->
20
+ 1.
21
+ 2.
22
+ 3.
23
+ 4.
24
+
25
+ ## Your Environment
26
+ <!--- Include as many relevant details about the environment you experienced the issue in -->
27
+ * Version used:
28
+ * Gemfile and Gemfile.lock as text in a Gist:
29
+ * Any relevant stack traces ("Full trace" preferred):
30
+
31
+ <!--- Please remember to format code using triple backticks (`)
32
+ so that it is neatly formatted when the issue is posted. -->
33
+
34
+ <!--- In 99% of cases, this information is enough to determine the cause and
35
+ solution to the problem that is being described.
36
+
37
+ Any issue that is open for 14 days without actionable information or
38
+ activity will be marked as "stalled" and then closed. Stalled issues
39
+ can be re-opened if the information requested is provided. -->
@@ -0,0 +1,32 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/backend"
5
+ schedule:
6
+ interval: daily
7
+ open-pull-requests-limit: 10
8
+ - package-ecosystem: bundler
9
+ directory: "/frontend"
10
+ schedule:
11
+ interval: daily
12
+ open-pull-requests-limit: 10
13
+ - package-ecosystem: bundler
14
+ directory: "/core"
15
+ schedule:
16
+ interval: daily
17
+ open-pull-requests-limit: 10
18
+ - package-ecosystem: bundler
19
+ directory: "/cli"
20
+ schedule:
21
+ interval: daily
22
+ open-pull-requests-limit: 10
23
+ - package-ecosystem: bundler
24
+ directory: "/api"
25
+ schedule:
26
+ interval: daily
27
+ open-pull-requests-limit: 10
28
+ - package-ecosystem: bundler
29
+ directory: "/sample"
30
+ schedule:
31
+ interval: daily
32
+ open-pull-requests-limit: 10
data/.gitignore ADDED
@@ -0,0 +1,58 @@
1
+ \#*
2
+ **/*.db
3
+ **/*.log
4
+ **/*.byebug_history
5
+ *~
6
+ .#*
7
+ .DS_Store
8
+ .bundle
9
+ .dotest
10
+ .idea
11
+ .loadpath
12
+ .project
13
+ .vscode
14
+ public/dispatch.cgi
15
+ public/dispatch.fcgi
16
+ public/dispatch.rb
17
+ httpd
18
+ pgsql
19
+ config/*-public.asc
20
+ config/database.yml
21
+ config/mongrel_cluster.yml
22
+ db/*.sql
23
+ db/*.sqlite3*
24
+ db/schema.rb
25
+ doc/**/*
26
+ Gemfile.lock
27
+ */Gemfile.lock
28
+ lib/products_index_profiler.rb
29
+ log/*.log
30
+ pkg
31
+ public/assets
32
+ public/attachments
33
+ public/blank_iframe.html
34
+ public/ckeditora
35
+ sandbox/*
36
+ spree_dev
37
+ spree_test
38
+ testapp
39
+ **/spec/dummy
40
+ tmp
41
+ public/google_base.xml
42
+ public/template_google_base.xml
43
+ coverage/*
44
+ var
45
+ nbproject
46
+ ./vendor
47
+ *.swp
48
+ rerun.txt
49
+ test_app
50
+ .rvmrc
51
+ **/coverage
52
+ */.sass-cache
53
+ .localeapp
54
+ .ruby-gemset
55
+ vendor/bundle
56
+ */vendor/bundle
57
+ .ignore
58
+ TODO