orderspace-ruby 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab5e3c865f82ea7b2797a52f607b6460da31a21564e87dd737500345640c179d
4
- data.tar.gz: 72c899077ef985f60547a3d3f51bac54667c80ac15f9dabb67c95468f70c2c6c
3
+ metadata.gz: da8a85546356dfb5f819131bb63171a2c95ca5d4a18eec5a7f14fb1817609c98
4
+ data.tar.gz: 1c049a3b881ad6660f48737de3620e678a1919567546a03c84510d0c758a38ec
5
5
  SHA512:
6
- metadata.gz: b4e33f5a8bb0e08247db43c0fab02f319eb7319801d23431d3c7291974fb5de664d61e7ab954dad568cbf3f8e57978e5cfb08e28d60306241ef63130309de944
7
- data.tar.gz: 0f32c14f8b8d0fcc24a5187e45011d5a89500fff6c2383d2306bd26cac2124465b70b9c558efa50b9a96eacd801fca7c9b33da25f6f400abd4275a9810da5018
6
+ metadata.gz: c024e2aa640b7ac183a60611aaf75d50b266a5917e48ac9c7695f58f148cf3d28f864f7701df41a5c81f37261fa22afd9dca653cc27759e11b811352cf2ebf13
7
+ data.tar.gz: d9a01e9ebd761cc36d25721a7735ca7016d1a386615788e91524a04f052c8bf2ffe4df3cb478d521eb704f633ba7d980b9979f5f5be1c062dc43ed7779b85095
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2024-12-22
4
+
5
+ - Changed ownership to me (ecomba)
6
+
3
7
  ## [0.1.0] - 2022-12-01
4
8
 
5
9
  - Initial release connecting to the oauth, customers and orders endpoints as well as parsing webhook events.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- orderspace-ruby (0.1.0)
4
+ orderspace-ruby (0.1.2)
5
5
  httparty (= 0.20.0)
6
6
 
7
7
  GEM
@@ -19,9 +19,11 @@ GEM
19
19
  mime-types (~> 3.0)
20
20
  multi_xml (>= 0.5.2)
21
21
  json (2.6.2)
22
- mime-types (3.4.1)
22
+ logger (1.6.4)
23
+ mime-types (3.6.0)
24
+ logger
23
25
  mime-types-data (~> 3.2015)
24
- mime-types-data (3.2022.0105)
26
+ mime-types-data (3.2024.1203)
25
27
  multi_xml (0.6.0)
26
28
  parallel (1.22.1)
27
29
  parser (3.1.3.0)
@@ -77,6 +79,7 @@ GEM
77
79
 
78
80
  PLATFORMS
79
81
  arm64-darwin-21
82
+ arm64-darwin-24
80
83
 
81
84
  DEPENDENCIES
82
85
  orderspace-ruby!
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Bean Mind Orderspace Ruby Client
1
+ # Orderspace Ruby Client
2
2
 
3
3
  :bomb: **This gem is under development, USE AT YOUR OWN RISK**
4
4
 
@@ -36,7 +36,7 @@ client = Orderspace::Client.with(client_id, client_secret)
36
36
 
37
37
  This will use the OAuth endpoint to grab the `auth token` and insert it in the headers for each subsequent call to the API.
38
38
 
39
- Please note that Orderspace's Auth tokens work for a limited time.
39
+ Please note that Orderspace's Auth tokens work for a limited time.
40
40
 
41
41
  :warning: DO NOT STORE YOUR AUTH TOKEN AS IT MIGHT NOT WORK IN LATER REQUESTS! :warning:
42
42
 
@@ -187,11 +187,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
187
187
 
188
188
  ## Code of Conduct
189
189
 
190
- Everyone interacting in the Orderspace::Ruby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bean-mind/orderspace-ruby/blob/main/CODE_OF_CONDUCT.md).
191
-
192
- ## Bean Mind
193
-
194
- This gem was created by [Bean Mind](https://beanmind.com) as part of the [Orderspace](https://www.orderspace.com) integration work
195
- in our product.
196
-
197
- ![Bean Mind](beanmind.svg)
190
+ Everyone interacting in the Orderspace::Ruby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ecomba/orderspace-ruby/blob/main/CODE_OF_CONDUCT.md).
@@ -9,6 +9,6 @@ module Orderspace
9
9
  BASE_URL = 'https://api.orderspace.com/'
10
10
 
11
11
  # Default User-Agent header
12
- USER_AGENT = "beanmind-orderspace-ruby/#{VERSION}".freeze
12
+ USER_AGENT = "orderspace-ruby/#{VERSION}".freeze
13
13
  end
14
14
  end
@@ -3,5 +3,5 @@
3
3
  module Orderspace
4
4
  ##
5
5
  # The current version of this gem
6
- VERSION = '0.1.0'
6
+ VERSION = '0.1.2'
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orderspace-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Enrique Comba Riepenhausen
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2022-12-08 00:00:00.000000000 Z
10
+ date: 2024-12-27 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: httparty
@@ -27,7 +26,7 @@ dependencies:
27
26
  description: The orderspace ruby client allows you to connect to orderspace using
28
27
  Ruby
29
28
  email:
30
- - enrique@beanmind.com
29
+ - enrique@ecomba.pro
31
30
  executables: []
32
31
  extensions: []
33
32
  extra_rdoc_files: []
@@ -41,7 +40,6 @@ files:
41
40
  - LICENSE.txt
42
41
  - README.md
43
42
  - Rakefile
44
- - beanmind.svg
45
43
  - lib/orderspace.rb
46
44
  - lib/orderspace/client.rb
47
45
  - lib/orderspace/default.rb
@@ -62,14 +60,13 @@ files:
62
60
  - lib/orderspace/structs.rb
63
61
  - lib/orderspace/version.rb
64
62
  - orderspace-logo.png
65
- homepage: https://github.com/bean-mind/orderspace-ruby
63
+ homepage: https://github.com/ecomba/orderspace-ruby
66
64
  licenses:
67
65
  - MIT
68
66
  metadata:
69
- homepage_uri: https://github.com/bean-mind/orderspace-ruby
70
- source_code_uri: https://github.com/bean-mind/orderspace-ruby
71
- changelog_uri: https://github.com/bean-mind/orderspace-ruby/CHANGELOG.md
72
- post_install_message:
67
+ homepage_uri: https://github.com/ecomba/orderspace-ruby
68
+ source_code_uri: https://github.com/ecomba/orderspace-ruby
69
+ changelog_uri: https://github.com/ecomba/orderspace-ruby/CHANGELOG.md
73
70
  rdoc_options: []
74
71
  require_paths:
75
72
  - lib
@@ -84,8 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
81
  - !ruby/object:Gem::Version
85
82
  version: '0'
86
83
  requirements: []
87
- rubygems_version: 3.3.7
88
- signing_key:
84
+ rubygems_version: 3.6.0
89
85
  specification_version: 4
90
86
  summary: Connect to your Orderspace API with ruby
91
87
  test_files: []
data/beanmind.svg DELETED
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg width="100%" height="100%" viewBox="0 0 284 283" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-miterlimit:1.5;">
4
- <g transform="matrix(1,0,0,1,-374.926,-351.162)">
5
- <g id="Brain-mesh" serif:id="Brain mesh">
6
- <g id="Layer1">
7
- <path d="M450.335,633.979L514.98,576.351L563.917,575.572L586,534.937L636.823,533.51L658.665,477.801L628.127,429.901L552.961,397.447L499.215,401.398L397.477,437.725L374.926,476.631L381.042,514.036L407.483,541.91L415.115,565.172L454.579,571.421L450.335,633.979ZM456.153,622.094L459.877,567.198L418.913,560.712C418.913,560.712 411.884,539.284 411.884,539.284L385.728,511.711C385.728,511.711 380.149,477.59 380.149,477.59C380.149,477.59 400.884,441.818 400.884,441.818C400.884,441.818 500.257,406.335 500.257,406.335C500.257,406.335 552.104,402.523 552.104,402.523C552.104,402.523 624.736,433.883 624.736,433.883C624.736,433.883 653.082,478.344 653.082,478.344C653.082,478.344 633.376,528.605 633.376,528.605C633.376,528.605 582.982,530.019 582.982,530.019L560.918,570.619C560.918,570.619 513.041,571.381 513.041,571.381L456.153,622.094Z" style="fill:rgb(95,95,95);"/>
8
- </g>
9
- <g id="Layer2">
10
- <path d="M478.422,570.959L516.796,552.829L584.264,533.059L655.034,475.462L599.569,449.102L555.293,402.349L534.806,460.234L599.569,449.102L584.264,533.059L534.806,460.234L488.559,513.955L584.264,533.059L488.559,513.955L430.706,513.955L378.63,478.007L430.706,513.955L458.785,448.169L398.684,441.01L458.785,448.169L500.022,402.893L458.785,448.169L534.806,460.234L458.785,448.169L488.559,513.955L430.706,513.955L408.262,538.765L458.087,568.187L488.559,513.955L478.422,570.959Z" style="fill:none;stroke:rgb(95,95,95);stroke-width:4px;"/>
11
- <path d="M454.579,626.514L478.422,570.959L489.303,515.713L514.98,552.834L514.98,570.959" style="fill:none;stroke:rgb(95,95,95);stroke-width:4px;"/>
12
- </g>
13
- </g>
14
- <g id="Circles">
15
- <g transform="matrix(-0.000954338,0.781568,-0.781568,-0.000954338,429.901,516.847)">
16
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(102,153,153);stroke:rgb(95,95,95);stroke-width:7.68px;stroke-linecap:round;stroke-linejoin:round;"/>
17
- </g>
18
- <g transform="matrix(-0.175695,0.98794,-0.98794,-0.175695,488.453,511.672)">
19
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(255,102,51);stroke:rgb(95,95,95);stroke-width:5.98px;stroke-linecap:round;stroke-linejoin:round;"/>
20
- </g>
21
- <g transform="matrix(-0.0115577,0.776699,-0.776699,-0.0115577,458.546,449.12)">
22
- <circle cx="0" cy="0" r="9.492" style="fill:white;stroke:rgb(95,95,95);stroke-width:7.72px;stroke-linecap:round;stroke-linejoin:round;"/>
23
- </g>
24
- <g transform="matrix(-0.0115577,0.776699,-0.776699,-0.0115577,540,386.276)">
25
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(0,255,51);stroke:rgb(95,95,95);stroke-width:7.72px;stroke-linecap:round;stroke-linejoin:round;"/>
26
- </g>
27
- <g transform="matrix(-0.0115577,0.776699,-0.776699,-0.0115577,565.31,361.535)">
28
- <circle cx="0" cy="0" r="9.492" style="fill:white;stroke:rgb(95,95,95);stroke-width:7.72px;stroke-linecap:round;stroke-linejoin:round;"/>
29
- </g>
30
- <g transform="matrix(-0.088091,1.23528,-1.23528,-0.088091,534.681,459.842)">
31
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(255,0,153);stroke:rgb(95,95,95);stroke-width:4.84px;stroke-linecap:round;stroke-linejoin:round;"/>
32
- </g>
33
- <g transform="matrix(0.0737842,1.12488,-1.12488,0.0737842,499.078,404.349)">
34
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(255,102,51);stroke:rgb(95,95,95);stroke-width:5.32px;stroke-linecap:round;stroke-linejoin:round;"/>
35
- </g>
36
- <g transform="matrix(0.0737842,1.12488,-1.12488,0.0737842,589.89,386.747)">
37
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(255,0,153);stroke:rgb(95,95,95);stroke-width:5.32px;stroke-linecap:round;stroke-linejoin:round;"/>
38
- </g>
39
- <g transform="matrix(-0.105076,0.878331,-0.878331,-0.105076,599.664,450.617)">
40
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(102,153,153);stroke:rgb(95,95,95);stroke-width:6.78px;stroke-linecap:round;stroke-linejoin:round;"/>
41
- </g>
42
- <g transform="matrix(-0.0781548,1.05963,-1.05963,-0.0781548,582.768,531.351)">
43
- <circle cx="0" cy="0" r="9.492" style="fill:rgb(0,255,51);stroke:rgb(95,95,95);stroke-width:5.65px;stroke-linecap:round;stroke-linejoin:round;"/>
44
- </g>
45
- <g transform="matrix(-0.0115577,0.776699,-0.776699,-0.0115577,452.99,571.176)">
46
- <circle cx="0" cy="0" r="9.492" style="fill:white;stroke:rgb(95,95,95);stroke-width:7.72px;stroke-linecap:round;stroke-linejoin:round;"/>
47
- </g>
48
- </g>
49
- </g>
50
- </svg>