spurious 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -3
- data/lib/spurious/command/ports.rb +7 -0
- data/lib/spurious/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: d050f83942410773c4c6146fddab688796c09163
|
4
|
+
data.tar.gz: 546ec1161537bb30dceec43817f0c537d156a503
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 653322b774b75e5e0d9495f12f666313557a3ec4bbb1ea6298389fa1a84b6d345b87d92b00a0865a4c021d59720ce32f8355378265d6bd9a1b474c81bd2367c7
|
7
|
+
data.tar.gz: 7a93ddc0506f395859d1731b0b288923aec177bdcb65f79dbf2a101c7af57d9540d63e4bea238513edca46a2f7a6ca756d8c75da781d127b5c1f10e69786d2cf
|
data/README.md
CHANGED
@@ -220,16 +220,19 @@ There are also helpers available for the different flavours of the AWS SDK:
|
|
220
220
|
|
221
221
|
#### Ruby
|
222
222
|
|
223
|
-
* [
|
223
|
+
* [Ruby AWS SDK Helper](https://github.com/spurious-io/ruby-awssdk-helper)
|
224
224
|
|
225
|
+
#### Javascript
|
225
226
|
|
226
|
-
|
227
|
+
* [JS AWS SDK Helper](https://github.com/spurious-io/js-aws-sdk-helper) (In active development)
|
228
|
+
|
229
|
+
#### PHP/Java/Clojure/Go...
|
227
230
|
|
228
231
|
> Coming soon
|
229
232
|
|
230
233
|
## Contributing
|
231
234
|
|
232
|
-
1. Fork it ( http://github.com/
|
235
|
+
1. Fork it ( http://github.com/spurious-io/spurious/fork )
|
233
236
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
234
237
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
235
238
|
4. Push to the branch (`git push origin my-new-feature`)
|
@@ -9,6 +9,13 @@ module Spurious
|
|
9
9
|
def receive_data(data)
|
10
10
|
parsed_data = JSON.parse(data.strip)
|
11
11
|
data = []
|
12
|
+
|
13
|
+
if parsed_data['response'].is_a? String
|
14
|
+
@exiting = true
|
15
|
+
app.say "[error] #{parsed_data['response']}", :red
|
16
|
+
close_connection
|
17
|
+
end
|
18
|
+
|
12
19
|
parsed_data['response'].each do |type, mapping|
|
13
20
|
mapping.each do |mapping_data|
|
14
21
|
data << [
|
data/lib/spurious/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spurious
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Jack
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|