irreverent 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +8 -4
- data/lib/generators/irreverent/install/templates/controller.rb +2 -0
- data/lib/irreverent/version.rb +1 -1
- data/test/dummy/log/test.log +295 -0
- metadata +2 -3
- data/README.rdoc +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4aa83104ca79ef9bc7617877e95638bcab89725f
|
4
|
+
data.tar.gz: 64b74746704a10246b9a0dc4ad57494cf015b34c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c105cdcb6ecfda6fcae9d986932170653282b38c17cdf3b5f05d0f9ed1b0ef6adcafdc7dd3b29fe58c38d04ac68b3206536b8cc85d2c0bc0cdd0f9fae9c80652
|
7
|
+
data.tar.gz: 22f918fe330792f622c60048bc74fb3f132e482d516afa7624674f6e95c835774d67a1e159ad21a61b2108befae0a4f702890d4a0e8dff129e05725f7ddfa8a8
|
data/Rakefile
CHANGED
@@ -14,9 +14,6 @@ RDoc::Task.new(:rdoc) do |rdoc|
|
|
14
14
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
15
|
end
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
17
|
Bundler::GemHelper.install_tasks
|
21
18
|
|
22
19
|
require 'rake/testtask'
|
@@ -28,5 +25,12 @@ Rake::TestTask.new(:test) do |t|
|
|
28
25
|
t.verbose = false
|
29
26
|
end
|
30
27
|
|
31
|
-
|
32
28
|
task default: :test
|
29
|
+
|
30
|
+
task :console do
|
31
|
+
require 'irb'
|
32
|
+
require 'irb/completion'
|
33
|
+
require 'irreverent'
|
34
|
+
ARGV.clear
|
35
|
+
IRB.start
|
36
|
+
end
|
data/lib/irreverent/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -414,3 +414,298 @@ Processing by UsersController#update as HTML
|
|
414
414
|
Redirected to http://test.host/users/1
|
415
415
|
Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
|
416
416
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
417
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
418
|
+
-------------------------------------------------------------
|
419
|
+
FlashTest: test_sets_alert_messages_from_the_controller_scope
|
420
|
+
-------------------------------------------------------------
|
421
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
422
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00], ["name", "Chuck Norris"], ["updated_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00]]
|
423
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
424
|
+
Processing by UsersController#destroy as HTML
|
425
|
+
Parameters: {"id"=>"1"}
|
426
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
427
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
428
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
429
|
+
Redirected to http://test.host/users/1
|
430
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.2ms)
|
431
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
433
|
+
----------------------------------------------------------
|
434
|
+
FlashTest: test_sets_notice_message_on_successful_creation
|
435
|
+
----------------------------------------------------------
|
436
|
+
Processing by UsersController#create as HTML
|
437
|
+
Parameters: {"user"=>{"name"=>"John Doe"}}
|
438
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
439
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00]]
|
440
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
441
|
+
Redirected to http://test.host/users/1
|
442
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
443
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
444
|
+
[1m[35m (0.0ms)[0m begin transaction
|
445
|
+
---------------------------------------------------------
|
446
|
+
FlashTest: test_sets_notice_message_on_successful_destroy
|
447
|
+
---------------------------------------------------------
|
448
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
449
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00]]
|
450
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
451
|
+
Processing by UsersController#destroy as HTML
|
452
|
+
Parameters: {"id"=>"1"}
|
453
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
|
454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
455
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
456
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
457
|
+
Redirected to http://test.host/users
|
458
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
459
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
460
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
461
|
+
--------------------------------------------------------
|
462
|
+
FlashTest: test_sets_notice_message_on_successful_update
|
463
|
+
--------------------------------------------------------
|
464
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
465
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00]]
|
466
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
467
|
+
Processing by UsersController#update as HTML
|
468
|
+
Parameters: {"user"=>{"name"=>"Another John Doe"}, "id"=>"1"}
|
469
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
470
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
471
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["name", "Another John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:16 UTC +00:00]]
|
472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
473
|
+
Redirected to http://test.host/users/1
|
474
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
475
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
476
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
477
|
+
-------------------------------------------------------------
|
478
|
+
FlashTest: test_sets_alert_messages_from_the_controller_scope
|
479
|
+
-------------------------------------------------------------
|
480
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
481
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00], ["name", "Chuck Norris"], ["updated_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00]]
|
482
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
483
|
+
Processing by UsersController#destroy as HTML
|
484
|
+
Parameters: {"id"=>"1"}
|
485
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
486
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
487
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
488
|
+
Redirected to http://test.host/users/1
|
489
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.3ms)
|
490
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
491
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
492
|
+
----------------------------------------------------------
|
493
|
+
FlashTest: test_sets_notice_message_on_successful_creation
|
494
|
+
----------------------------------------------------------
|
495
|
+
Processing by UsersController#create as HTML
|
496
|
+
Parameters: {"user"=>{"name"=>"John Doe"}}
|
497
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
498
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00]]
|
499
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
500
|
+
Redirected to http://test.host/users/1
|
501
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
502
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
503
|
+
[1m[35m (0.0ms)[0m begin transaction
|
504
|
+
---------------------------------------------------------
|
505
|
+
FlashTest: test_sets_notice_message_on_successful_destroy
|
506
|
+
---------------------------------------------------------
|
507
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00]]
|
509
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
510
|
+
Processing by UsersController#destroy as HTML
|
511
|
+
Parameters: {"id"=>"1"}
|
512
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
|
513
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
514
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
515
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
516
|
+
Redirected to http://test.host/users
|
517
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
518
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
519
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
520
|
+
--------------------------------------------------------
|
521
|
+
FlashTest: test_sets_notice_message_on_successful_update
|
522
|
+
--------------------------------------------------------
|
523
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
524
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00]]
|
525
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
526
|
+
Processing by UsersController#update as HTML
|
527
|
+
Parameters: {"user"=>{"name"=>"Another John Doe"}, "id"=>"1"}
|
528
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
530
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["name", "Another John Doe"], ["updated_at", Sat, 08 Feb 2014 14:35:36 UTC +00:00]]
|
531
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
532
|
+
Redirected to http://test.host/users/1
|
533
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
534
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
535
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
536
|
+
-------------------------------------------------------------
|
537
|
+
FlashTest: test_sets_alert_messages_from_the_controller_scope
|
538
|
+
-------------------------------------------------------------
|
539
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
540
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00], ["name", "Chuck Norris"], ["updated_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00]]
|
541
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
542
|
+
Processing by UsersController#destroy as HTML
|
543
|
+
Parameters: {"id"=>"1"}
|
544
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
546
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
547
|
+
Redirected to http://test.host/users/1
|
548
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.2ms)
|
549
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
550
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
551
|
+
----------------------------------------------------------
|
552
|
+
FlashTest: test_sets_notice_message_on_successful_creation
|
553
|
+
----------------------------------------------------------
|
554
|
+
Processing by UsersController#create as HTML
|
555
|
+
Parameters: {"user"=>{"name"=>"John Doe"}}
|
556
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
557
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00]]
|
558
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
559
|
+
Redirected to http://test.host/users/1
|
560
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
561
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
562
|
+
[1m[35m (0.0ms)[0m begin transaction
|
563
|
+
---------------------------------------------------------
|
564
|
+
FlashTest: test_sets_notice_message_on_successful_destroy
|
565
|
+
---------------------------------------------------------
|
566
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
567
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00]]
|
568
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
569
|
+
Processing by UsersController#destroy as HTML
|
570
|
+
Parameters: {"id"=>"1"}
|
571
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
|
572
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
573
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
574
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
575
|
+
Redirected to http://test.host/users
|
576
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
577
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
579
|
+
--------------------------------------------------------
|
580
|
+
FlashTest: test_sets_notice_message_on_successful_update
|
581
|
+
--------------------------------------------------------
|
582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
583
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00]]
|
584
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
585
|
+
Processing by UsersController#update as HTML
|
586
|
+
Parameters: {"user"=>{"name"=>"Another John Doe"}, "id"=>"1"}
|
587
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
589
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["name", "Another John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:05 UTC +00:00]]
|
590
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
591
|
+
Redirected to http://test.host/users/1
|
592
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
593
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
594
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
595
|
+
-------------------------------------------------------------
|
596
|
+
FlashTest: test_sets_alert_messages_from_the_controller_scope
|
597
|
+
-------------------------------------------------------------
|
598
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
599
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00], ["name", "Chuck Norris"], ["updated_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00]]
|
600
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
601
|
+
Processing by UsersController#destroy as HTML
|
602
|
+
Parameters: {"id"=>"1"}
|
603
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
604
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
605
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
606
|
+
Redirected to http://test.host/users/1
|
607
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.2ms)
|
608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
609
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
610
|
+
----------------------------------------------------------
|
611
|
+
FlashTest: test_sets_notice_message_on_successful_creation
|
612
|
+
----------------------------------------------------------
|
613
|
+
Processing by UsersController#create as HTML
|
614
|
+
Parameters: {"user"=>{"name"=>"John Doe"}}
|
615
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
616
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00]]
|
617
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
618
|
+
Redirected to http://test.host/users/1
|
619
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.3ms)
|
620
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
621
|
+
[1m[35m (0.1ms)[0m begin transaction
|
622
|
+
---------------------------------------------------------
|
623
|
+
FlashTest: test_sets_notice_message_on_successful_destroy
|
624
|
+
---------------------------------------------------------
|
625
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
626
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00]]
|
627
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
628
|
+
Processing by UsersController#destroy as HTML
|
629
|
+
Parameters: {"id"=>"1"}
|
630
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
|
631
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
632
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
633
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
634
|
+
Redirected to http://test.host/users
|
635
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
636
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
638
|
+
--------------------------------------------------------
|
639
|
+
FlashTest: test_sets_notice_message_on_successful_update
|
640
|
+
--------------------------------------------------------
|
641
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
642
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00]]
|
643
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
644
|
+
Processing by UsersController#update as HTML
|
645
|
+
Parameters: {"user"=>{"name"=>"Another John Doe"}, "id"=>"1"}
|
646
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
647
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
648
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["name", "Another John Doe"], ["updated_at", Sat, 08 Feb 2014 14:36:26 UTC +00:00]]
|
649
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
650
|
+
Redirected to http://test.host/users/1
|
651
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
652
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
653
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
654
|
+
-------------------------------------------------------------
|
655
|
+
FlashTest: test_sets_alert_messages_from_the_controller_scope
|
656
|
+
-------------------------------------------------------------
|
657
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
658
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00], ["name", "Chuck Norris"], ["updated_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00]]
|
659
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
660
|
+
Processing by UsersController#destroy as HTML
|
661
|
+
Parameters: {"id"=>"1"}
|
662
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
664
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
665
|
+
Redirected to http://test.host/users/1
|
666
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.2ms)
|
667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
669
|
+
----------------------------------------------------------
|
670
|
+
FlashTest: test_sets_notice_message_on_successful_creation
|
671
|
+
----------------------------------------------------------
|
672
|
+
Processing by UsersController#create as HTML
|
673
|
+
Parameters: {"user"=>{"name"=>"John Doe"}}
|
674
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
675
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00]]
|
676
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
677
|
+
Redirected to http://test.host/users/1
|
678
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.3ms)
|
679
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
680
|
+
[1m[35m (0.0ms)[0m begin transaction
|
681
|
+
---------------------------------------------------------
|
682
|
+
FlashTest: test_sets_notice_message_on_successful_destroy
|
683
|
+
---------------------------------------------------------
|
684
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
685
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00]]
|
686
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
687
|
+
Processing by UsersController#destroy as HTML
|
688
|
+
Parameters: {"id"=>"1"}
|
689
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
|
690
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
691
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
692
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
693
|
+
Redirected to http://test.host/users
|
694
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
695
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
697
|
+
--------------------------------------------------------
|
698
|
+
FlashTest: test_sets_notice_message_on_successful_update
|
699
|
+
--------------------------------------------------------
|
700
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
701
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00], ["name", "John Doe"], ["updated_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00]]
|
702
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
703
|
+
Processing by UsersController#update as HTML
|
704
|
+
Parameters: {"user"=>{"name"=>"Another John Doe"}, "id"=>"1"}
|
705
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
|
706
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
707
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["name", "Another John Doe"], ["updated_at", Sat, 08 Feb 2014 15:19:57 UTC +00:00]]
|
708
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
709
|
+
Redirected to http://test.host/users/1
|
710
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
711
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irreverent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franco Catena
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -46,7 +46,6 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- MIT-LICENSE
|
49
|
-
- README.rdoc
|
50
49
|
- Rakefile
|
51
50
|
- lib/generators/irreverent/install/install_generator.rb
|
52
51
|
- lib/generators/irreverent/install/templates/controller.rb
|