post_pusher 1.1.1 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/post_push_cli.rb +5 -0
- data/lib/post_pusher/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/post_push/1_broken_task.log +3 -3
- data/test/dummy/log/test.log +93 -40
- data/test/post_push_exe_test.rb +2 -2
- metadata +75 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 88b13e063b6a0196082c4876ca4764e34982c0f65f84855d31ca79348fc03433
|
4
|
+
data.tar.gz: 3b5cda06a6144ff2da9467aaf9b87c186c83a63f3b05d5f09b42daadf6eaa39e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a218b8411decc9a12ac5821e072b915485a54ca636930e3ae5e54ce83a6e39a0c927e16f22873eccee487d4d72225369981e81bb9c8f126770e287e29dc7125
|
7
|
+
data.tar.gz: 53e96f5be2cc6f623ff5026d5ee49d6dd6bda36782e38d6e33c6dd1611db3b3d386726bd2bc2383606f521999b675c3405719593819a4021f27dffdffce07c59
|
data/lib/post_push_cli.rb
CHANGED
@@ -2,6 +2,10 @@ require "thor"
|
|
2
2
|
require_relative "../lib/post_pusher/rake_task_runner"
|
3
3
|
|
4
4
|
class PostPushCli < Thor
|
5
|
+
def self.exit_on_failure?
|
6
|
+
true
|
7
|
+
end
|
8
|
+
|
5
9
|
desc "work", "Run remaining post push tasks"
|
6
10
|
def work
|
7
11
|
load_rails_env!
|
@@ -28,6 +32,7 @@ class PostPushCli < Thor
|
|
28
32
|
|
29
33
|
success_message "#{succeeded.size} tasks succeeded"
|
30
34
|
error_message "Errors occured in #{failed.size} tasks:\n#{failed.join("\n")}" if failed.any?
|
35
|
+
raise "Some tasks failed" if failed.any?
|
31
36
|
end
|
32
37
|
|
33
38
|
desc "status", "List post push tasks and their status"
|
data/lib/post_pusher/version.rb
CHANGED
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,7 +1,7 @@
|
|
1
1
|
rake aborted!
|
2
2
|
NoMethodError: undefined method `shit_the_bed' for main:Object
|
3
|
-
/home/
|
4
|
-
/home/
|
5
|
-
/home/
|
3
|
+
/home/balves/src/post_pusher/test/dummy/lib/tasks/dummy_tasks.rake:19:in `block (3 levels) in <top (required)>'
|
4
|
+
/home/balves/.rbenv/versions/2.5.3/bin/bundle:23:in `load'
|
5
|
+
/home/balves/.rbenv/versions/2.5.3/bin/bundle:23:in `<main>'
|
6
6
|
Tasks: TOP => post_push:1:broken_task
|
7
7
|
(See full trace by running task with --trace)
|
data/test/dummy/log/test.log
CHANGED
@@ -1,74 +1,127 @@
|
|
1
|
-
[1m[35m (0.
|
2
|
-
[1m[35m (
|
3
|
-
[1m[35m (
|
1
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (9.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
3
|
+
[1m[35m (8.7ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
4
4
|
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
5
5
|
Migrating to CreateUser (20150618161222)
|
6
6
|
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
7
|
-
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id"
|
8
|
-
[1m[
|
9
|
-
[1m[35m (
|
7
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL)[0m
|
8
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150618161222"]]
|
9
|
+
[1m[35m (8.9ms)[0m [1m[36mcommit transaction[0m
|
10
10
|
Migrating to CreateSoftDeletables (20151229195418)
|
11
11
|
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
12
|
-
[1m[35m (0.
|
13
|
-
[1m[
|
14
|
-
[1m[35m (
|
12
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "soft_deletables" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_deleted" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
13
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20151229195418"]]
|
14
|
+
[1m[35m (8.7ms)[0m [1m[36mcommit transaction[0m
|
15
15
|
Migrating to CreatePostPushStatus (20160620190743)
|
16
|
-
[1m[35m (0.
|
17
|
-
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "post_push_statuses" ("id"
|
16
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
17
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "post_push_statuses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "task_name" varchar NOT NULL)[0m
|
18
18
|
[1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "index_post_push_statuses_on_task_name" ON "post_push_statuses" ("task_name")[0m
|
19
|
-
[1m[
|
20
|
-
[1m[35m (
|
19
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160620190743"]]
|
20
|
+
[1m[35m (8.7ms)[0m [1m[36mcommit transaction[0m
|
21
21
|
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
22
22
|
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
23
|
-
[1m[
|
24
|
-
[1m[35m (
|
23
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-07-07 17:55:53.234467"], ["updated_at", "2020-07-07 17:55:53.234467"]]
|
24
|
+
[1m[35m (6.2ms)[0m [1m[36mcommit transaction[0m
|
25
25
|
------------------------------------------------------
|
26
26
|
happy path: test_0001_should log the rake tasks output
|
27
27
|
------------------------------------------------------
|
28
|
-
--------------------------------------------------------------------------------------------------
|
29
|
-
#task_complete!: test_0001_should insert the rake task name into post_push_statuses when completed
|
30
|
-
--------------------------------------------------------------------------------------------------
|
31
|
-
[1m[35m (25.5ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
32
|
-
[1m[35m (77.0ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
33
|
-
[1m[35m (18.8ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')[0m
|
34
|
-
[1m[35m (0.3ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
35
|
-
---------------------------------------------------------------------
|
36
|
-
#completed_tasks: test_0001_should return tasks we know are completed
|
37
|
-
---------------------------------------------------------------------
|
38
|
-
[1m[35m (83.3ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
39
|
-
[1m[35m (18.0ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
40
|
-
[1m[35m (0.4ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
41
28
|
-----------------------------------------------------------------------
|
42
29
|
#runnable_tasks: test_0002_should run the tasks in alphanumerical order
|
43
30
|
-----------------------------------------------------------------------
|
44
|
-
[1m[35m (
|
45
|
-
[1m[35m (
|
46
|
-
[1m[35m (0.
|
31
|
+
[1m[35m (12.4ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
32
|
+
[1m[35m (6.3ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
33
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
47
34
|
--------------------------------------------------------------------------
|
48
35
|
#runnable_tasks: test_0001_should only return tasks that have not been run
|
49
36
|
--------------------------------------------------------------------------
|
50
|
-
[1m[35m (
|
51
|
-
[1m[35m (
|
52
|
-
[1m[35m (0.
|
37
|
+
[1m[35m (6.6ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
38
|
+
[1m[35m (6.6ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
39
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
40
|
+
--------------------------------------------------------------------------------------------------
|
41
|
+
#task_complete!: test_0001_should insert the rake task name into post_push_statuses when completed
|
42
|
+
--------------------------------------------------------------------------------------------------
|
43
|
+
[1m[35m (6.9ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
44
|
+
[1m[35m (6.3ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
45
|
+
[1m[35m (6.2ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')[0m
|
46
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
53
47
|
-------------------------------------------------------------------------------
|
54
48
|
#post_push_tasks: test_0001_should only return tasks that start with post_push:
|
55
49
|
-------------------------------------------------------------------------------
|
56
|
-
[1m[35m (
|
57
|
-
[1m[35m (
|
50
|
+
[1m[35m (6.2ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
51
|
+
[1m[35m (6.3ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
52
|
+
----------------------------------------------------------------------------------
|
53
|
+
PostPusher::Generators::InstallGeneratorTest: test_0001_creates the migration file
|
54
|
+
----------------------------------------------------------------------------------
|
55
|
+
-----------------------------------------------------------------------------------------------------
|
56
|
+
PostPusher::Generators::InstallGeneratorTest: test_0002_skips the migration file if it already exists
|
57
|
+
-----------------------------------------------------------------------------------------------------
|
58
|
+
---------------------------------------------------------
|
59
|
+
#work: test_0001_should not mark failed tasks as finished
|
60
|
+
---------------------------------------------------------
|
61
|
+
[1m[35m (6.1ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
62
|
+
[1m[35m (6.2ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
63
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
64
|
+
[1m[35m (12.0ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:3:runnable_task')[0m
|
58
65
|
----------------------------------------------------
|
59
66
|
broken tasks: test_0001_should also log busted tasks
|
60
67
|
----------------------------------------------------
|
68
|
+
---------------------------------------------------------------------
|
69
|
+
#completed_tasks: test_0001_should return tasks we know are completed
|
70
|
+
---------------------------------------------------------------------
|
71
|
+
[1m[35m (7.0ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
72
|
+
[1m[35m (6.5ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
73
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
74
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
75
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
76
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
77
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
78
|
+
-------------------------------------------------------------------------------
|
79
|
+
#post_push_tasks: test_0001_should only return tasks that start with post_push:
|
80
|
+
-------------------------------------------------------------------------------
|
81
|
+
[1m[35m (6.8ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
82
|
+
[1m[35m (6.5ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
61
83
|
----------------------------------------------------------------------------------
|
62
84
|
PostPusher::Generators::InstallGeneratorTest: test_0001_creates the migration file
|
63
85
|
----------------------------------------------------------------------------------
|
64
86
|
-----------------------------------------------------------------------------------------------------
|
65
87
|
PostPusher::Generators::InstallGeneratorTest: test_0002_skips the migration file if it already exists
|
66
88
|
-----------------------------------------------------------------------------------------------------
|
89
|
+
---------------------------------------------------------------------
|
90
|
+
#completed_tasks: test_0001_should return tasks we know are completed
|
91
|
+
---------------------------------------------------------------------
|
92
|
+
[1m[35m (6.3ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
93
|
+
[1m[35m (6.6ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
94
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
67
95
|
---------------------------------------------------------
|
68
96
|
#work: test_0001_should not mark failed tasks as finished
|
69
97
|
---------------------------------------------------------
|
70
|
-
[1m[35m (
|
71
|
-
[1m[35m (
|
72
|
-
[1m[35m (0.
|
73
|
-
[1m[35m (
|
98
|
+
[1m[35m (6.1ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
99
|
+
[1m[35m (6.4ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
100
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
101
|
+
[1m[35m (12.0ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:3:runnable_task')[0m
|
102
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
103
|
+
----------------------------------------------------
|
104
|
+
broken tasks: test_0001_should also log busted tasks
|
105
|
+
----------------------------------------------------
|
106
|
+
------------------------------------------------------
|
107
|
+
happy path: test_0001_should log the rake tasks output
|
108
|
+
------------------------------------------------------
|
109
|
+
--------------------------------------------------------------------------
|
110
|
+
#runnable_tasks: test_0001_should only return tasks that have not been run
|
111
|
+
--------------------------------------------------------------------------
|
112
|
+
[1m[35m (11.3ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
113
|
+
[1m[35m (6.3ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
114
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
115
|
+
-----------------------------------------------------------------------
|
116
|
+
#runnable_tasks: test_0002_should run the tasks in alphanumerical order
|
117
|
+
-----------------------------------------------------------------------
|
118
|
+
[1m[35m (9.9ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
119
|
+
[1m[35m (18.5ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
120
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
121
|
+
--------------------------------------------------------------------------------------------------
|
122
|
+
#task_complete!: test_0001_should insert the rake task name into post_push_statuses when completed
|
123
|
+
--------------------------------------------------------------------------------------------------
|
124
|
+
[1m[35m (10.3ms)[0m [1m[31mDELETE FROM post_push_statuses[0m
|
125
|
+
[1m[35m (6.4ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')[0m
|
126
|
+
[1m[35m (6.4ms)[0m [1m[32mINSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')[0m
|
74
127
|
[1m[35m (0.1ms)[0m [1m[34mSELECT task_name from post_push_statuses[0m
|
data/test/post_push_exe_test.rb
CHANGED
@@ -13,16 +13,16 @@ class PostPushExeTest < ActiveSupport::TestCase
|
|
13
13
|
end
|
14
14
|
|
15
15
|
describe "#work" do
|
16
|
-
setup { subject.work }
|
17
|
-
|
18
16
|
# TODO: re-enable this. Solano isn't finding all the tasks (I think),
|
19
17
|
# so this one isn't available. Make it work in a debug console with
|
20
18
|
# bin/solano_run_gem_tests. --sagotsky
|
21
19
|
# it "should mark finished tasks so they dont rerun" do
|
20
|
+
# subject.work
|
22
21
|
# completed_tasks.must_include 'post_push:3:runnable_task'
|
23
22
|
# end
|
24
23
|
|
25
24
|
it "should not mark failed tasks as finished" do
|
25
|
+
subject.work rescue nil
|
26
26
|
completed_tasks.wont_include "post_push:1:broken_task"
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: post_pusher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PatientsLikeMe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -28,30 +28,30 @@ dependencies:
|
|
28
28
|
name: sqlite3
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 1.3.6
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 1.3.6
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 5.11.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 5.11.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: minitest-reporters
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +94,34 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 5.2.4.3
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 5.2.4.3
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: sprockets
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 3.7.2
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 3.7.2
|
97
125
|
description: A tool to run a set of tasks after deploys
|
98
126
|
email:
|
99
127
|
- engineers@patientslikeme.com
|
@@ -166,7 +194,7 @@ homepage: https://www.patientslikeme.com
|
|
166
194
|
licenses:
|
167
195
|
- MIT
|
168
196
|
metadata: {}
|
169
|
-
post_install_message:
|
197
|
+
post_install_message:
|
170
198
|
rdoc_options: []
|
171
199
|
require_paths:
|
172
200
|
- lib
|
@@ -181,56 +209,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
209
|
- !ruby/object:Gem::Version
|
182
210
|
version: '0'
|
183
211
|
requirements: []
|
184
|
-
rubyforge_project:
|
185
|
-
rubygems_version: 2.
|
186
|
-
signing_key:
|
212
|
+
rubyforge_project:
|
213
|
+
rubygems_version: 2.7.6
|
214
|
+
signing_key:
|
187
215
|
specification_version: 4
|
188
216
|
summary: A tool to run a set of tasks after deploys
|
189
217
|
test_files:
|
190
|
-
- test/
|
191
|
-
- test/
|
192
|
-
- test/dummy/log/post_push/3_runnable_task.log
|
193
|
-
- test/dummy/log/post_push/1_broken_task.log
|
194
|
-
- test/dummy/log/test.log
|
195
|
-
- test/dummy/README.rdoc
|
196
|
-
- test/dummy/app/assets/stylesheets/application.css
|
197
|
-
- test/dummy/app/assets/javascripts/application.js
|
218
|
+
- test/post_push_exe_test.rb
|
219
|
+
- test/dummy/Rakefile
|
198
220
|
- test/dummy/app/controllers/application_controller.rb
|
199
221
|
- test/dummy/app/helpers/application_helper.rb
|
200
222
|
- test/dummy/app/views/layouts/application.html.erb
|
201
|
-
- test/dummy/
|
223
|
+
- test/dummy/app/assets/javascripts/application.js
|
224
|
+
- test/dummy/app/assets/stylesheets/application.css
|
202
225
|
- test/dummy/lib/tasks/dummy_tasks.rake
|
203
|
-
- test/dummy/
|
226
|
+
- test/dummy/README.rdoc
|
227
|
+
- test/dummy/public/500.html
|
228
|
+
- test/dummy/public/422.html
|
229
|
+
- test/dummy/public/404.html
|
230
|
+
- test/dummy/public/favicon.ico
|
231
|
+
- test/dummy/log/test.log
|
232
|
+
- test/dummy/log/post_push/1_broken_task.log
|
233
|
+
- test/dummy/log/post_push/3_runnable_task.log
|
234
|
+
- test/dummy/bin/rails
|
235
|
+
- test/dummy/bin/bundle
|
236
|
+
- test/dummy/bin/setup
|
237
|
+
- test/dummy/bin/rake
|
204
238
|
- test/dummy/db/test.sqlite3
|
239
|
+
- test/dummy/db/migrate/20150618161222_create_user.rb
|
205
240
|
- test/dummy/db/migrate/20160620190743_create_post_push_status.rb
|
206
241
|
- test/dummy/db/migrate/20151229195418_create_soft_deletables.rb
|
207
|
-
- test/dummy/db/
|
208
|
-
- test/dummy/
|
209
|
-
- test/dummy/
|
210
|
-
- test/dummy/
|
211
|
-
- test/dummy/
|
212
|
-
- test/dummy/config/
|
213
|
-
- test/dummy/config/initializers/
|
242
|
+
- test/dummy/db/schema.rb
|
243
|
+
- test/dummy/config/boot.rb
|
244
|
+
- test/dummy/config/application.rb
|
245
|
+
- test/dummy/config/routes.rb
|
246
|
+
- test/dummy/config/secrets.yml
|
247
|
+
- test/dummy/config/database.yml
|
248
|
+
- test/dummy/config/initializers/mime_types.rb
|
249
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
214
250
|
- test/dummy/config/initializers/session_store.rb
|
215
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
216
251
|
- test/dummy/config/initializers/assets.rb
|
217
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
218
252
|
- test/dummy/config/initializers/wrap_parameters.rb
|
219
|
-
- test/dummy/config/initializers/
|
220
|
-
- test/dummy/config/initializers/
|
253
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
254
|
+
- test/dummy/config/initializers/inflections.rb
|
255
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
256
|
+
- test/dummy/config/environment.rb
|
221
257
|
- test/dummy/config/locales/en.yml
|
222
|
-
- test/dummy/config/application.rb
|
223
258
|
- test/dummy/config/environments/production.rb
|
224
259
|
- test/dummy/config/environments/development.rb
|
225
260
|
- test/dummy/config/environments/test.rb
|
226
|
-
- test/dummy/config
|
227
|
-
- test/
|
228
|
-
- test/
|
229
|
-
- test/dummy/config/routes.rb
|
230
|
-
- test/dummy/Rakefile
|
231
|
-
- test/dummy/public/404.html
|
232
|
-
- test/dummy/public/500.html
|
233
|
-
- test/dummy/public/favicon.ico
|
234
|
-
- test/dummy/public/422.html
|
235
|
-
- test/post_push_exe_test.rb
|
261
|
+
- test/dummy/config.ru
|
262
|
+
- test/rake_task_runner_test.rb
|
263
|
+
- test/test_helper.rb
|
236
264
|
- test/generators/post_pusher/install/install_generator_test.rb
|