rallio 0.6.1 → 0.6.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/lib/rallio/account.rb +15 -0
- data/lib/rallio/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ca72e17239d06835bb4b9eeacb1fb504c56145a
|
|
4
|
+
data.tar.gz: c7195ea8fdc861ecac336fc7e486858d8750777e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3b02b7d3c908895f4a2c4a033566ad94fe9455c97e1d182add6b5454c2d84a20ade40da1ad4297bec0e9934cfa633820819a9e4301374523d03db5d0947e6de
|
|
7
|
+
data.tar.gz: '09ec331ab7fb20aadc0843bdb115d0b3b004c65dfb7206f40cb76153386b86aca66d69fe7c70c5754e6fa53bd16921abb05f9c2b49e0e0e6a12b4ff4273f2e7c'
|
data/lib/rallio/account.rb
CHANGED
|
@@ -15,6 +15,16 @@ module Rallio
|
|
|
15
15
|
# @return [String] account country code
|
|
16
16
|
# @!attribute [rw] time_zone
|
|
17
17
|
# @return [String] account time zone
|
|
18
|
+
# @!attribute [rw] franchisor_id
|
|
19
|
+
# @return [String] franchisor_id account belongs to
|
|
20
|
+
# @!attribute [rw] franchisor_name
|
|
21
|
+
# @return [String] franchisor_name account belongs to
|
|
22
|
+
# @!attribute [rw] facebook_connected
|
|
23
|
+
# @return [String] facebook has been associated
|
|
24
|
+
# @!attribute [rw] yelp_connected
|
|
25
|
+
# @return [String] yelp has been associated
|
|
26
|
+
# @!attribute [rw] google_connected
|
|
27
|
+
# @return [String] google has been associated
|
|
18
28
|
class Account < Base
|
|
19
29
|
attribute :id, Integer
|
|
20
30
|
attribute :name, String
|
|
@@ -23,6 +33,11 @@ module Rallio
|
|
|
23
33
|
attribute :city, String
|
|
24
34
|
attribute :country_code, String
|
|
25
35
|
attribute :time_zone, String
|
|
36
|
+
attribute :franchisor_id, Integer
|
|
37
|
+
attribute :franchisor_name, String
|
|
38
|
+
attribute :facebook_connected, Axiom::Types::Boolean
|
|
39
|
+
attribute :yelp_connected, Axiom::Types::Boolean
|
|
40
|
+
attribute :google_connected, Axiom::Types::Boolean
|
|
26
41
|
|
|
27
42
|
# Retreives accounts.
|
|
28
43
|
#
|
data/lib/rallio/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rallio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JD Guzman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: virtus
|