betsmart-grid 0.0.1 → 0.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.
- data/lib/betsmart-grid.rb +12 -11
- data/lib/betsmart-grid/version.rb +1 -1
- metadata +1 -1
data/lib/betsmart-grid.rb
CHANGED
|
@@ -3,21 +3,22 @@ require "betsmart-grid/version"
|
|
|
3
3
|
module Betsmart
|
|
4
4
|
module Grid
|
|
5
5
|
# Your code goes here...
|
|
6
|
+
class Client
|
|
7
|
+
def initialize(account_sid, auth_token)
|
|
8
|
+
'initialized'
|
|
9
|
+
end
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
|
|
11
|
+
def request
|
|
12
|
+
'request made'
|
|
13
|
+
end
|
|
9
14
|
|
|
10
|
-
|
|
11
|
-
'YAYAYAY'
|
|
12
|
-
end
|
|
15
|
+
private
|
|
13
16
|
|
|
14
|
-
|
|
17
|
+
def set_up_connection
|
|
18
|
+
end
|
|
15
19
|
|
|
16
|
-
|
|
20
|
+
def connect_and_send(request)
|
|
21
|
+
end
|
|
17
22
|
end
|
|
18
|
-
|
|
19
|
-
def connect_and_send(request)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
23
|
end
|
|
23
24
|
end
|