strobe 0.3.4 → 0.3.5
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/bin/strobe +1 -18
- data/lib/strobe/certs/cacert.pem +4097 -0
- data/lib/strobe/cli/deploys.rb +7 -5
- data/lib/strobe/cli/main.rb +23 -11
- data/lib/strobe/cli.rb +20 -0
- data/lib/strobe/connection.rb +2 -4
- data/lib/strobe/resources/application.rb +4 -0
- data/lib/strobe/version.rb +1 -1
- metadata +19 -19
- data/lib/strobe/cert.pem +0 -32
data/bin/strobe
CHANGED
@@ -1,21 +1,4 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
require 'strobe'
|
3
3
|
|
4
|
-
|
5
|
-
Strobe::CLI::Main.start(ARGV)
|
6
|
-
rescue Strobe::StrobeError => e
|
7
|
-
warn e.message
|
8
|
-
puts e.backtrace.join("\n") if ENV['DEBUG']
|
9
|
-
exit false
|
10
|
-
rescue Interrupt => e
|
11
|
-
puts "\nQuitting..."
|
12
|
-
puts e.backtrace.join("\n") if ENV['DEBUG']
|
13
|
-
exit false
|
14
|
-
rescue SystemExit => e
|
15
|
-
exit e.status
|
16
|
-
rescue Exception => e
|
17
|
-
warn "Unfortunately, a fatal error has occurred. " +
|
18
|
-
"Please report this error to Strobe Support at " +
|
19
|
-
"http://support.strobeapp.com/home so that we can fix it. Thanks!"
|
20
|
-
raise e
|
21
|
-
end
|
4
|
+
Strobe::CLI::Main.start(ARGV)
|