herdst_worker 0.1.1 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/herdst_worker +10 -7
- data/lib/herdst_worker/adapters/database.rb +22 -18
- data/lib/herdst_worker/adapters/sentry.rb +14 -10
- data/lib/herdst_worker/configuration/metadata.rb +5 -1
- data/lib/herdst_worker/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd3d83d5c9eed1daf41c0c8e9da9da90bce24f9abcf9e8e244b7c8da1115947c
|
4
|
+
data.tar.gz: 127e7147df4a561a8f1fcb6d9030e679d46e044e942333ae8e94eab2d018df0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5eff402b28ecb69fa5a084ee36d624a6d1f33b42345d6137f14df98069103221ccbce40582c4b95c1d13eb277cd7665576d4ee16d770fa9bd4b0b71f52ddef3
|
7
|
+
data.tar.gz: a1c1648befbdb86e76d76d39d59a090ccfc1a93c477c200637f8ec738b0e356c077d84c770501723cd65ac95dc7a430c15dd1a8fdb8782e6b45be83d92a5e661
|
data/bin/herdst_worker
CHANGED
@@ -1,18 +1,21 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
args =
|
3
|
+
args = ARGV
|
4
|
+
.flat_map { |s| s.scan(/--?([^=\s]+)(?:=(\S+))?/) }
|
5
|
+
.select { |i| i[1] != "" }
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
+
arg_pair = Hash[ args ]
|
8
|
+
application_name = arg_pair["name"]
|
9
|
+
application_file = arg_pair["application"] || "application.rb"
|
7
10
|
application_path = "#{Dir.pwd}/#{application_file}"
|
8
|
-
application_env =
|
9
|
-
queue_enabled =
|
11
|
+
application_env = arg_pair["env"] || "production"
|
12
|
+
queue_enabled = arg_pair["queue_enabled"] == "false" ? false : true
|
10
13
|
|
11
|
-
raise "Please specify a name for the application E.g. --name=[name]" unless application_name
|
14
|
+
raise "Please specify a name for the application E.g. --name=[name]" unless application_name
|
12
15
|
|
13
16
|
require_relative "../lib/herdst_worker"
|
14
17
|
|
15
|
-
application_instance = HerdstWorker::Application.new(application_env, queue_enabled)
|
18
|
+
application_instance = HerdstWorker::Application.new(application_env, application_name, queue_enabled)
|
16
19
|
|
17
20
|
require_relative application_path
|
18
21
|
|
@@ -4,25 +4,29 @@ module HerdstWorker
|
|
4
4
|
|
5
5
|
|
6
6
|
def self.setup(app)
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
begin
|
8
|
+
db_config = app.config_for(:database)
|
9
|
+
|
10
|
+
if app.config.is_dev?
|
11
|
+
ActiveRecord::Base.logger = app.logger.activerecord
|
12
|
+
end
|
13
|
+
|
14
|
+
ActiveRecord::Base.default_timezone = :utc
|
15
|
+
ActiveRecord::Base.establish_connection(
|
16
|
+
adapter: db_config[:adapter],
|
17
|
+
encoding: db_config[:encoding],
|
18
|
+
charset: db_config[:charset],
|
19
|
+
collation: db_config[:collation],
|
20
|
+
pool: db_config[:pool],
|
21
|
+
host: db_config[:host],
|
22
|
+
username: db_config[:username],
|
23
|
+
password: db_config[:password],
|
24
|
+
database: db_config[:database]
|
25
|
+
)
|
26
|
+
ActiveRecord::Base.connection.enable_query_cache!
|
27
|
+
rescue Exception => ex
|
28
|
+
app.logger.error ex.message
|
11
29
|
end
|
12
|
-
|
13
|
-
ActiveRecord::Base.default_timezone = :utc
|
14
|
-
ActiveRecord::Base.establish_connection(
|
15
|
-
adapter: db_config[:adapter],
|
16
|
-
encoding: db_config[:encoding],
|
17
|
-
charset: db_config[:charset],
|
18
|
-
collation: db_config[:collation],
|
19
|
-
pool: db_config[:pool],
|
20
|
-
host: db_config[:host],
|
21
|
-
username: db_config[:username],
|
22
|
-
password: db_config[:password],
|
23
|
-
database: db_config[:database]
|
24
|
-
)
|
25
|
-
ActiveRecord::Base.connection.enable_query_cache!
|
26
30
|
end
|
27
31
|
|
28
32
|
|
@@ -7,16 +7,20 @@ module HerdstWorker
|
|
7
7
|
|
8
8
|
|
9
9
|
def self.setup(app)
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
10
|
+
begin
|
11
|
+
environment = app.config.metadata[:DEPLOYMENT_ENV]
|
12
|
+
release = app.config.metadata[:RELEASE_VERSION]
|
13
|
+
sentry_key = app.config.metadata[:SENTRY_KEY]
|
14
|
+
|
15
|
+
Raven.configure do |config|
|
16
|
+
config.current_environment = environment
|
17
|
+
config.release = release
|
18
|
+
config.dsn = sentry_key if sentry_key
|
19
|
+
config.environments = ["preview", "production"]
|
20
|
+
config.async = lambda { |event| Thread.new { Raven.send_event(event) } }
|
21
|
+
end
|
22
|
+
rescue Exception => ex
|
23
|
+
app.logger.error ex.message
|
20
24
|
end
|
21
25
|
end
|
22
26
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: herdst_worker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Herd.St
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|