arux_app 3.0.1 → 3.0.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: 85bcc4d2383ab3ad7c4cca9f53e8fbb2d9ee68dfe57f74fdaa8d1fa131c18765
4
- data.tar.gz: af59717d95e085489abf6ca4d168f7728778bd7be1140fceb437c4e7345680af
3
+ metadata.gz: 4cc3f9946effdeeabf0b2c6a0489dc34ddc3aa55446b7ce4d6ceaee516566184
4
+ data.tar.gz: 98f5538749cb2b61b6d46c621d558e913d32d9f0a85f4dbc416a7a71dfdb901f
5
5
  SHA512:
6
- metadata.gz: 40e9a3479f77e03d7b9b380e6fcdcababc48c2dcfc1fe33cee00e14005b948b138f96934189cd8e1becbcef8d0aa71c54a9f57893b3431a145ecfeddf39c5f83
7
- data.tar.gz: 44cca7dee5a4b84d4bbb550201cecddc932089d7f41c20f9624fda36d4ae4440c3fab817c939315403e1953e7afc6fc0538900b5f5d4cea0ffe1a50ddd38d420
6
+ metadata.gz: 6a8fd830eb9418158f20a8ad2f6300b9a0cbbd902108f36e77165acd0a6fd7ab91ea19153e8c4947e78b9aa7ced0c8df6a470012105e42ae66fffdfb3c7a0dbf
7
+ data.tar.gz: 3dcaebf62e9fd8c5981f6a0356a3829ea67e132a2db09f88ca0574f3509d7184590ae4927c6ca6ea2aa8fb4fac70a65b5024e44ece81318549108404341b34e6
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "arux_app"
7
- spec.version = "3.0.1"
7
+ spec.version = "3.0.2"
8
8
  spec.authors = ["Arux Software"]
9
9
  spec.email = ["sheuer@aruxsoftware.com"]
10
10
  spec.summary = "Ruby gem for interacting with the Arux.app Switchboard APIs."
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
16
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
17
  spec.require_paths = ["lib"]
18
-
18
+
19
19
  spec.add_runtime_dependency "httpi", "~> 3.0"
20
20
  spec.add_runtime_dependency "json", ">= 0"
21
21
 
@@ -98,7 +98,7 @@ module AruxApp
98
98
  end
99
99
 
100
100
  def registration_url
101
- %(#{public_uri}/users/registrations?client_id=#{self.client_id}&redirect_uri=#{self.redirect_uri}&district=#{self.district_subdomain})
101
+ %(#{public_uri}/users/sign_up?district=#{self.district_subdomain})
102
102
  end
103
103
 
104
104
  def access_token(code)
data/lib/arux_app.rb CHANGED
@@ -6,9 +6,9 @@ HOSTNAME = if ENV.has_key?("DEV_HOST")
6
6
  `hostname`.downcase.strip
7
7
  end
8
8
 
9
- require "rubygems"
10
- require "httpi"
11
- require "json"
9
+ require 'rubygems'
10
+ require 'httpi'
11
+ require 'json'
12
12
  require "arux_app/api"
13
13
  require "arux_app/api/checkout"
14
14
  require "arux_app/api/bank_info"
@@ -18,6 +18,6 @@ require "arux_app/api/account"
18
18
  require "arux_app/api/cart"
19
19
 
20
20
  module AruxApp
21
- VERSION = "3.0.1"
21
+ VERSION = "3.0.2"
22
22
  USER_AGENT = "Arux.app GEM #{VERSION}"
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arux_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arux Software
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-09 00:00:00.000000000 Z
11
+ date: 2025-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpi
@@ -80,7 +80,7 @@ files:
80
80
  - LICENSE.txt
81
81
  - README.md
82
82
  - Rakefile
83
- - arux_app.gemspec
83
+ - arux.app.gemspec
84
84
  - lib/arux_app.rb
85
85
  - lib/arux_app/api.rb
86
86
  - lib/arux_app/api/account.rb
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubygems_version: 3.0.9
111
+ rubygems_version: 3.5.16
112
112
  signing_key:
113
113
  specification_version: 4
114
114
  summary: Ruby gem for interacting with the Arux.app Switchboard APIs.