go_to_webinar 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/go_to_webinar/version.rb +1 -1
- data/lib/go_to_webinar.rb +8 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96f4dbd1a3e558db15ab469943b6eb1aa216c4db89fb518f306ffd78980922cc
|
4
|
+
data.tar.gz: 90df42afdc8b0cc904bd4c3617cadd108332bf97f553dbc7b080add0651a1e80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3b1ed8f5c86fc27b711198be1dbf15bedb6306d02e2e8bea21d6d422dc52f0da4bcbdfabfcc3b1f15696155a753f79cc00bf482bc3fec48f4220629611aff11
|
7
|
+
data.tar.gz: 15c1f77fc727451a29689f81eec4153da0dc8e66e11e8eb07ae96f08d5f4800662c6bfad853cfb1b18b134965662d200d370394d16b6b80d90930396a8d28655
|
data/lib/go_to_webinar.rb
CHANGED
@@ -12,9 +12,6 @@ require 'go_to_webinar/version'
|
|
12
12
|
require 'go_to_webinar/webinar'
|
13
13
|
|
14
14
|
module GoToWebinar
|
15
|
-
@client ||= GoToWebinar::Client.new
|
16
|
-
@configuration ||= GoToWebinar::Configuration.new
|
17
|
-
|
18
15
|
class << self
|
19
16
|
attr_accessor :client, :configuration
|
20
17
|
|
@@ -22,5 +19,13 @@ module GoToWebinar
|
|
22
19
|
yield(configuration)
|
23
20
|
@client = nil
|
24
21
|
end
|
22
|
+
|
23
|
+
def client
|
24
|
+
@client ||= GoToWebinar::Client.new
|
25
|
+
end
|
26
|
+
|
27
|
+
def configuration
|
28
|
+
@configuration ||= Configuration.new
|
29
|
+
end
|
25
30
|
end
|
26
31
|
end
|