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 CHANGED
@@ -1,21 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'strobe'
3
3
 
4
- begin
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)