say_it_with_graphs 0.1.1.pre.alpha.pre.17 → 0.1.1.pre.alpha.pre.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/say_it_with_graphs/client.rb +1 -1
- data/spec/lib/say_it_with_graphs/frame_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTA5MjFkZjBhNDEyOTM3MTViOTEzYTFhOTVkNWVjNGQ2MjYwNDc5MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGE3MDA0N2YyOTY5ZGRkYjFmZTI1ZGQwMWNiNGUyYWZmMWRkMjYwOA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTY2NzM3ZDBjY2ZhMzUwYzg5ZjhiYTE4N2U3OWMzM2ZjMTM0NmM3NzBhMWJj
|
10
|
+
YTJjMjYzMzE1MTUyMWZkMjU3ZDc5MjNhM2FiOTc4ZDczNTlhNmM5YjNkYzJl
|
11
|
+
YWZhMzRmMGIxMWVkZjAyMDQ5ZDgyZTQ4YzY0YzJhYzBiYzIxYjU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjhiZTQwMjllZmU3ZmNkMzk1YTZiNWE3NGYyMWFhMjUwNzBhZjlkMmMwNDMx
|
14
|
+
YmMyNDY3YzEyZmQwYmE1MTE0NmU2ZThjMGZiYTRkN2E5ODhjMjU0NDliNzYw
|
15
|
+
YzU5OTYwODhmN2JlZGFmNTU5ZmIwZTQ2YWVjMDYyODg5ODBiZTU=
|
@@ -7,7 +7,7 @@ module SayItWithGraphs
|
|
7
7
|
|
8
8
|
# debug_output $stdout
|
9
9
|
|
10
|
-
def self.submit
|
10
|
+
def self.submit(value: , source: , name: 'say-it-with-graphs')
|
11
11
|
fail 'please provide valid credentials' unless ENV['LIBRATO_USER'] && ENV['LIBRATO_TOKEN']
|
12
12
|
auth = { username: ENV['LIBRATO_USER'], password: ENV['LIBRATO_TOKEN'] }
|
13
13
|
metric = {
|
@@ -24,7 +24,7 @@ RSpec.describe SayItWithGraphs::Frame do
|
|
24
24
|
|
25
25
|
describe '#complete' do
|
26
26
|
it 'should return all lines in frame' do
|
27
|
-
|
27
|
+
3.times { subject.line }
|
28
28
|
expect(subject.complete.length).to be 3
|
29
29
|
end
|
30
30
|
it 'should freeze the frame' do
|