appsignal 0.6.0.beta.1 → 0.6.0.beta.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 +8 -8
- data/lib/appsignal/cli.rb +1 -6
- data/lib/appsignal/version.rb +1 -1
- data/spec/appsignal/auth_check_spec.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjAzZTUwZTgzZTBmMmRmM2IwMTc5M2QzZTI0M2Q0ZWI4ODJmYWUxNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YmZlOWNhM2I0N2JjNDhmYzI0NDU5NzYzZDRkN2IzYzYyODVjNjRhZg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzkwZGEzZTczMjljNmU2ZjA5ODg2MjU1NjQyZjc3NzhiMzhkZGYwNDJhMzk0
|
10
|
+
YzM0MjA3Yjg1MWU5YzVhZmNiMzU5ZDJkYThlYTcyOGYyYTQ5OGY0ZDU2NjIx
|
11
|
+
MWVhODRmNGM4YjQ0NmM3Njk0ZDY3M2JlZDMxYzU2MTk5Y2Y4ZjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTI0ZmVjNzFmNjIzODA4ZmY5MjFhOTcxNGY4ZWNiNjAzZjg2ZjIxOTVlYjc2
|
14
|
+
NjYwODEwZDQxYWJjYmI1NDQ1YmQyNDgxOWYyMzU0MTQ0NWY4YjgwOTcyZTlh
|
15
|
+
ODlmMjI5MjMwNzFmNTJhYjA5ZDI1MTE2YzI2NmRmMzZmZjQxM2M=
|
data/lib/appsignal/cli.rb
CHANGED
@@ -1,12 +1,7 @@
|
|
1
1
|
require 'optparse'
|
2
2
|
require 'logger'
|
3
3
|
require 'yaml'
|
4
|
-
require '
|
5
|
-
require 'appsignal/version'
|
6
|
-
require 'appsignal/config'
|
7
|
-
require 'appsignal/auth_check'
|
8
|
-
require 'appsignal/marker'
|
9
|
-
require 'appsignal/transmitter'
|
4
|
+
require 'appsignal'
|
10
5
|
|
11
6
|
module Appsignal
|
12
7
|
class CLI
|
data/lib/appsignal/version.rb
CHANGED
@@ -7,7 +7,7 @@ describe Appsignal::AuthCheck do
|
|
7
7
|
it "should give success message" do
|
8
8
|
auth_check.should_receive(:perform).and_return('200')
|
9
9
|
auth_check.perform_with_result.should ==
|
10
|
-
['200', 'AppSignal has confirmed
|
10
|
+
['200', 'AppSignal has confirmed authorization!']
|
11
11
|
end
|
12
12
|
|
13
13
|
it "should give 401 message" do
|
@@ -19,7 +19,7 @@ describe Appsignal::AuthCheck do
|
|
19
19
|
it "should give error message" do
|
20
20
|
auth_check.should_receive(:perform).and_return('402')
|
21
21
|
auth_check.perform_with_result.should ==
|
22
|
-
['402', 'Could not confirm
|
22
|
+
['402', 'Could not confirm authorization: 402']
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|