arux_app 3.0.0 → 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 +4 -4
- data/{arux_app.gemspec → arux.app.gemspec} +3 -3
- data/lib/arux_app/api/auth.rb +1 -1
- data/lib/arux_app.rb +4 -4
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cc3f9946effdeeabf0b2c6a0489dc34ddc3aa55446b7ce4d6ceaee516566184
|
4
|
+
data.tar.gz: 98f5538749cb2b61b6d46c621d558e913d32d9f0a85f4dbc416a7a71dfdb901f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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,8 +15,8 @@ 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
|
-
|
19
|
-
spec.add_runtime_dependency "httpi", "~>
|
18
|
+
|
19
|
+
spec.add_runtime_dependency "httpi", "~> 3.0"
|
20
20
|
spec.add_runtime_dependency "json", ">= 0"
|
21
21
|
|
22
22
|
spec.add_development_dependency "bundler", ">= 1.14"
|
data/lib/arux_app/api/auth.rb
CHANGED
@@ -98,7 +98,7 @@ module AruxApp
|
|
98
98
|
end
|
99
99
|
|
100
100
|
def registration_url
|
101
|
-
%(#{public_uri}/users/
|
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
|
10
|
-
require
|
11
|
-
require
|
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.
|
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.
|
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:
|
11
|
+
date: 2025-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpi
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '3.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: json
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,7 @@ files:
|
|
80
80
|
- LICENSE.txt
|
81
81
|
- README.md
|
82
82
|
- Rakefile
|
83
|
-
-
|
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.
|
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.
|