magento 0.3.2 → 0.4.2
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/.github/workflows/gem-push.yml +42 -0
- data/README.md +267 -184
- data/lib/magento.rb +43 -35
- data/lib/magento/country.rb +5 -5
- data/lib/magento/customer.rb +13 -13
- data/lib/magento/model.rb +79 -79
- data/lib/magento/model_mapper.rb +4 -8
- data/lib/magento/product.rb +9 -7
- data/lib/magento/query.rb +16 -7
- data/lib/magento/record_collection.rb +44 -0
- data/lib/magento/request.rb +108 -103
- data/lib/magento/shared/address.rb +4 -4
- data/lib/magento/shared/available_regions.rb +4 -4
- data/lib/magento/shared/bundle_product_option.rb +4 -0
- data/lib/magento/shared/category_link.rb +6 -6
- data/lib/magento/shared/configurable_product_option.rb +4 -0
- data/lib/magento/shared/custom_attribute.rb +4 -4
- data/lib/magento/shared/extension_attribute.rb +3 -3
- data/lib/magento/shared/filter.rb +4 -0
- data/lib/magento/shared/filter_group.rb +4 -0
- data/lib/magento/shared/media_gallery_entry.rb +4 -4
- data/lib/magento/shared/option.rb +4 -4
- data/lib/magento/shared/product_link.rb +4 -4
- data/lib/magento/shared/region.rb +4 -4
- data/lib/magento/shared/search_criterium.rb +5 -0
- data/lib/magento/shared/stock_item.rb +3 -3
- data/lib/magento/shared/tier_price.rb +4 -4
- data/lib/magento/version.rb +3 -0
- data/magento-ruby.gemspec +22 -0
- data/magento.gemspec +6 -1
- metadata +14 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class Address
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class Address
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class AvailableRegion
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class AvailableRegion
|
3
|
+
end
|
4
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Magento
|
4
|
-
class CategoryLink
|
5
|
-
end
|
6
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Magento
|
4
|
+
class CategoryLink
|
5
|
+
end
|
6
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class CustomAttribute
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class CustomAttribute
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class ExtensionAttribute
|
3
|
-
end
|
1
|
+
module Magento
|
2
|
+
class ExtensionAttribute
|
3
|
+
end
|
4
4
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class MediaGalleryEntry
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class MediaGalleryEntry
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class Option
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class Option
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class ProductLink
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class ProductLink
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class Region
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class Region
|
3
|
+
end
|
4
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class StockItem
|
3
|
-
end
|
1
|
+
module Magento
|
2
|
+
class StockItem
|
3
|
+
end
|
4
4
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
module Magento
|
2
|
-
class TierPrice
|
3
|
-
end
|
4
|
-
end
|
1
|
+
module Magento
|
2
|
+
class TierPrice
|
3
|
+
end
|
4
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
|
6
|
+
require 'magento/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |s|
|
9
|
+
s.name = 'magento-ruby'
|
10
|
+
s.version = Magento::VERSION
|
11
|
+
s.date = '2020-07-31'
|
12
|
+
s.summary = 'Magento Ruby library'
|
13
|
+
s.description = 'Magento Ruby library'
|
14
|
+
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
15
|
+
s.authors = ['Wallas Faria']
|
16
|
+
s.email = 'wallasfaria@hotmail.com'
|
17
|
+
s.homepage = 'https://github.com/WallasFaria/magento-ruby'
|
18
|
+
s.require_paths = ['lib']
|
19
|
+
|
20
|
+
s.add_dependency 'dry-inflector', '~> 0.2.0'
|
21
|
+
s.add_dependency 'http', '~> 4.4'
|
22
|
+
end
|
data/magento.gemspec
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
|
6
|
+
require 'magento/version'
|
7
|
+
|
3
8
|
Gem::Specification.new do |s|
|
4
9
|
s.name = 'magento'
|
5
|
-
s.version =
|
10
|
+
s.version = Magento::VERSION
|
6
11
|
s.date = '2020-07-31'
|
7
12
|
s.summary = 'Magento Ruby library'
|
8
13
|
s.description = 'Magento Ruby library'
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: magento
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wallas Faria
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2020-07-31 00:00:00.000000000 Z
|
@@ -44,6 +44,7 @@ executables: []
|
|
44
44
|
extensions: []
|
45
45
|
extra_rdoc_files: []
|
46
46
|
files:
|
47
|
+
- ".github/workflows/gem-push.yml"
|
47
48
|
- ".gitignore"
|
48
49
|
- Gemfile
|
49
50
|
- README.md
|
@@ -57,12 +58,17 @@ files:
|
|
57
58
|
- lib/magento/order.rb
|
58
59
|
- lib/magento/product.rb
|
59
60
|
- lib/magento/query.rb
|
61
|
+
- lib/magento/record_collection.rb
|
60
62
|
- lib/magento/request.rb
|
61
63
|
- lib/magento/shared/address.rb
|
62
64
|
- lib/magento/shared/available_regions.rb
|
65
|
+
- lib/magento/shared/bundle_product_option.rb
|
63
66
|
- lib/magento/shared/category_link.rb
|
67
|
+
- lib/magento/shared/configurable_product_option.rb
|
64
68
|
- lib/magento/shared/custom_attribute.rb
|
65
69
|
- lib/magento/shared/extension_attribute.rb
|
70
|
+
- lib/magento/shared/filter.rb
|
71
|
+
- lib/magento/shared/filter_group.rb
|
66
72
|
- lib/magento/shared/item.rb
|
67
73
|
- lib/magento/shared/media_gallery_entry.rb
|
68
74
|
- lib/magento/shared/option.rb
|
@@ -70,17 +76,20 @@ files:
|
|
70
76
|
- lib/magento/shared/payment_additional_info.rb
|
71
77
|
- lib/magento/shared/product_link.rb
|
72
78
|
- lib/magento/shared/region.rb
|
79
|
+
- lib/magento/shared/search_criterium.rb
|
73
80
|
- lib/magento/shared/shipping.rb
|
74
81
|
- lib/magento/shared/shipping_assignment.rb
|
75
82
|
- lib/magento/shared/stock_item.rb
|
76
83
|
- lib/magento/shared/tier_price.rb
|
77
84
|
- lib/magento/shared/total.rb
|
78
85
|
- lib/magento/shared/value.rb
|
86
|
+
- lib/magento/version.rb
|
87
|
+
- magento-ruby.gemspec
|
79
88
|
- magento.gemspec
|
80
89
|
homepage: https://github.com/WallasFaria/magento-ruby
|
81
90
|
licenses: []
|
82
91
|
metadata: {}
|
83
|
-
post_install_message:
|
92
|
+
post_install_message:
|
84
93
|
rdoc_options: []
|
85
94
|
require_paths:
|
86
95
|
- lib
|
@@ -95,8 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
104
|
- !ruby/object:Gem::Version
|
96
105
|
version: '0'
|
97
106
|
requirements: []
|
98
|
-
rubygems_version: 3.0.
|
99
|
-
signing_key:
|
107
|
+
rubygems_version: 3.0.3
|
108
|
+
signing_key:
|
100
109
|
specification_version: 4
|
101
110
|
summary: Magento Ruby library
|
102
111
|
test_files: []
|