jobs 0.0.4 → 0.0.5

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
  SHA1:
3
- metadata.gz: 1c6cfff0b8f6f28dee0696fec4a66971cbfe991b
4
- data.tar.gz: 59a0e2a9cea787556ff41b44e2d2da912c42a01d
3
+ metadata.gz: d97028c5a1294dc67b59baafb70beace43de66cc
4
+ data.tar.gz: c732aa43ecc87231c539edeb3ceef0c8ca15791b
5
5
  SHA512:
6
- metadata.gz: 0fe349ccab878937d53b93ede3d7a6ac6f0dbe69d0d2be790aae41ed3d7d615ee2b2a03c59b561e68bdfb89880c0395820cae2ef1b98fdc5ad5a189ecafa2912
7
- data.tar.gz: 8f4daa8fcf663c75cde3c6ae3bc3fd1dfffc977397e81ddc163f8ffc46c3256deafbe5de459d19fc15cb6b909eba8447b4d1c273a7cbc01c24a7b0bd365eab97
6
+ metadata.gz: 90343d01c73fea0e71885598761dd999437b10e2d55a61fcfa40210a01404034092af9ecaf4d6e65b94480c0e274317af19e424cfcd221abe40f68a00586ff27
7
+ data.tar.gz: f737a704e778d431b187bede0ad4e17f196c97e1bcd09390f442a2419121183ee0b316d4a79335ccb76f1bc00d088d158ba11c91a1e9c6750abcd1a1b5c6831a
data/.gitignore CHANGED
@@ -12,3 +12,6 @@
12
12
  *.o
13
13
  *.a
14
14
  mkmf.log
15
+ .DS_Store
16
+ *.log
17
+ *.sqlite3
data/README.md CHANGED
@@ -11,7 +11,7 @@ the jobber(s) assigned to the job.
11
11
 
12
12
  [![Build Status](https://travis-ci.org/wdiechmann/jobs.svg?branch=master)](https://travis-ci.org/wdiechmann/jobs)
13
13
 
14
- [![Gem Version](https://badge.fury.io/rb/jobs.png)](http://badge.fury.io/rb/sinderella)
14
+ [![Gem Version](https://badge.fury.io/rb/jobs.png)](http://badge.fury.io/rb/jobs)
15
15
 
16
16
  [![Coverage Status](https://coveralls.io/repos/wdiechmann/jobs/badge.png)](https://coveralls.io/r/wdiechmann/jobs)
17
17
 
@@ -68,3 +68,5 @@ complete any of these tasks to use the gem!
68
68
  - rake install
69
69
  - rake release
70
70
  17. make the gem a mountable Rails Engine - following the [Rails Engine Guide](http://edgeguides.rubyonrails.org/engines.html) transposing the blorgh to jobs
71
+ - watch out for engine test\_helper.rb not set up correct - see https://github.com/rails/rails/issues/4971 and the b72ecc0 and 2317655 commits
72
+ 18. cleaning up test/dummy/db and .gitignore and bump version to .5
@@ -29,7 +29,14 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.add_development_dependency "bundler", "~> 1.7"
31
31
  spec.add_development_dependency "rake", "~> 10.0"
32
- spec.add_development_dependency "sqlite3"
32
+ case Gem::Platform.local.os
33
+ when "java"
34
+ spec.add_development_dependency "activerecord-jdbcsqlite3-adapter"
35
+ else
36
+ # spec.add_development_dependency "mysql2"
37
+ spec.add_development_dependency "sqlite3"
38
+ end
39
+
33
40
  spec.add_development_dependency "rspec"
34
41
  spec.add_development_dependency "rspec-nc"
35
42
  spec.add_development_dependency "guard"
@@ -1,3 +1,3 @@
1
1
  module Jobs
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Walther H Diechmann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-02 00:00:00.000000000 Z
11
+ date: 2014-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -221,8 +221,6 @@ files:
221
221
  - lib/jobs/engine.rb
222
222
  - lib/jobs/version.rb
223
223
  - lib/tasks/jobs_tasks.rake
224
- - spec/jobs_spec.rb
225
- - spec/spec_helper.rb
226
224
  - test/controllers/jobs/jobs_controller_test.rb
227
225
  - test/dummy/README.rdoc
228
226
  - test/dummy/Rakefile
@@ -258,13 +256,9 @@ files:
258
256
  - test/dummy/config/locales/en.yml
259
257
  - test/dummy/config/routes.rb
260
258
  - test/dummy/config/secrets.yml
261
- - test/dummy/db/development.sqlite3
262
- - test/dummy/db/production.sqlite3
263
259
  - test/dummy/db/schema.rb
264
- - test/dummy/db/test.sqlite3
265
260
  - test/dummy/lib/assets/.keep
266
261
  - test/dummy/log/.keep
267
- - test/dummy/log/test.log
268
262
  - test/dummy/public/404.html
269
263
  - test/dummy/public/422.html
270
264
  - test/dummy/public/500.html
@@ -310,8 +304,6 @@ signing_key:
310
304
  specification_version: 4
311
305
  summary: Keep a tab on vacant and assigned jobs on SL2017
312
306
  test_files:
313
- - spec/jobs_spec.rb
314
- - spec/spec_helper.rb
315
307
  - test/controllers/jobs/jobs_controller_test.rb
316
308
  - test/dummy/README.rdoc
317
309
  - test/dummy/Rakefile
@@ -347,13 +339,9 @@ test_files:
347
339
  - test/dummy/config/locales/en.yml
348
340
  - test/dummy/config/routes.rb
349
341
  - test/dummy/config/secrets.yml
350
- - test/dummy/db/development.sqlite3
351
- - test/dummy/db/production.sqlite3
352
342
  - test/dummy/db/schema.rb
353
- - test/dummy/db/test.sqlite3
354
343
  - test/dummy/lib/assets/.keep
355
344
  - test/dummy/log/.keep
356
- - test/dummy/log/test.log
357
345
  - test/dummy/public/404.html
358
346
  - test/dummy/public/422.html
359
347
  - test/dummy/public/500.html
@@ -1,25 +0,0 @@
1
- require 'spec_helper'
2
-
3
- # the Job API goes here
4
- describe Jobs do
5
- subject { Job.new }
6
-
7
- describe '#process' do
8
- let(:input) { 'My grandmom gave me a sweater for Christmas.' }
9
- let(:output) { subject.process(input) }
10
-
11
- it 'converts to lowercase' do
12
- expect(output.downcase).to eq output
13
- end
14
-
15
- it 'combines nouns with doge adjectives' do
16
- expect(output).to match /so grandmom\./i
17
- expect(output).to match /such sweater\./i
18
- expect(output).to match /very christmas\./i
19
- end
20
-
21
- it 'always appends "wow."' do
22
- expect(output).to end_with 'wow.'
23
- end
24
- end
25
- end
@@ -1,5 +0,0 @@
1
- require 'coveralls'
2
- Coveralls.wear!
3
-
4
- require 'pry'
5
- require 'jobs'
File without changes
File without changes
Binary file
@@ -1,284 +0,0 @@
1
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (0.1ms) select sqlite_version(*)
3
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6
-  (0.1ms) SELECT version FROM "schema_migrations"
7
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
8
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
-  (0.1ms) SELECT version FROM "schema_migrations"
12
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
- Migrating to CreateJobsJobs (20141102175536)
15
-  (0.1ms) begin transaction
16
-  (0.4ms) CREATE TABLE "jobs_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "where_to" varchar(255), "when_to" varchar(255), "how_to" varchar(255), "who_to" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
17
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141102175536"]]
18
-  (0.6ms) commit transaction
19
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
-  (0.1ms) begin transaction
22
- --------------------------------------------
23
- JobsTest: test_make_sure_it_is_a_Jobs_module
24
- --------------------------------------------
25
-  (0.0ms) rollback transaction
26
-  (0.0ms) begin transaction
27
- ------------------------------------------------
28
- Jobs::JobsControllerTest: test_should_create_job
29
- ------------------------------------------------
30
-  (0.1ms) rollback transaction
31
-  (0.1ms) begin transaction
32
- -------------------------------------------------
33
- Jobs::JobsControllerTest: test_should_destroy_job
34
- -------------------------------------------------
35
-  (0.0ms) rollback transaction
36
-  (0.0ms) begin transaction
37
- ----------------------------------------------
38
- Jobs::JobsControllerTest: test_should_get_edit
39
- ----------------------------------------------
40
-  (0.0ms) rollback transaction
41
-  (0.0ms) begin transaction
42
- -----------------------------------------------
43
- Jobs::JobsControllerTest: test_should_get_index
44
- -----------------------------------------------
45
-  (0.0ms) rollback transaction
46
-  (0.0ms) begin transaction
47
- ---------------------------------------------
48
- Jobs::JobsControllerTest: test_should_get_new
49
- ---------------------------------------------
50
-  (0.0ms) rollback transaction
51
-  (0.0ms) begin transaction
52
- ----------------------------------------------
53
- Jobs::JobsControllerTest: test_should_show_job
54
- ----------------------------------------------
55
-  (0.0ms) rollback transaction
56
-  (0.0ms) begin transaction
57
- ------------------------------------------------
58
- Jobs::JobsControllerTest: test_should_update_job
59
- ------------------------------------------------
60
-  (0.0ms) rollback transaction
61
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
62
-  (0.1ms) begin transaction
63
- --------------------------------------------
64
- JobsTest: test_make_sure_it_is_a_Jobs_module
65
- --------------------------------------------
66
-  (0.0ms) rollback transaction
67
-  (0.0ms) begin transaction
68
- ------------------------------------------------
69
- Jobs::JobsControllerTest: test_should_create_job
70
- ------------------------------------------------
71
-  (0.1ms) rollback transaction
72
-  (0.0ms) begin transaction
73
- -------------------------------------------------
74
- Jobs::JobsControllerTest: test_should_destroy_job
75
- -------------------------------------------------
76
-  (0.0ms) rollback transaction
77
-  (0.1ms) begin transaction
78
- ----------------------------------------------
79
- Jobs::JobsControllerTest: test_should_get_edit
80
- ----------------------------------------------
81
-  (0.0ms) rollback transaction
82
-  (0.0ms) begin transaction
83
- -----------------------------------------------
84
- Jobs::JobsControllerTest: test_should_get_index
85
- -----------------------------------------------
86
-  (0.0ms) rollback transaction
87
-  (0.0ms) begin transaction
88
- ---------------------------------------------
89
- Jobs::JobsControllerTest: test_should_get_new
90
- ---------------------------------------------
91
-  (0.0ms) rollback transaction
92
-  (0.0ms) begin transaction
93
- ----------------------------------------------
94
- Jobs::JobsControllerTest: test_should_show_job
95
- ----------------------------------------------
96
-  (0.0ms) rollback transaction
97
-  (0.0ms) begin transaction
98
- ------------------------------------------------
99
- Jobs::JobsControllerTest: test_should_update_job
100
- ------------------------------------------------
101
-  (0.0ms) rollback transaction
102
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
-  (0.1ms) begin transaction
104
- Fixture Delete (0.4ms) DELETE FROM "jobs_jobs"
105
- Fixture Insert (0.3ms) INSERT INTO "jobs_jobs" ("where_to", "when_to", "how_to", "who_to", "description", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', 'MyString', 'MyText', '2014-11-02 20:32:29', '2014-11-02 20:32:29', 980190962)
106
- Fixture Insert (0.1ms) INSERT INTO "jobs_jobs" ("where_to", "when_to", "how_to", "who_to", "description", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', 'MyString', 'MyText', '2014-11-02 20:32:29', '2014-11-02 20:32:29', 298486374)
107
-  (0.5ms) commit transaction
108
-  (0.0ms) begin transaction
109
- --------------------------------------------
110
- JobsTest: test_make_sure_it_is_a_Jobs_module
111
- --------------------------------------------
112
-  (0.0ms) rollback transaction
113
-  (0.0ms) begin transaction
114
- ------------------------------------------------
115
- Jobs::JobsControllerTest: test_should_create_job
116
- ------------------------------------------------
117
- Jobs::Job Load (0.2ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
118
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
119
- Processing by Jobs::JobsController#create as HTML
120
- Parameters: {"job"=>{"description"=>"MyText", "how_to"=>"MyString", "when_to"=>"MyString", "where_to"=>"MyString", "who_to"=>"MyString"}}
121
-  (0.1ms) SAVEPOINT active_record_1
122
- SQL (0.3ms) INSERT INTO "jobs_jobs" ("created_at", "description", "how_to", "updated_at", "when_to", "where_to", "who_to") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-11-02 20:32:29.817324"], ["description", "MyText"], ["how_to", "MyString"], ["updated_at", "2014-11-02 20:32:29.817324"], ["when_to", "MyString"], ["where_to", "MyString"], ["who_to", "MyString"]]
123
-  (0.0ms) RELEASE SAVEPOINT active_record_1
124
- Redirected to http://test.host/jobs/jobs/980190963
125
- Completed 302 Found in 6ms (ActiveRecord: 0.4ms)
126
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
127
-  (0.5ms) rollback transaction
128
-  (0.1ms) begin transaction
129
- -------------------------------------------------
130
- Jobs::JobsControllerTest: test_should_destroy_job
131
- -------------------------------------------------
132
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
133
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
134
- Processing by Jobs::JobsController#destroy as HTML
135
- Parameters: {"id"=>"980190962"}
136
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
137
-  (0.0ms) SAVEPOINT active_record_1
138
- SQL (0.2ms) DELETE FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? [["id", 980190962]]
139
-  (0.0ms) RELEASE SAVEPOINT active_record_1
140
- Redirected to http://test.host/jobs/jobs
141
- Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
142
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
143
-  (0.3ms) rollback transaction
144
-  (0.1ms) begin transaction
145
- ----------------------------------------------
146
- Jobs::JobsControllerTest: test_should_get_edit
147
- ----------------------------------------------
148
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
149
- Processing by Jobs::JobsController#edit as HTML
150
- Parameters: {"id"=>"980190962"}
151
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
152
- Rendered /Users/Walther/Documents/RailsProjects/jobs/app/views/jobs/jobs/_form.html.erb (14.0ms)
153
- Completed 200 OK in 43ms (Views: 42.8ms | ActiveRecord: 0.0ms)
154
-  (0.1ms) rollback transaction
155
-  (0.0ms) begin transaction
156
- -----------------------------------------------
157
- Jobs::JobsControllerTest: test_should_get_index
158
- -----------------------------------------------
159
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
160
- Processing by Jobs::JobsController#index as HTML
161
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs"
162
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.1ms)
163
-  (0.1ms) rollback transaction
164
-  (0.0ms) begin transaction
165
- ---------------------------------------------
166
- Jobs::JobsControllerTest: test_should_get_new
167
- ---------------------------------------------
168
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
169
- Processing by Jobs::JobsController#new as HTML
170
- Rendered /Users/Walther/Documents/RailsProjects/jobs/app/views/jobs/jobs/_form.html.erb (2.0ms)
171
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
172
-  (0.1ms) rollback transaction
173
-  (0.0ms) begin transaction
174
- ----------------------------------------------
175
- Jobs::JobsControllerTest: test_should_show_job
176
- ----------------------------------------------
177
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
178
- Processing by Jobs::JobsController#show as HTML
179
- Parameters: {"id"=>"980190962"}
180
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
181
- Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
182
-  (0.1ms) rollback transaction
183
-  (0.1ms) begin transaction
184
- ------------------------------------------------
185
- Jobs::JobsControllerTest: test_should_update_job
186
- ------------------------------------------------
187
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
188
- Processing by Jobs::JobsController#update as HTML
189
- Parameters: {"job"=>{"description"=>"MyText", "how_to"=>"MyString", "when_to"=>"MyString", "where_to"=>"MyString", "who_to"=>"MyString"}, "id"=>"980190962"}
190
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
191
-  (0.0ms) SAVEPOINT active_record_1
192
-  (0.0ms) RELEASE SAVEPOINT active_record_1
193
- Redirected to http://test.host/jobs/jobs/980190962
194
- Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
195
-  (0.0ms) rollback transaction
196
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
197
-  (0.1ms) begin transaction
198
- Fixture Delete (0.3ms) DELETE FROM "jobs_jobs"
199
- Fixture Insert (0.1ms) INSERT INTO "jobs_jobs" ("where_to", "when_to", "how_to", "who_to", "description", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', 'MyString', 'MyText', '2014-11-02 20:34:05', '2014-11-02 20:34:05', 980190962)
200
- Fixture Insert (0.1ms) INSERT INTO "jobs_jobs" ("where_to", "when_to", "how_to", "who_to", "description", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', 'MyString', 'MyText', '2014-11-02 20:34:05', '2014-11-02 20:34:05', 298486374)
201
-  (0.6ms) commit transaction
202
-  (0.0ms) begin transaction
203
- ------------------------------------------------
204
- Jobs::JobsControllerTest: test_should_create_job
205
- ------------------------------------------------
206
- Jobs::Job Load (0.2ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
207
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
208
- Processing by Jobs::JobsController#create as HTML
209
- Parameters: {"job"=>{"description"=>"MyText", "how_to"=>"MyString", "when_to"=>"MyString", "where_to"=>"MyString", "who_to"=>"MyString"}}
210
-  (0.1ms) SAVEPOINT active_record_1
211
- SQL (0.3ms) INSERT INTO "jobs_jobs" ("created_at", "description", "how_to", "updated_at", "when_to", "where_to", "who_to") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-11-02 20:34:05.651362"], ["description", "MyText"], ["how_to", "MyString"], ["updated_at", "2014-11-02 20:34:05.651362"], ["when_to", "MyString"], ["where_to", "MyString"], ["who_to", "MyString"]]
212
-  (0.0ms) RELEASE SAVEPOINT active_record_1
213
- Redirected to http://test.host/jobs/jobs/980190963
214
- Completed 302 Found in 6ms (ActiveRecord: 0.4ms)
215
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
216
-  (0.3ms) rollback transaction
217
-  (0.0ms) begin transaction
218
- -------------------------------------------------
219
- Jobs::JobsControllerTest: test_should_destroy_job
220
- -------------------------------------------------
221
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
222
-  (0.0ms) SELECT COUNT(*) FROM "jobs_jobs"
223
- Processing by Jobs::JobsController#destroy as HTML
224
- Parameters: {"id"=>"980190962"}
225
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
226
-  (0.1ms) SAVEPOINT active_record_1
227
- SQL (0.3ms) DELETE FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? [["id", 980190962]]
228
-  (0.1ms) RELEASE SAVEPOINT active_record_1
229
- Redirected to http://test.host/jobs/jobs
230
- Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
231
-  (0.1ms) SELECT COUNT(*) FROM "jobs_jobs"
232
-  (0.5ms) rollback transaction
233
-  (0.0ms) begin transaction
234
- ----------------------------------------------
235
- Jobs::JobsControllerTest: test_should_get_edit
236
- ----------------------------------------------
237
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
238
- Processing by Jobs::JobsController#edit as HTML
239
- Parameters: {"id"=>"980190962"}
240
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
241
- Rendered /Users/Walther/Documents/RailsProjects/jobs/app/views/jobs/jobs/_form.html.erb (17.8ms)
242
- Completed 200 OK in 40ms (Views: 39.9ms | ActiveRecord: 0.0ms)
243
-  (0.1ms) rollback transaction
244
-  (0.1ms) begin transaction
245
- -----------------------------------------------
246
- Jobs::JobsControllerTest: test_should_get_index
247
- -----------------------------------------------
248
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
249
- Processing by Jobs::JobsController#index as HTML
250
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs"
251
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
252
-  (0.1ms) rollback transaction
253
-  (0.0ms) begin transaction
254
- ---------------------------------------------
255
- Jobs::JobsControllerTest: test_should_get_new
256
- ---------------------------------------------
257
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
258
- Processing by Jobs::JobsController#new as HTML
259
- Rendered /Users/Walther/Documents/RailsProjects/jobs/app/views/jobs/jobs/_form.html.erb (2.7ms)
260
- Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
261
-  (0.1ms) rollback transaction
262
-  (0.0ms) begin transaction
263
- ----------------------------------------------
264
- Jobs::JobsControllerTest: test_should_show_job
265
- ----------------------------------------------
266
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
267
- Processing by Jobs::JobsController#show as HTML
268
- Parameters: {"id"=>"980190962"}
269
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
270
- Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
271
-  (0.1ms) rollback transaction
272
-  (0.0ms) begin transaction
273
- ------------------------------------------------
274
- Jobs::JobsControllerTest: test_should_update_job
275
- ------------------------------------------------
276
- Jobs::Job Load (0.1ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
277
- Processing by Jobs::JobsController#update as HTML
278
- Parameters: {"job"=>{"description"=>"MyText", "how_to"=>"MyString", "when_to"=>"MyString", "where_to"=>"MyString", "who_to"=>"MyString"}, "id"=>"980190962"}
279
- Jobs::Job Load (0.0ms) SELECT "jobs_jobs".* FROM "jobs_jobs" WHERE "jobs_jobs"."id" = ? LIMIT 1 [["id", 980190962]]
280
-  (0.0ms) SAVEPOINT active_record_1
281
-  (0.0ms) RELEASE SAVEPOINT active_record_1
282
- Redirected to http://test.host/jobs/jobs/980190962
283
- Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
284
-  (0.0ms) rollback transaction