solidus_api 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 +8 -8
- data/app/controllers/spree/api/addresses_controller.rb +4 -3
- data/app/controllers/spree/api/base_controller.rb +9 -9
- data/app/controllers/spree/api/checkouts_controller.rb +6 -6
- data/app/controllers/spree/api/countries_controller.rb +5 -5
- data/app/controllers/spree/api/coupon_codes_controller.rb +4 -4
- data/app/controllers/spree/api/customer_returns_controller.rb +11 -11
- data/app/controllers/spree/api/inventory_units_controller.rb +4 -4
- data/app/controllers/spree/api/line_items_controller.rb +7 -7
- data/app/controllers/spree/api/option_types_controller.rb +3 -3
- data/app/controllers/spree/api/option_values_controller.rb +6 -6
- data/app/controllers/spree/api/orders_controller.rb +11 -11
- data/app/controllers/spree/api/payments_controller.rb +1 -1
- data/app/controllers/spree/api/product_properties_controller.rb +6 -6
- data/app/controllers/spree/api/products_controller.rb +11 -11
- data/app/controllers/spree/api/return_authorizations_controller.rb +5 -5
- data/app/controllers/spree/api/shipments_controller.rb +11 -11
- data/app/controllers/spree/api/states_controller.rb +2 -2
- data/app/controllers/spree/api/stock_items_controller.rb +3 -3
- data/app/controllers/spree/api/stock_locations_controller.rb +5 -5
- data/app/controllers/spree/api/taxonomies_controller.rb +9 -9
- data/app/controllers/spree/api/taxons_controller.rb +6 -6
- data/app/controllers/spree/api/variants_controller.rb +4 -4
- data/app/controllers/spree/api/zones_controller.rb +5 -5
- data/app/views/spree/api/addresses/_address.json.jbuilder +3 -3
- data/app/views/spree/api/adjustments/_adjustment.json.jbuilder +1 -1
- data/app/views/spree/api/countries/index.json.jbuilder +2 -2
- data/app/views/spree/api/countries/show.json.jbuilder +2 -2
- data/app/views/spree/api/credit_cards/_credit_card.json.jbuilder +1 -1
- data/app/views/spree/api/credit_cards/index.json.jbuilder +1 -1
- data/app/views/spree/api/customer_returns/index.json.jbuilder +2 -2
- data/app/views/spree/api/customer_returns/show.json.jbuilder +1 -1
- data/app/views/spree/api/errors/invalid_api_key.json.jbuilder +1 -1
- data/app/views/spree/api/images/_image.json.jbuilder +2 -2
- data/app/views/spree/api/inventory_units/show.json.jbuilder +1 -1
- data/app/views/spree/api/line_items/_line_item.json.jbuilder +2 -2
- data/app/views/spree/api/option_types/_option_type.json.jbuilder +2 -2
- data/app/views/spree/api/option_values/_option_value.json.jbuilder +1 -1
- data/app/views/spree/api/orders/_big.json.jbuilder +3 -3
- data/app/views/spree/api/orders/_order.json.jbuilder +1 -1
- data/app/views/spree/api/orders/index.json.jbuilder +1 -1
- data/app/views/spree/api/orders/mine.json.jbuilder +1 -1
- data/app/views/spree/api/payments/credit_over_limit.json.jbuilder +1 -1
- data/app/views/spree/api/payments/index.json.jbuilder +2 -2
- data/app/views/spree/api/payments/new.json.jbuilder +1 -1
- data/app/views/spree/api/payments/show.json.jbuilder +1 -1
- data/app/views/spree/api/payments/source_views/_gateway.json.jbuilder +1 -1
- data/app/views/spree/api/payments/source_views/_store_credit.json.jbuilder +1 -1
- data/app/views/spree/api/payments/update_forbidden.json.jbuilder +1 -1
- data/app/views/spree/api/product_properties/index.json.jbuilder +2 -2
- data/app/views/spree/api/product_properties/show.json.jbuilder +1 -1
- data/app/views/spree/api/products/_product.json.jbuilder +5 -5
- data/app/views/spree/api/products/index.json.jbuilder +1 -1
- data/app/views/spree/api/promotions/show.json.jbuilder +1 -1
- data/app/views/spree/api/properties/index.json.jbuilder +2 -2
- data/app/views/spree/api/properties/show.json.jbuilder +1 -1
- data/app/views/spree/api/return_authorizations/index.json.jbuilder +2 -2
- data/app/views/spree/api/return_authorizations/show.json.jbuilder +1 -1
- data/app/views/spree/api/shared/_pagination.json.jbuilder +4 -4
- data/app/views/spree/api/shipments/_big.json.jbuilder +7 -7
- data/app/views/spree/api/shipments/_small.json.jbuilder +4 -4
- data/app/views/spree/api/shipments/estimated_rates.json.jbuilder +1 -1
- data/app/views/spree/api/shipments/mine.json.jbuilder +1 -1
- data/app/views/spree/api/shipments/show.json.jbuilder +4 -4
- data/app/views/spree/api/shipping_rates/_shipping_rate.json.jbuilder +1 -1
- data/app/views/spree/api/states/index.json.jbuilder +2 -2
- data/app/views/spree/api/states/show.json.jbuilder +1 -1
- data/app/views/spree/api/stock_items/_stock_item.json.jbuilder +1 -1
- data/app/views/spree/api/stock_items/index.json.jbuilder +1 -1
- data/app/views/spree/api/stock_locations/_stock_location.json.jbuilder +3 -3
- data/app/views/spree/api/stock_locations/index.json.jbuilder +1 -1
- data/app/views/spree/api/stock_movements/_stock_movement.json.jbuilder +1 -1
- data/app/views/spree/api/stock_movements/index.json.jbuilder +1 -1
- data/app/views/spree/api/store_credit_events/mine.json.jbuilder +2 -2
- data/app/views/spree/api/stores/index.json.jbuilder +1 -1
- data/app/views/spree/api/stores/show.json.jbuilder +1 -1
- data/app/views/spree/api/taxonomies/_nested.json.jbuilder +3 -3
- data/app/views/spree/api/taxonomies/_taxonomy.json.jbuilder +3 -3
- data/app/views/spree/api/taxonomies/index.json.jbuilder +1 -1
- data/app/views/spree/api/taxons/_taxon.json.jbuilder +2 -2
- data/app/views/spree/api/taxons/_taxons.json.jbuilder +1 -1
- data/app/views/spree/api/taxons/index.json.jbuilder +2 -2
- data/app/views/spree/api/users/_user.json.jbuilder +1 -1
- data/app/views/spree/api/users/index.json.jbuilder +1 -1
- data/app/views/spree/api/variants/_big.json.jbuilder +3 -3
- data/app/views/spree/api/variants/_small.json.jbuilder +2 -2
- data/app/views/spree/api/variants/index.json.jbuilder +1 -1
- data/app/views/spree/api/zones/_zone.json.jbuilder +2 -2
- data/app/views/spree/api/zones/index.json.jbuilder +1 -1
- data/config/routes.rb +9 -9
- data/lib/solidus_api.rb +1 -1
- data/lib/spree/api/config.rb +1 -1
- data/lib/spree/api/engine.rb +4 -4
- data/lib/spree/api/responders.rb +2 -2
- data/lib/spree/api/testing_support/helpers.rb +3 -3
- data/lib/spree/api/testing_support/setup.rb +1 -1
- data/lib/spree/api.rb +2 -2
- data/lib/spree/api_configuration.rb +8 -8
- data/lib/spree_api.rb +3 -3
- data/solidus_api.gemspec +16 -16
- metadata +9 -6
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
json.stock_locations(@stock_locations) do |stock_location|
|
|
4
4
|
json.partial!("spree/api/stock_locations/stock_location", stock_location:)
|
|
5
5
|
end
|
|
6
|
-
json.partial!
|
|
6
|
+
json.partial! "spree/api/shared/pagination", pagination: @stock_locations
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
json.stock_movements(@stock_movements) do |stock_movement|
|
|
4
4
|
json.partial!("spree/api/stock_movements/stock_movement", stock_movement:)
|
|
5
5
|
end
|
|
6
|
-
json.partial!
|
|
6
|
+
json.partial! "spree/api/shared/pagination", pagination: @stock_movements
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
json.store_credit_events(@store_credit_events) do |store_credit_event|
|
|
4
|
-
json.(store_credit_event, *store_credit_history_attributes)
|
|
4
|
+
json.call(store_credit_event, *store_credit_history_attributes)
|
|
5
5
|
json.order_number(store_credit_event.order.try(:number))
|
|
6
6
|
end
|
|
7
|
-
json.partial!
|
|
7
|
+
json.partial! "spree/api/shared/pagination", pagination: @store_credit_events
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
json.(taxonomy, *taxonomy_attributes)
|
|
3
|
+
json.call(taxonomy, *taxonomy_attributes)
|
|
4
4
|
json.root do
|
|
5
|
-
json.(taxonomy.root, *taxon_attributes)
|
|
5
|
+
json.call(taxonomy.root, *taxon_attributes)
|
|
6
6
|
json.taxons(taxonomy.root.children) do |taxon|
|
|
7
|
-
json.(taxon, *taxon_attributes)
|
|
7
|
+
json.call(taxon, *taxon_attributes)
|
|
8
8
|
json.partial!("spree/api/taxons/taxons", taxon:)
|
|
9
9
|
end
|
|
10
10
|
end
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
if params[:set] == "nested"
|
|
4
4
|
json.partial!("spree/api/taxonomies/nested", taxonomy:)
|
|
5
5
|
else
|
|
6
|
-
json.(taxonomy, *taxonomy_attributes)
|
|
6
|
+
json.call(taxonomy, *taxonomy_attributes)
|
|
7
7
|
json.root do
|
|
8
|
-
json.(taxonomy.root, *taxon_attributes)
|
|
8
|
+
json.call(taxonomy.root, *taxon_attributes)
|
|
9
9
|
json.taxons(taxonomy.root.children) do |taxon|
|
|
10
|
-
json.(taxon, *taxon_attributes)
|
|
10
|
+
json.call(taxon, *taxon_attributes)
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
end
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
json.partial!
|
|
3
|
+
json.partial! "spree/api/shared/pagination", pagination: @taxons
|
|
4
4
|
json.taxons(@taxons) do |taxon|
|
|
5
|
-
json.(taxon, *taxon_attributes)
|
|
5
|
+
json.call(taxon, *taxon_attributes)
|
|
6
6
|
unless params[:without_children]
|
|
7
7
|
json.partial!("spree/api/taxons/taxons", taxon:)
|
|
8
8
|
end
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
json.cache! [I18n.locale, Spree::StockLocation.accessible_by(current_ability), variant] do
|
|
4
|
-
json.(variant, *variant_attributes)
|
|
4
|
+
json.call(variant, *variant_attributes)
|
|
5
5
|
json.partial!("spree/api/variants/small", variant:)
|
|
6
6
|
json.variant_properties(variant.variant_properties) do |variant_property|
|
|
7
|
-
json.(variant_property, *variant_property_attributes)
|
|
7
|
+
json.call(variant_property, *variant_property_attributes)
|
|
8
8
|
end
|
|
9
9
|
json.stock_items(variant.stock_items.accessible_by(current_ability)) do |stock_item|
|
|
10
|
-
json.(stock_item, :id, :count_on_hand, :stock_location_id, :backorderable)
|
|
10
|
+
json.call(stock_item, :id, :count_on_hand, :stock_location_id, :backorderable)
|
|
11
11
|
json.available stock_item.available?
|
|
12
12
|
json.stock_location_name(stock_item.stock_location.name)
|
|
13
13
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
json.cache! [I18n.locale, current_pricing_options, variant] do
|
|
4
|
-
json.(variant, *variant_attributes)
|
|
4
|
+
json.call(variant, *variant_attributes)
|
|
5
5
|
json.price(variant.price_for_options(current_pricing_options)&.amount)
|
|
6
6
|
json.display_price(variant.price_for_options(current_pricing_options)&.money&.to_s)
|
|
7
7
|
json.options_text(variant.options_text)
|
|
@@ -13,7 +13,7 @@ json.cache! [I18n.locale, current_pricing_options, variant] do
|
|
|
13
13
|
|
|
14
14
|
json.is_destroyed(variant.destroyed?)
|
|
15
15
|
json.option_values(variant.option_values) do |option_value|
|
|
16
|
-
json.(option_value, *option_value_attributes)
|
|
16
|
+
json.call(option_value, *option_value_attributes)
|
|
17
17
|
end
|
|
18
18
|
json.images(variant.gallery.images) do |image|
|
|
19
19
|
json.partial!("spree/api/images/image", image:)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
json.(zone, :id, :name, :description)
|
|
3
|
+
json.call(zone, :id, :name, :description)
|
|
4
4
|
json.zone_members(zone.zone_members) do |zone_member|
|
|
5
|
-
json.(zone_member, :id, :name, :zoneable_type, :zoneable_id)
|
|
5
|
+
json.call(zone_member, :id, :name, :zoneable_type, :zoneable_id)
|
|
6
6
|
end
|
data/config/routes.rb
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
Spree::Core::Engine.routes.draw do
|
|
4
4
|
namespace :admin do
|
|
5
5
|
resources :users do
|
|
6
|
-
resource :api_key, controller:
|
|
6
|
+
resource :api_key, controller: "users/api_key", only: [:create, :destroy]
|
|
7
7
|
end
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
namespace :api, defaults: {
|
|
10
|
+
namespace :api, defaults: {format: "json"} do
|
|
11
11
|
resources :promotions, only: [:show]
|
|
12
12
|
|
|
13
13
|
resources :products do
|
|
@@ -58,7 +58,7 @@ Spree::Core::Engine.routes.draw do
|
|
|
58
58
|
end
|
|
59
59
|
resources :option_values, only: :index
|
|
60
60
|
|
|
61
|
-
get
|
|
61
|
+
get "/orders/mine", to: "orders#mine", as: "my_orders"
|
|
62
62
|
get "/orders/current", to: "orders#current", as: "current_order"
|
|
63
63
|
|
|
64
64
|
resources :orders, concerns: :order_routes do
|
|
@@ -77,8 +77,8 @@ Spree::Core::Engine.routes.draw do
|
|
|
77
77
|
|
|
78
78
|
resources :shipments, only: [:create, :update] do
|
|
79
79
|
collection do
|
|
80
|
-
post
|
|
81
|
-
post
|
|
80
|
+
post "transfer_to_location"
|
|
81
|
+
post "transfer_to_shipment"
|
|
82
82
|
get :mine
|
|
83
83
|
end
|
|
84
84
|
|
|
@@ -125,9 +125,9 @@ Spree::Core::Engine.routes.draw do
|
|
|
125
125
|
end
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
-
get
|
|
129
|
-
get
|
|
130
|
-
put
|
|
131
|
-
get
|
|
128
|
+
get "/config/money", to: "config#money"
|
|
129
|
+
get "/config", to: "config#show"
|
|
130
|
+
put "/classifications", to: "classifications#update", as: :classifications
|
|
131
|
+
get "/taxons/products", to: "taxons#products", as: :taxon_products
|
|
132
132
|
end
|
|
133
133
|
end
|
data/lib/solidus_api.rb
CHANGED
data/lib/spree/api/config.rb
CHANGED
data/lib/spree/api/engine.rb
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
3
|
+
require "spree/api/config"
|
|
4
4
|
|
|
5
5
|
module Spree
|
|
6
6
|
module Api
|
|
7
7
|
class Engine < Rails::Engine
|
|
8
8
|
isolate_namespace Spree
|
|
9
|
-
engine_name
|
|
9
|
+
engine_name "spree_api"
|
|
10
10
|
|
|
11
11
|
# Leave initializer empty for backwards-compatibility. Other apps
|
|
12
12
|
# might still rely on this event.
|
|
13
|
-
initializer
|
|
13
|
+
initializer("spree.api.environment", before: :load_config_initializers) {}
|
|
14
14
|
|
|
15
15
|
config.after_initialize do
|
|
16
|
-
Spree::Api::Config.check_load_defaults_called(
|
|
16
|
+
Spree::Api::Config.check_load_defaults_called("Spree::Api::Config")
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
19
|
end
|
data/lib/spree/api/responders.rb
CHANGED
|
@@ -14,12 +14,12 @@ module Spree
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
def assert_not_found!
|
|
17
|
-
expect(json_response).to eq({
|
|
17
|
+
expect(json_response).to eq({"error" => "The resource you were looking for could not be found."})
|
|
18
18
|
expect(response.status).to eq 404
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
def assert_unauthorized!
|
|
22
|
-
expect(json_response).to eq({
|
|
22
|
+
expect(json_response).to eq({"error" => "You are not authorized to perform that action."})
|
|
23
23
|
expect(response.status).to eq 401
|
|
24
24
|
end
|
|
25
25
|
|
|
@@ -47,7 +47,7 @@ module Spree
|
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
def upload_image(filename)
|
|
50
|
-
Rack::Test::UploadedFile.new(File.open(image(filename).path),
|
|
50
|
+
Rack::Test::UploadedFile.new(File.open(image(filename).path), "image/jpeg")
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
end
|
|
@@ -6,7 +6,7 @@ module Spree
|
|
|
6
6
|
module Setup
|
|
7
7
|
def sign_in_as_admin!
|
|
8
8
|
let!(:current_api_user) do
|
|
9
|
-
stub_model(Spree::LegacyUser, spree_roles: [Spree::Role.find_or_initialize_by(name:
|
|
9
|
+
stub_model(Spree::LegacyUser, spree_roles: [Spree::Role.find_or_initialize_by(name: "admin")])
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
end
|
data/lib/spree/api.rb
CHANGED
|
@@ -44,13 +44,13 @@ module Spree
|
|
|
44
44
|
# Spree::Api::Config.metadata_api_parameters contains the models
|
|
45
45
|
# to which the admin_metadata attribute is added
|
|
46
46
|
preference :metadata_api_parameters, :array, default: [
|
|
47
|
-
[:order,
|
|
48
|
-
[:customer_return,
|
|
49
|
-
[:payment,
|
|
50
|
-
[:return_authorization,
|
|
51
|
-
[:shipment,
|
|
52
|
-
[:user,
|
|
53
|
-
[:line_item,
|
|
47
|
+
[:order, "Spree::Order"],
|
|
48
|
+
[:customer_return, "Spree::CustomerReturn"],
|
|
49
|
+
[:payment, "Spree::Payment"],
|
|
50
|
+
[:return_authorization, "Spree::ReturnAuthorization"],
|
|
51
|
+
[:shipment, "Spree::Shipment"],
|
|
52
|
+
[:user, "Spree.user_class"],
|
|
53
|
+
[:line_item, "Spree::LineItem"]
|
|
54
54
|
]
|
|
55
55
|
|
|
56
56
|
# Spree::Api::Config.metadata_permit_parameters contains the models
|
|
@@ -144,7 +144,7 @@ module Spree
|
|
|
144
144
|
end
|
|
145
145
|
alias_method :preferred_promotion_attributes=, :promotion_attributes=
|
|
146
146
|
promotion_attributes_deprecation_message = "Spree::ApiConfiguration#promotion_attributes= is deprecated. Please use Spree::Config.promotions.promotion_api_attributes= instead."
|
|
147
|
-
deprecate "promotion_attributes=" => promotion_attributes_deprecation_message, deprecator
|
|
147
|
+
deprecate "promotion_attributes=" => promotion_attributes_deprecation_message, :deprecator => Spree.deprecator
|
|
148
148
|
|
|
149
149
|
preference :store_attributes, :array, default: [
|
|
150
150
|
:id, :name, :url, :meta_description, :meta_keywords, :seo_title,
|
data/lib/spree_api.rb
CHANGED
data/solidus_api.gemspec
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
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_api"
|
|
8
|
+
s.version = Spree.solidus_version
|
|
9
|
+
s.summary = "REST API for the Solidus e-commerce framework."
|
|
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|bin)/})
|
|
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
|
|
27
|
-
s.add_dependency
|
|
28
|
-
s.add_dependency
|
|
29
|
-
s.add_dependency
|
|
26
|
+
s.add_dependency "jbuilder", "~> 2.8"
|
|
27
|
+
s.add_dependency "kaminari-activerecord", "~> 1.1"
|
|
28
|
+
s.add_dependency "responders"
|
|
29
|
+
s.add_dependency "solidus_core", s.version
|
|
30
30
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_api
|
|
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: jbuilder
|
|
@@ -57,14 +58,14 @@ dependencies:
|
|
|
57
58
|
requirements:
|
|
58
59
|
- - '='
|
|
59
60
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 4.
|
|
61
|
+
version: 4.7.0
|
|
61
62
|
type: :runtime
|
|
62
63
|
prerelease: false
|
|
63
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
65
|
requirements:
|
|
65
66
|
- - '='
|
|
66
67
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 4.
|
|
68
|
+
version: 4.7.0
|
|
68
69
|
description: REST API for the Solidus e-commerce framework.
|
|
69
70
|
email: contact@solidus.io
|
|
70
71
|
executables: []
|
|
@@ -256,6 +257,7 @@ licenses:
|
|
|
256
257
|
- BSD-3-Clause
|
|
257
258
|
metadata:
|
|
258
259
|
rubygems_mfa_required: 'true'
|
|
260
|
+
post_install_message:
|
|
259
261
|
rdoc_options: []
|
|
260
262
|
require_paths:
|
|
261
263
|
- lib
|
|
@@ -263,14 +265,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
263
265
|
requirements:
|
|
264
266
|
- - ">="
|
|
265
267
|
- !ruby/object:Gem::Version
|
|
266
|
-
version: 3.
|
|
268
|
+
version: 3.2.0
|
|
267
269
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
270
|
requirements:
|
|
269
271
|
- - ">="
|
|
270
272
|
- !ruby/object:Gem::Version
|
|
271
273
|
version: 1.8.23
|
|
272
274
|
requirements: []
|
|
273
|
-
rubygems_version: 3.
|
|
275
|
+
rubygems_version: 3.5.22
|
|
276
|
+
signing_key:
|
|
274
277
|
specification_version: 4
|
|
275
278
|
summary: REST API for the Solidus e-commerce framework.
|
|
276
279
|
test_files: []
|