fiksu-af 1.1.4 → 1.1.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/fiksu-af.gemspec +1 -1
- data/lib/fiksu-af/application.rb +4 -0
- data/lib/fiksu-af/version.rb +1 -1
- metadata +2 -2
data/fiksu-af.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = 'fiksu-af'
|
|
8
8
|
s.version = Af::VERSION
|
|
9
9
|
s.license = 'New BSD License'
|
|
10
|
-
s.date = '2013-
|
|
10
|
+
s.date = '2013-12-02'
|
|
11
11
|
s.summary = "An application framework for ruby on rails based scripts."
|
|
12
12
|
s.description = "Af groups together gems and provides some glue and helper classes to easily creating applications in a ruby on rails environment."
|
|
13
13
|
s.authors = ["Keith Gabryelski", "Leonardo Meira"]
|
data/lib/fiksu-af/application.rb
CHANGED
|
@@ -163,6 +163,10 @@ module Af
|
|
|
163
163
|
logger.warn se
|
|
164
164
|
exit se.status
|
|
165
165
|
end
|
|
166
|
+
rescue SignalException => e
|
|
167
|
+
logger.error "receiving signal: #{e.message}"
|
|
168
|
+
logger.warn e
|
|
169
|
+
@has_errors = true
|
|
166
170
|
rescue Exception => e
|
|
167
171
|
# catching Exception cause some programs and libraries suck
|
|
168
172
|
logger.error "fatal error during work: #{e.message}"
|
data/lib/fiksu-af/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fiksu-af
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-12-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: pg_application_name
|