solidus_sample 4.6.2 → 4.7.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.
- checksums.yaml +4 -4
- data/Rakefile +7 -7
- data/db/samples/addresses.rb +15 -15
- data/db/samples/assets.rb +3 -3
- data/db/samples/option_values.rb +1 -1
- data/db/samples/orders.rb +1 -1
- data/db/samples/payments.rb +5 -5
- data/db/samples/product_properties.rb +3 -3
- data/db/samples/products.rb +4 -4
- data/db/samples/reimbursements.rb +2 -2
- data/db/samples/shipping_methods.rb +2 -2
- data/db/samples/stock.rb +2 -2
- data/db/samples/stores.rb +1 -1
- data/db/samples/taxonomies.rb +2 -2
- data/db/samples/taxons.rb +4 -4
- data/db/samples/variants.rb +1 -1
- data/lib/solidus_sample.rb +1 -1
- data/lib/spree/sample.rb +6 -6
- data/lib/spree_sample.rb +3 -3
- data/lib/tasks/sample.rake +3 -3
- data/solidus_sample.gemspec +13 -13
- metadata +9 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f13dc509c181490ad26520c33f8ecf9413c6dabe74875efcd578ae9681de5e91
|
|
4
|
+
data.tar.gz: 7aab34d9570eea5f6fd3af9e2d28d004a204c6c6476072740ebb8a564bd7e334
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03b53a33feb894e4a5566e6181684e7680e0b2fe39d0c3965a7affcd858c4aef8db897a13735d017b751ec892bb20277fb085e2098f0cce581816665668dc2b2
|
|
7
|
+
data.tar.gz: aa9bd68ccad0a5e49ce30a3add7855447039d9837dbc350e90efdb21c8f7db6de2caeb818f0a39e919da23319e68bcfa4049968f50196abd38946ea15e4a2018
|
data/Rakefile
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
5
|
-
require
|
|
6
|
-
require
|
|
7
|
-
require
|
|
3
|
+
require "rake"
|
|
4
|
+
require "rake/testtask"
|
|
5
|
+
require "rspec/core/rake_task"
|
|
6
|
+
require "spree/testing_support/dummy_app/rake_tasks"
|
|
7
|
+
require "bundler/gem_tasks"
|
|
8
8
|
|
|
9
9
|
RSpec::Core::RakeTask.new
|
|
10
10
|
task default: :spec
|
|
11
11
|
|
|
12
12
|
DummyApp::RakeTasks.new(
|
|
13
13
|
gem_root: File.expand_path(__dir__),
|
|
14
|
-
lib_name:
|
|
14
|
+
lib_name: "solidus_sample"
|
|
15
15
|
)
|
|
16
16
|
|
|
17
|
-
task test_app:
|
|
17
|
+
task test_app: "db:reset"
|
data/db/samples/addresses.rb
CHANGED
|
@@ -4,25 +4,25 @@ united_states = Spree::Country.find_by!(iso: "US")
|
|
|
4
4
|
new_york = Spree::State.find_by!(name: "New York")
|
|
5
5
|
|
|
6
6
|
names = ["Sterling Torp", "Jennette Vandervort", "Salome Stroman", "Lyla Lang",
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
"Lola Zulauf", "Cheree Bruen", "Hettie Torp", "Barbie Gutmann",
|
|
8
|
+
"Amelia Renner", "Marceline Bergstrom", "Keeley Sauer", "Mi Gaylord",
|
|
9
|
+
"Karon Mills", "Jessika Daugherty", "Emmy Stark"]
|
|
10
10
|
street_addresses = ["7377 Jacobi Passage", "4725 Serena Ridges",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
"79832 Hamill Creek", "0746 Genoveva Villages",
|
|
12
|
+
"86717 D'Amore Hollow", "8529 Delena Well",
|
|
13
|
+
"959 Lockman Ferry", "67016 Murphy Fork",
|
|
14
|
+
"193 Larkin Divide", "80697 Cole Parks"]
|
|
15
15
|
secondary_addresses = ["Suite 918", "Suite 374", "Apt. 714", "Apt. 351",
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
"Suite 274", "Suite 240", "Suite 892", "Apt. 176",
|
|
17
|
+
"Apt. 986", "Apt. 583"]
|
|
18
18
|
cities = ["Lake Laurenceview", "Lucilefurt", "South Jannetteport",
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
"Leannonport", "Legrosburgh", "Willmsberg", "Karoleside",
|
|
20
|
+
"Lake German", "Keeblerfort", "Lemkehaven"]
|
|
21
21
|
phone_numbers = ["(392)859-7319 x670", "738-831-3210 x6047",
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
"(441)881-8127 x030", "1-744-701-0536 x30504",
|
|
23
|
+
"(992)432-8273 x97676", "482.249.0178 x532",
|
|
24
|
+
"(855)317-6523", "1-529-214-7315 x90865",
|
|
25
|
+
"(662)877-7894 x703", "689.578.8564 x72399"]
|
|
26
26
|
|
|
27
27
|
2.times do
|
|
28
28
|
Spree::Address.create!(
|
data/db/samples/assets.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
3
|
+
require "thor"
|
|
4
4
|
shell = Thor::Base.shell.new
|
|
5
5
|
|
|
6
6
|
Spree::Sample.load_sample("products")
|
|
@@ -94,7 +94,7 @@ images = {
|
|
|
94
94
|
{
|
|
95
95
|
attachment: image("solidus_cap_black_1")
|
|
96
96
|
}
|
|
97
|
-
]
|
|
97
|
+
]
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
products.each do |key, product|
|
|
@@ -103,7 +103,7 @@ products.each do |key, product|
|
|
|
103
103
|
index = 1
|
|
104
104
|
|
|
105
105
|
loop do
|
|
106
|
-
image_path = image("#{key}_#{color}_#{index}",
|
|
106
|
+
image_path = image("#{key}_#{color}_#{index}", "png")
|
|
107
107
|
break unless image_path
|
|
108
108
|
|
|
109
109
|
File.open(image_path) do |f|
|
data/db/samples/option_values.rb
CHANGED
data/db/samples/orders.rb
CHANGED
data/db/samples/payments.rb
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# create payments based on the totals since they can't be known in YAML (quantities are random)
|
|
4
|
-
method = Spree::PaymentMethod.where(name:
|
|
4
|
+
method = Spree::PaymentMethod.where(name: "Credit Card", active: true).first
|
|
5
5
|
|
|
6
6
|
# This table was previously called spree_creditcards, and older migrations
|
|
7
7
|
# reference it as such. Make it explicit here that this table has been renamed.
|
|
8
|
-
Spree::CreditCard.table_name =
|
|
8
|
+
Spree::CreditCard.table_name = "spree_credit_cards"
|
|
9
9
|
|
|
10
|
-
creditcard = Spree::CreditCard.create(cc_type:
|
|
11
|
-
|
|
10
|
+
creditcard = Spree::CreditCard.create(cc_type: "visa", month: 12, year: 2.years.from_now.year, last_digits: "1111",
|
|
11
|
+
name: "Sean Schofield", gateway_customer_profile_id: "BGS-1234")
|
|
12
12
|
|
|
13
13
|
Spree::Order.all.each_with_index do |order, _index|
|
|
14
14
|
order.recalculate
|
|
15
15
|
payment = order.payments.create!(amount: order.total, source: creditcard.clone, payment_method: method)
|
|
16
|
-
payment.update_columns(state:
|
|
16
|
+
payment.update_columns(state: "pending", response_code: "12345")
|
|
17
17
|
end
|
|
@@ -5,13 +5,13 @@ products =
|
|
|
5
5
|
"Solidus tote" =>
|
|
6
6
|
{
|
|
7
7
|
"Type" => "Tote",
|
|
8
|
-
"Size" => %
|
|
8
|
+
"Size" => %(15" x 18" x 6"),
|
|
9
9
|
"Material" => "Canvas"
|
|
10
10
|
},
|
|
11
11
|
"Solidus canvas tote bag" =>
|
|
12
12
|
{
|
|
13
13
|
"Type" => "Tote",
|
|
14
|
-
"Size" => %
|
|
14
|
+
"Size" => %(15" x 18" x 6"),
|
|
15
15
|
"Material" => "Canvas"
|
|
16
16
|
},
|
|
17
17
|
"Solidus cap" =>
|
|
@@ -67,7 +67,7 @@ products =
|
|
|
67
67
|
"Solidus Water Bottle" =>
|
|
68
68
|
{
|
|
69
69
|
"Type" => "Insulated Water Bottle",
|
|
70
|
-
"Size" => %
|
|
70
|
+
"Size" => %(4.5" tall, 3.25" dia.)
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
|
data/db/samples/products.rb
CHANGED
|
@@ -12,7 +12,7 @@ descriptions = [
|
|
|
12
12
|
"Perferendis sed voluptatem error ipsam voluptatem esse ipsa incidunt. Doloremque quos ratione quia voluptas consequatur mollitia optio. Optio sed iure aut aliquid voluptatum facilis mollitia cum. Dignissimos in saepe consequatur et consequatur dolorem blanditiis.",
|
|
13
13
|
"Necessitatibus optio quod ullam itaque quis corporis occaecati. Saepe harum voluptates consectetur rerum dolorum. Corrupti officiis reprehenderit quo excepturi cumque. Soluta eos perspiciatis aut et ea nulla amet dolores. Dolores distinctio nesciunt libero voluptas molestiae consequatur aut veritatis.",
|
|
14
14
|
"Soluta sed error debitis repellendus et. Voluptates unde enim qui velit. Libero earum tenetur nulla similique temporibus quod repellendus quibusdam.",
|
|
15
|
-
"Recusandae animi deserunt provident dignissimos ullam harum alias et. Itaque dicta maxime consectetur ut nemo non voluptatem. Voluptatem ipsum ut culpa eaque dolores."
|
|
15
|
+
"Recusandae animi deserunt provident dignissimos ullam harum alias et. Itaque dicta maxime consectetur ut nemo non voluptatem. Voluptatem ipsum ut culpa eaque dolores."
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
default_attrs = {
|
|
@@ -32,7 +32,7 @@ products = [
|
|
|
32
32
|
weight: 0.5,
|
|
33
33
|
height: 20,
|
|
34
34
|
width: 10,
|
|
35
|
-
depth: 5
|
|
35
|
+
depth: 5
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
name: "Solidus tote",
|
|
@@ -45,7 +45,7 @@ products = [
|
|
|
45
45
|
weight: 0.5,
|
|
46
46
|
height: 20,
|
|
47
47
|
width: 10,
|
|
48
|
-
depth: 5
|
|
48
|
+
depth: 5
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
51
|
name: "Solidus hoodie",
|
|
@@ -58,7 +58,7 @@ products = [
|
|
|
58
58
|
weight: 1,
|
|
59
59
|
height: 20,
|
|
60
60
|
width: 10,
|
|
61
|
-
depth: 5
|
|
61
|
+
depth: 5
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
name: "Solidus mug set",
|
|
@@ -6,11 +6,11 @@ order = Spree::Order.last
|
|
|
6
6
|
inventory_unit = order.inventory_units.take!
|
|
7
7
|
stock_location = inventory_unit.find_stock_item.stock_location
|
|
8
8
|
return_reason = Spree::ReturnReason.active.take!
|
|
9
|
-
preferred_reimbursement_type = Spree::ReimbursementType.where(name:
|
|
9
|
+
preferred_reimbursement_type = Spree::ReimbursementType.where(name: "Original").take!
|
|
10
10
|
admin_user = if defined?(Spree::Auth)
|
|
11
11
|
Spree.user_class.admin.take!
|
|
12
12
|
else
|
|
13
|
-
Spree.user_class.find_or_create_by!(email:
|
|
13
|
+
Spree.user_class.find_or_create_by!(email: "admin@example.com")
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
# Mark the order paid and shipped
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
begin
|
|
4
|
-
north_america = Spree::Zone.find_by!(name: "North America")
|
|
4
|
+
north_america = Spree::Zone.find_by!(name: "North America")
|
|
5
5
|
rescue ActiveRecord::RecordNotFound
|
|
6
6
|
puts "Couldn't find 'North America' zone. Did you run `rake db:seed` first?"
|
|
7
7
|
puts "That task will set up the countries, states and zones required for Spree."
|
|
@@ -10,7 +10,7 @@ end
|
|
|
10
10
|
|
|
11
11
|
tax_category = Spree::TaxCategory.find_by!(name: "Default")
|
|
12
12
|
europe_vat = Spree::Zone.find_by!(name: "EU_VAT")
|
|
13
|
-
shipping_category = Spree::ShippingCategory.find_or_create_by!(name:
|
|
13
|
+
shipping_category = Spree::ShippingCategory.find_or_create_by!(name: "Default")
|
|
14
14
|
|
|
15
15
|
Spree::ShippingMethod.create!([
|
|
16
16
|
{
|
data/db/samples/stock.rb
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Spree::Sample.load_sample("variants")
|
|
4
4
|
|
|
5
|
-
country =
|
|
6
|
-
location = Spree::StockLocation.first_or_create! name:
|
|
5
|
+
country = Spree::Country.find_by(iso: "US")
|
|
6
|
+
location = Spree::StockLocation.first_or_create! name: "default", address1: "Example Street", city: "City", zipcode: "12345", country:, state: country.states.first
|
|
7
7
|
location.active = true
|
|
8
8
|
location.save!
|
|
9
9
|
|
data/db/samples/stores.rb
CHANGED
data/db/samples/taxonomies.rb
CHANGED
data/db/samples/taxons.rb
CHANGED
|
@@ -28,7 +28,7 @@ end
|
|
|
28
28
|
taxons = [
|
|
29
29
|
{
|
|
30
30
|
name: "Categories",
|
|
31
|
-
taxonomy: categories
|
|
31
|
+
taxonomy: categories
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
name: "Brands",
|
|
@@ -94,7 +94,7 @@ taxons = [
|
|
|
94
94
|
taxonomy: categories,
|
|
95
95
|
parent: "Accessories",
|
|
96
96
|
products: [
|
|
97
|
-
products[:solidus_bottles]
|
|
97
|
+
products[:solidus_bottles]
|
|
98
98
|
]
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -105,14 +105,14 @@ taxons = [
|
|
|
105
105
|
products[:solidus_tshirt],
|
|
106
106
|
products[:solidus_dark_tee],
|
|
107
107
|
products[:solidus_long_sleeve_tee]
|
|
108
|
-
]
|
|
108
|
+
]
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
name: "Hoodies",
|
|
112
112
|
taxonomy: categories,
|
|
113
113
|
parent: "Clothing",
|
|
114
114
|
products: [
|
|
115
|
-
products[:solidus_hoodie]
|
|
115
|
+
products[:solidus_hoodie]
|
|
116
116
|
]
|
|
117
117
|
}
|
|
118
118
|
]
|
data/db/samples/variants.rb
CHANGED
data/lib/solidus_sample.rb
CHANGED
data/lib/spree/sample.rb
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
3
|
+
require "thor"
|
|
4
|
+
require "spree_core"
|
|
5
5
|
|
|
6
6
|
module Spree
|
|
7
7
|
module Sample
|
|
8
8
|
class << self
|
|
9
9
|
def load_sample(file, shell: Thor::Base.shell.new)
|
|
10
10
|
# If file is exists within application it takes precendence.
|
|
11
|
-
if File.exist?(File.join(Rails.root,
|
|
12
|
-
|
|
11
|
+
path = if File.exist?(File.join(Rails.root, "db", "samples", "#{file}.rb"))
|
|
12
|
+
File.expand_path(File.join(Rails.root, "db", "samples", "#{file}.rb"))
|
|
13
13
|
else
|
|
14
14
|
# Otherwise we will use this gems default file.
|
|
15
|
-
|
|
15
|
+
File.expand_path(samples_path + "#{file}.rb")
|
|
16
16
|
end
|
|
17
17
|
# Check to see if the specified file has been loaded before
|
|
18
18
|
unless $LOADED_FEATURES.include?(path)
|
|
@@ -24,7 +24,7 @@ module Spree
|
|
|
24
24
|
private
|
|
25
25
|
|
|
26
26
|
def samples_path
|
|
27
|
-
Pathname.new(File.join(File.dirname(__FILE__),
|
|
27
|
+
Pathname.new(File.join(File.dirname(__FILE__), "..", "..", "db", "samples"))
|
|
28
28
|
end
|
|
29
29
|
end
|
|
30
30
|
end
|
data/lib/spree_sample.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
3
|
+
require "spree_core"
|
|
4
|
+
require "spree/sample"
|
|
5
5
|
|
|
6
6
|
module SpreeSample
|
|
7
7
|
class Engine < Rails::Engine
|
|
8
|
-
engine_name
|
|
8
|
+
engine_name "spree_sample"
|
|
9
9
|
|
|
10
10
|
# Needs to be here so we can access it inside the tests
|
|
11
11
|
def self.load_samples
|
data/lib/tasks/sample.rake
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
3
|
+
require "pathname"
|
|
4
|
+
require "spree/sample"
|
|
5
5
|
|
|
6
6
|
namespace :spree_sample do
|
|
7
|
-
desc
|
|
7
|
+
desc "Loads sample data"
|
|
8
8
|
task load: :environment do
|
|
9
9
|
if ARGV.include?("db:migrate")
|
|
10
10
|
puts <<~TEXT
|
data/solidus_sample.gemspec
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative
|
|
3
|
+
require_relative "../core/lib/spree/core/version"
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
s.platform
|
|
7
|
-
s.name
|
|
8
|
-
s.version
|
|
9
|
-
s.summary
|
|
6
|
+
s.platform = Gem::Platform::RUBY
|
|
7
|
+
s.name = "solidus_sample"
|
|
8
|
+
s.version = Spree.solidus_version
|
|
9
|
+
s.summary = "Sample data (including images) for use with Solidus."
|
|
10
10
|
s.description = s.summary
|
|
11
11
|
|
|
12
|
-
s.author
|
|
13
|
-
s.email
|
|
14
|
-
s.homepage
|
|
15
|
-
s.license
|
|
12
|
+
s.author = "Solidus Team"
|
|
13
|
+
s.email = "contact@solidus.io"
|
|
14
|
+
s.homepage = "http://solidus.io"
|
|
15
|
+
s.license = "BSD-3-Clause"
|
|
16
16
|
|
|
17
|
-
s.metadata[
|
|
17
|
+
s.metadata["rubygems_mfa_required"] = "true"
|
|
18
18
|
|
|
19
19
|
s.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
20
20
|
f.match(%r{^(spec|script)/})
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
s.required_ruby_version =
|
|
24
|
-
s.required_rubygems_version =
|
|
23
|
+
s.required_ruby_version = ">= 3.2.0"
|
|
24
|
+
s.required_rubygems_version = ">= 1.8.23"
|
|
25
25
|
|
|
26
|
-
s.add_dependency
|
|
26
|
+
s.add_dependency "solidus_core", s.version
|
|
27
27
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_sample
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Solidus Team
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-04-15 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: solidus_core
|
|
@@ -15,14 +16,14 @@ dependencies:
|
|
|
15
16
|
requirements:
|
|
16
17
|
- - '='
|
|
17
18
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 4.
|
|
19
|
+
version: 4.7.0
|
|
19
20
|
type: :runtime
|
|
20
21
|
prerelease: false
|
|
21
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
23
|
requirements:
|
|
23
24
|
- - '='
|
|
24
25
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 4.
|
|
26
|
+
version: 4.7.0
|
|
26
27
|
description: Sample data (including images) for use with Solidus.
|
|
27
28
|
email: contact@solidus.io
|
|
28
29
|
executables: []
|
|
@@ -86,6 +87,7 @@ licenses:
|
|
|
86
87
|
- BSD-3-Clause
|
|
87
88
|
metadata:
|
|
88
89
|
rubygems_mfa_required: 'true'
|
|
90
|
+
post_install_message:
|
|
89
91
|
rdoc_options: []
|
|
90
92
|
require_paths:
|
|
91
93
|
- lib
|
|
@@ -93,14 +95,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
93
95
|
requirements:
|
|
94
96
|
- - ">="
|
|
95
97
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 3.
|
|
98
|
+
version: 3.2.0
|
|
97
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
100
|
requirements:
|
|
99
101
|
- - ">="
|
|
100
102
|
- !ruby/object:Gem::Version
|
|
101
103
|
version: 1.8.23
|
|
102
104
|
requirements: []
|
|
103
|
-
rubygems_version: 3.
|
|
105
|
+
rubygems_version: 3.5.22
|
|
106
|
+
signing_key:
|
|
104
107
|
specification_version: 4
|
|
105
108
|
summary: Sample data (including images) for use with Solidus.
|
|
106
109
|
test_files: []
|