solidus_sample 2.10.0.beta1 → 2.10.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bf82b2630704119508659e65cab9b75c29d52f4e31816453a59efb89d6fee0a
4
- data.tar.gz: 38d7d28f628dc81ea56b34bc3116eaf18bee87da7611732281fe7ad53ce7c7d6
3
+ metadata.gz: e240aa18d6119987631fe24f38274df395dd931cf8589c95068124f387b392cf
4
+ data.tar.gz: ba0d2963629bba724702f90ebd92a4cae4955423bf5d7959318617a391f727b1
5
5
  SHA512:
6
- metadata.gz: 432539a9b8d7a5bc555276c3503f207b6335dc1f1b22b2630700464d8cdc72c923f4bc7cabad2ece781dcdda222750b841e62246c97ef33da363ed1e5e433f29
7
- data.tar.gz: 5c1864df456f9c3d6eb787ea2249f0115366c4587de0540052c4f158038fa5cde92b917ef4b831bc0a900b376c88e114987b0762fb453ee498b5de60f8131ed9
6
+ metadata.gz: c3114f476531f46cf9787704fe8517b582763dc921732767ef3eabec01f3d1a65ab32791b350cb780ec46562fac0a9f62c360c93c0b3c6beb3664c3a479c4418
7
+ data.tar.gz: 95dfd36a0d0a00f3ce922fbf4f5d5e68ea1bba49e1e64d514b15faf2ae3cef77d869f60f67972be1f6697b24a57e3a1c96be412014e542775308d19b7729737e
data/db/samples/assets.rb CHANGED
@@ -4,9 +4,9 @@ Spree::Sample.load_sample("products")
4
4
  Spree::Sample.load_sample("variants")
5
5
 
6
6
  products = {}
7
- products[:solidus_tshirt] = Spree::Product.find_by!(name: "Solidus T-Shirt")
8
- products[:solidus_long] = Spree::Product.find_by!(name: "Solidus Long Sleeve")
9
- products[:solidus_girly] = Spree::Product.find_by!(name: "Solidus Girly")
7
+ products[:solidus_tshirt] = Spree::Product.includes(variants: [:option_values]).find_by!(name: "Solidus T-Shirt")
8
+ products[:solidus_long] = Spree::Product.includes(variants: [:option_values]).find_by!(name: "Solidus Long Sleeve")
9
+ products[:solidus_girly] = Spree::Product.includes(variants: [:option_values]).find_by!(name: "Solidus Girly")
10
10
  products[:solidus_snapback_cap] = Spree::Product.find_by!(name: "Solidus Snapback Cap")
11
11
  products[:solidus_hoodie] = Spree::Product.find_by!(name: "Solidus Hoodie Zip")
12
12
  products[:ruby_hoodie] = Spree::Product.find_by!(name: "Ruby Hoodie")
@@ -20,7 +20,9 @@ products[:ruby_tote] = Spree::Product.find_by!(name: "Ruby Tote")
20
20
  def image(name, type = "jpg")
21
21
  images_path = Pathname.new(File.dirname(__FILE__)) + "images"
22
22
  path = images_path + "#{name}.#{type}"
23
+
23
24
  return false if !File.exist?(path)
25
+
24
26
  path
25
27
  end
26
28
 
@@ -103,7 +105,9 @@ products[:solidus_tshirt].variants.each do |variant|
103
105
  variant.images.create!(attachment: f)
104
106
  end
105
107
  back_image = image("solidus_tshirt_back_#{color}", "png")
108
+
106
109
  next unless back_image
110
+
107
111
  File.open(back_image) do |f|
108
112
  variant.images.create!(attachment: f)
109
113
  end
@@ -116,13 +120,15 @@ products[:solidus_long].variants.each do |variant|
116
120
  variant.images.create!(attachment: f)
117
121
  end
118
122
  back_image = image("solidus_long_back_#{color}", "png")
123
+
119
124
  next unless back_image
125
+
120
126
  File.open(back_image) do |f|
121
127
  variant.images.create!(attachment: f)
122
128
  end
123
129
  end
124
130
 
125
- products[:solidus_girly].variants.each do |variant|
131
+ products[:solidus_girly].reload.variants.each do |variant|
126
132
  color = variant.option_value("tshirt-color").downcase
127
133
  main_image = image("solidus_girly_#{color}", "png")
128
134
  File.open(main_image) do |f|
@@ -21,9 +21,7 @@ medium = Spree::OptionValue.find_by!(name: "Medium")
21
21
  large = Spree::OptionValue.find_by!(name: "Large")
22
22
  extra_large = Spree::OptionValue.find_by!(name: "Extra Large")
23
23
 
24
- red = Spree::OptionValue.find_by!(name: "Red")
25
24
  blue = Spree::OptionValue.find_by!(name: "Blue")
26
- green = Spree::OptionValue.find_by!(name: "Green")
27
25
  black = Spree::OptionValue.find_by!(name: "Black")
28
26
  white = Spree::OptionValue.find_by!(name: "White")
29
27
 
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.require_path = 'lib'
19
19
  s.requirements << 'none'
20
20
 
21
- s.required_ruby_version = '>= 2.2.2'
21
+ s.required_ruby_version = '>= 2.4.0'
22
22
  s.required_rubygems_version = '>= 1.8.23'
23
23
 
24
24
  s.add_dependency 'solidus_core', s.version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_sample
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.0.beta1
4
+ version: 2.10.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-19 00:00:00.000000000 Z
11
+ date: 2021-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.10.0.beta1
19
+ version: 2.10.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.10.0.beta1
26
+ version: 2.10.5
27
27
  description: Sample data (including images) for use with Solidus.
28
28
  email: contact@solidus.io
29
29
  executables: []
@@ -36,26 +36,6 @@ files:
36
36
  - db/samples.rb
37
37
  - db/samples/addresses.rb
38
38
  - db/samples/assets.rb
39
- - db/samples/images/apache_baseball.png
40
- - db/samples/images/ror_bag.jpg
41
- - db/samples/images/ror_baseball.jpg
42
- - db/samples/images/ror_baseball_back.jpg
43
- - db/samples/images/ror_baseball_jersey_back_blue.png
44
- - db/samples/images/ror_baseball_jersey_back_green.png
45
- - db/samples/images/ror_baseball_jersey_back_red.png
46
- - db/samples/images/ror_baseball_jersey_blue.png
47
- - db/samples/images/ror_baseball_jersey_green.png
48
- - db/samples/images/ror_baseball_jersey_red.png
49
- - db/samples/images/ror_jr_spaghetti.jpg
50
- - db/samples/images/ror_mug.jpg
51
- - db/samples/images/ror_mug_back.jpg
52
- - db/samples/images/ror_ringer.jpg
53
- - db/samples/images/ror_ringer_back.jpg
54
- - db/samples/images/ror_stein.jpg
55
- - db/samples/images/ror_stein_back.jpg
56
- - db/samples/images/ror_tote.jpg
57
- - db/samples/images/ror_tote_back.jpg
58
- - db/samples/images/ruby_baseball.png
59
39
  - db/samples/images/ruby_hoodie.jpg
60
40
  - db/samples/images/ruby_hoodie_zip.jpg
61
41
  - db/samples/images/ruby_mug.jpg
@@ -115,7 +95,7 @@ homepage: http://solidus.io/
115
95
  licenses:
116
96
  - BSD-3-Clause
117
97
  metadata: {}
118
- post_install_message:
98
+ post_install_message:
119
99
  rdoc_options: []
120
100
  require_paths:
121
101
  - lib
@@ -123,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
103
  requirements:
124
104
  - - ">="
125
105
  - !ruby/object:Gem::Version
126
- version: 2.2.2
106
+ version: 2.4.0
127
107
  required_rubygems_version: !ruby/object:Gem::Requirement
128
108
  requirements:
129
109
  - - ">="
@@ -131,8 +111,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
111
  version: 1.8.23
132
112
  requirements:
133
113
  - none
134
- rubygems_version: 3.0.6
135
- signing_key:
114
+ rubygems_version: 3.1.4
115
+ signing_key:
136
116
  specification_version: 4
137
117
  summary: Sample data (including images) for use with Solidus.
138
118
  test_files: []
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file