funktor 0.6.0 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f23eb6f9be928f479660d5320e71f6766105cbf0ab2c143346186b08b5b58bb8
4
- data.tar.gz: 456f201c8eea7705017823b27161ab3acc1ad7325575d2125e9793943d8ac8cd
3
+ metadata.gz: b3416a7e487adad405490efe9897d7ad50049a6d8cf29731668b32f16ab59927
4
+ data.tar.gz: 9b03a1acd26827521079f978557eebe391f40d1d91731146ee950209075db6c8
5
5
  SHA512:
6
- metadata.gz: 04aa22cc41754a5ee59c0b095ea18df52313185bc440fc94bacd167fb9bfdaa4291fa3e9fb4f9bcd305212cd230505af905c295c6894239ffea4ca948f65f153
7
- data.tar.gz: 9051f19ce855b54cab65d5c224a9044e48227af4c8a22725b9d1ab6ae6f6ee31d1dde84956e3cd3a88b16ab0b46f586cfdc30354ddb928eb2460125d23935038
6
+ metadata.gz: 835212e6c8ac820bfac1cae4a3ef7162f4bacbb734b64675eaf81171dc0ffab3dcbf66ffdef0bbab215393a8e01cf60763cbf60b9437c5400e1cf6360b0d60dd
7
+ data.tar.gz: 39b04ad6472adc2e96b40fa1ada27f6386eba359eb810f209f8880c03f3099f8cb78132f0835c233f3a99fe050b3072cbf49e906b7af70495ec5c7de084392e4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- funktor (0.6.0)
4
+ funktor (0.6.4)
5
5
  activesupport
6
6
  aws-sdk-dynamodb (~> 1.62)
7
7
  aws-sdk-sqs (~> 1.37)
@@ -10,10 +10,10 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activejob (6.1.4)
14
- activesupport (= 6.1.4)
13
+ activejob (6.1.4.1)
14
+ activesupport (= 6.1.4.1)
15
15
  globalid (>= 0.3.6)
16
- activesupport (6.1.4)
16
+ activesupport (6.1.4.1)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
@@ -22,7 +22,7 @@ GEM
22
22
  addressable (2.8.0)
23
23
  public_suffix (>= 2.0.2, < 5.0)
24
24
  aws-eventstream (1.1.1)
25
- aws-partitions (1.490.0)
25
+ aws-partitions (1.491.0)
26
26
  aws-sdk-core (3.119.1)
27
27
  aws-eventstream (~> 1, >= 1.0.2)
28
28
  aws-partitions (~> 1, >= 1.239.0)
@@ -42,8 +42,8 @@ GEM
42
42
  crack (0.4.5)
43
43
  rexml
44
44
  diff-lcs (1.4.4)
45
- docile (1.3.5)
46
- globalid (0.5.1)
45
+ docile (1.4.0)
46
+ globalid (0.5.2)
47
47
  activesupport (>= 5.0)
48
48
  hashdiff (1.0.1)
49
49
  i18n (1.8.10)
@@ -84,7 +84,7 @@ GEM
84
84
  simplecov-html (~> 0.11)
85
85
  simplecov_json_formatter (~> 0.1)
86
86
  simplecov-html (0.12.3)
87
- simplecov_json_formatter (0.1.2)
87
+ simplecov_json_formatter (0.1.3)
88
88
  sinatra (2.1.0)
89
89
  mustermann (~> 1.0)
90
90
  rack (~> 2.2)
@@ -95,8 +95,8 @@ GEM
95
95
  timecop (0.9.4)
96
96
  tzinfo (2.0.4)
97
97
  concurrent-ruby (~> 1.0)
98
- webmock (3.12.2)
99
- addressable (>= 2.3.6)
98
+ webmock (3.14.0)
99
+ addressable (>= 2.8.0)
100
100
  crack (>= 0.3.2)
101
101
  hashdiff (>= 0.4.0, < 2.0.0)
102
102
  zeitwerk (2.4.2)
@@ -1,4 +1,5 @@
1
1
  require 'funktor/worker'
2
+ require 'funktor/job_pusher'
2
3
  require 'funktor/fake_job_queue'
3
4
 
4
5
  module Funktor
@@ -1,3 +1,3 @@
1
1
  module Funktor
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.4"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  <h1>Retries</h1>
2
- <form action="/update_jobs" method="post" accept-charset="utf-8">
2
+ <form action="./update_jobs" method="post" accept-charset="utf-8">
3
3
  <input type="hidden" name="source" value="retry" />
4
4
  <%= erb :table_stats_with_buttons, locals: { jobs: jobs, stat_category: 'retries' } %>
5
5
  <table role="grid">
@@ -1,5 +1,5 @@
1
1
  <h1>Scheduled</h1>
2
- <form action="/update_jobs" method="post" accept-charset="utf-8">
2
+ <form action="./update_jobs" method="post" accept-charset="utf-8">
3
3
  <input type="hidden" name="source" value="scheduled" />
4
4
  <%= erb :table_stats_with_buttons, locals: { jobs: jobs, stat_category: 'scheduled' } %>
5
5
  <table role="grid">
@@ -2,7 +2,7 @@
2
2
  <tr>
3
3
  <td><h5>Funktor</h5></td>
4
4
  <% @activity_stats.each_pair do |stat, value| %>
5
- <td><a href="/<%= stat %>"><%= stat %>: <%= value %></a></td>
5
+ <td><a href="./<%= stat %>"><%= stat %>: <%= value %></a></td>
6
6
  <% end %>
7
7
  <td>Current time UTC: <%= Time.now.utc %></td>
8
8
  </tr>
data/lib/funktor/web.rb CHANGED
@@ -1 +1 @@
1
- include 'funktor/web/application'
1
+ require 'funktor/web/application'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funktor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Green