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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fc1cb2b3a3d39546700f96ab597b7f9132fc9d73
4
- data.tar.gz: 327c9072e80ca1778b9f1fe9318054d5f2ddbb17
2
+ SHA256:
3
+ metadata.gz: 88b13e063b6a0196082c4876ca4764e34982c0f65f84855d31ca79348fc03433
4
+ data.tar.gz: 3b5cda06a6144ff2da9467aaf9b87c186c83a63f3b05d5f09b42daadf6eaa39e
5
5
  SHA512:
6
- metadata.gz: 98cdd0101e5985b86782c47bf19bc959bd8cab0552bc45bebe7acf3790d69bad1ae873334953ec4e55b0a515b2ce07f419d9cf51782d2e952984fc653341aa59
7
- data.tar.gz: a27c3daddd42bd825df2bd0138d79c40d29bf38b692c3adca662f6b35c6ed735c5cc298a7a6dd38b395aec316d1befe9cced4280c04b877aeddb02b0f94ab7b9
6
+ metadata.gz: 3a218b8411decc9a12ac5821e072b915485a54ca636930e3ae5e54ce83a6e39a0c927e16f22873eccee487d4d72225369981e81bb9c8f126770e287e29dc7125
7
+ data.tar.gz: 53e96f5be2cc6f623ff5026d5ee49d6dd6bda36782e38d6e33c6dd1611db3b3d386726bd2bc2383606f521999b675c3405719593819a4021f27dffdffce07c59
@@ -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"
@@ -1,4 +1,4 @@
1
1
  module PostPusher
2
- VERSION = "1.1.1".freeze
2
+ VERSION = "1.2.0".freeze
3
3
  end
4
4
 
Binary file
@@ -1,7 +1,7 @@
1
1
  rake aborted!
2
2
  NoMethodError: undefined method `shit_the_bed' for main:Object
3
- /home/sagotsky/repos/post_pusher/test/dummy/lib/tasks/dummy_tasks.rake:19:in `block (3 levels) in <top (required)>'
4
- /home/sagotsky/.rbenv/versions/2.3.3/bin/bundle:22:in `load'
5
- /home/sagotsky/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'
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)
@@ -1,74 +1,127 @@
1
-  (0.1ms) SELECT sqlite_version(*)
2
-  (45.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
-  (93.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1
+  (0.0ms) SELECT sqlite_version(*)
2
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (8.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
4
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
5
  Migrating to CreateUser (20150618161222)
6
6
   (0.0ms) begin transaction
7
-  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
8
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618161222"]]
9
-  (54.4ms) commit transaction
7
+  (0.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL)
8
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618161222"]]
9
+  (8.9ms) commit transaction
10
10
  Migrating to CreateSoftDeletables (20151229195418)
11
11
   (0.0ms) begin transaction
12
-  (0.2ms) CREATE TABLE "soft_deletables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_deleted" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
13
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151229195418"]]
14
-  (69.7ms) commit transaction
12
+  (0.1ms) CREATE TABLE "soft_deletables" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_deleted" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
13
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151229195418"]]
14
+  (8.7ms) commit transaction
15
15
  Migrating to CreatePostPushStatus (20160620190743)
16
-  (0.1ms) begin transaction
17
-  (0.2ms) CREATE TABLE "post_push_statuses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_name" varchar NOT NULL)
16
+  (0.0ms) begin transaction
17
+  (0.2ms) CREATE TABLE "post_push_statuses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "task_name" varchar NOT NULL)
18
18
   (0.1ms) CREATE INDEX "index_post_push_statuses_on_task_name" ON "post_push_statuses" ("task_name")
19
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160620190743"]]
20
-  (18.9ms) commit transaction
19
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160620190743"]]
20
+  (8.7ms) commit transaction
21
21
  ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
22
22
   (0.0ms) begin transaction
23
- SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-01-25 14:53:30.367118"], ["updated_at", "2019-01-25 14:53:30.367118"]]
24
-  (16.6ms) commit transaction
23
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2020-07-07 17:55:53.234467"], ["updated_at", "2020-07-07 17:55:53.234467"]]
24
+  (6.2ms) commit transaction
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
-  (25.5ms) DELETE FROM post_push_statuses
32
-  (77.0ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
33
-  (18.8ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')
34
-  (0.3ms) SELECT task_name from post_push_statuses
35
- ---------------------------------------------------------------------
36
- #completed_tasks: test_0001_should return tasks we know are completed
37
- ---------------------------------------------------------------------
38
-  (83.3ms) DELETE FROM post_push_statuses
39
-  (18.0ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
40
-  (0.4ms) SELECT task_name from post_push_statuses
41
28
  -----------------------------------------------------------------------
42
29
  #runnable_tasks: test_0002_should run the tasks in alphanumerical order
43
30
  -----------------------------------------------------------------------
44
-  (18.2ms) DELETE FROM post_push_statuses
45
-  (60.7ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
46
-  (0.2ms) SELECT task_name from post_push_statuses
31
+  (12.4ms) DELETE FROM post_push_statuses
32
+  (6.3ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
33
+  (0.1ms) SELECT task_name from post_push_statuses
47
34
  --------------------------------------------------------------------------
48
35
  #runnable_tasks: test_0001_should only return tasks that have not been run
49
36
  --------------------------------------------------------------------------
50
-  (16.3ms) DELETE FROM post_push_statuses
51
-  (28.4ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
52
-  (0.3ms) SELECT task_name from post_push_statuses
37
+  (6.6ms) DELETE FROM post_push_statuses
38
+  (6.6ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
39
+  (0.1ms) SELECT task_name from post_push_statuses
40
+ --------------------------------------------------------------------------------------------------
41
+ #task_complete!: test_0001_should insert the rake task name into post_push_statuses when completed
42
+ --------------------------------------------------------------------------------------------------
43
+  (6.9ms) DELETE FROM post_push_statuses
44
+  (6.3ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
45
+  (6.2ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')
46
+  (0.1ms) SELECT task_name from post_push_statuses
53
47
  -------------------------------------------------------------------------------
54
48
  #post_push_tasks: test_0001_should only return tasks that start with post_push:
55
49
  -------------------------------------------------------------------------------
56
-  (52.5ms) DELETE FROM post_push_statuses
57
-  (19.4ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
50
+  (6.2ms) DELETE FROM post_push_statuses
51
+  (6.3ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
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
+  (6.1ms) DELETE FROM post_push_statuses
62
+  (6.2ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
63
+  (0.1ms) SELECT task_name from post_push_statuses
64
+  (12.0ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:3:runnable_task')
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
+  (7.0ms) DELETE FROM post_push_statuses
72
+  (6.5ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
73
+  (0.1ms) SELECT task_name from post_push_statuses
74
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
75
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
76
+  (0.1ms) begin transaction
77
+  (0.0ms) commit transaction
78
+ -------------------------------------------------------------------------------
79
+ #post_push_tasks: test_0001_should only return tasks that start with post_push:
80
+ -------------------------------------------------------------------------------
81
+  (6.8ms) DELETE FROM post_push_statuses
82
+  (6.5ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
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
+  (6.3ms) DELETE FROM post_push_statuses
93
+  (6.6ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
94
+  (0.1ms) SELECT task_name from post_push_statuses
67
95
  ---------------------------------------------------------
68
96
  #work: test_0001_should not mark failed tasks as finished
69
97
  ---------------------------------------------------------
70
-  (69.2ms) DELETE FROM post_push_statuses
71
-  (68.0ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
72
-  (0.3ms) SELECT task_name from post_push_statuses
73
-  (73.1ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:3:runnable_task')
98
+  (6.1ms) DELETE FROM post_push_statuses
99
+  (6.4ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
100
+  (0.1ms) SELECT task_name from post_push_statuses
101
+  (12.0ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:3:runnable_task')
102
+  (0.2ms) SELECT task_name from post_push_statuses
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
+  (11.3ms) DELETE FROM post_push_statuses
113
+  (6.3ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
114
+  (0.1ms) SELECT task_name from post_push_statuses
115
+ -----------------------------------------------------------------------
116
+ #runnable_tasks: test_0002_should run the tasks in alphanumerical order
117
+ -----------------------------------------------------------------------
118
+  (9.9ms) DELETE FROM post_push_statuses
119
+  (18.5ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
120
+  (0.1ms) SELECT task_name from post_push_statuses
121
+ --------------------------------------------------------------------------------------------------
122
+ #task_complete!: test_0001_should insert the rake task name into post_push_statuses when completed
123
+ --------------------------------------------------------------------------------------------------
124
+  (10.3ms) DELETE FROM post_push_statuses
125
+  (6.4ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:2:completed_task')
126
+  (6.4ms) INSERT INTO post_push_statuses (task_name) VALUES ('post_push:the_new_rake_task')
74
127
   (0.1ms) SELECT task_name from post_push_statuses
@@ -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.1.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: 2019-01-25 00:00:00.000000000 Z
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: '0'
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: '0'
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: '0'
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: '0'
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.5.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/rake_task_runner_test.rb
191
- - test/test_helper.rb
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/config.ru
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/db/schema.rb
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/migrate/20150618161222_create_user.rb
208
- - test/dummy/bin/rake
209
- - test/dummy/bin/setup
210
- - test/dummy/bin/rails
211
- - test/dummy/bin/bundle
212
- - test/dummy/config/environment.rb
213
- - test/dummy/config/initializers/inflections.rb
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/mime_types.rb
220
- - test/dummy/config/initializers/filter_parameter_logging.rb
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/database.yml
227
- - test/dummy/config/boot.rb
228
- - test/dummy/config/secrets.yml
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