letter_bomb 0.1.1 → 0.1.3

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: 8726d19bfbacb1c4cbf0f1b51fa7a0d4049856e8
4
- data.tar.gz: f0aabdc7fca3bf3366ea92c46467e435a280ecc4
3
+ metadata.gz: 727875388361f75d34008b1fdc4357bc0b480052
4
+ data.tar.gz: 7ea281bd112250ace6e750716237fd0418088ac4
5
5
  SHA512:
6
- metadata.gz: c3100a2a0354d3b96b180969296a26dfd45ec996484eae44ff29ca422cb1fe7f85738750053de9735c6be404d62431995f73422312c786a83e111685070e61e6
7
- data.tar.gz: 8ba8b420adf9e2bbfb9ea4482aa667224e9414f3241a2440a4f1cc804e4e470c38e8b46de76489d98d7d9216de654e00943b1f392c10af435650370c2e89034d
6
+ metadata.gz: 5f7116ce0cd1147c63432ba133dbd6128eaf0148ca3eef103da19f31ca4a7e4c492222083d6825afd95efcf2c34aa190dd9298bddb242ee471dae7b022240a3c
7
+ data.tar.gz: cfa030c3977cbf549b68f1b759f65ecc7701221a97d0b5816042eca768a09926712333be8f31393d023cd1e4fb71a068b188f2cd3b61da5b2bb26d79653e7e2f
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # LetterBomb [![Build Status](https://travis-ci.org/ags/letter_bomb.png?branch=master)](https://travis-ci.org/ags/letter_bomb)
1
+ # letter_bomb [![Build Status](https://travis-ci.org/ags/letter_bomb.png?branch=master)](https://travis-ci.org/ags/letter_bomb)
2
2
 
3
3
  Emails are pretty dangerous - inspect your mailer templates from the safety
4
4
  of your browser.
@@ -41,6 +41,11 @@ Preview methods are wrapped in an ActiveRecord transaction block that will be
41
41
  rolled back after execution, so it's safe to create your own test data within
42
42
  them.
43
43
 
44
+ ## Contributors
45
+
46
+ * [ags](https://github.com/ags)
47
+ * [andrewk](https://github.com/andrewk)
48
+
44
49
  ## Alternatives
45
50
 
46
51
  Also check out 37signals [mail_view](https://github.com/37signals/mail_view),
@@ -1,7 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
- <title>LetterBomb</title>
5
4
  <%= yield :head %>
6
5
  </head>
7
6
  <body>
@@ -1,7 +1,90 @@
1
- <h1>Mailer Previews</h1>
1
+ <% content_for :head do %>
2
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
3
+ <title>letter_bomb</title>
4
+ <style type="text/css">
5
+ html
6
+ {
7
+ background:#C5B9AB;
8
+ }
2
9
 
3
- <% @mailer_classes.each do |mailer| %>
4
- <p><%= mailer.name %></p>
10
+ body
11
+ {
12
+ font:16px/1.5 Menlo, Monaco, monospace;
13
+ max-width:460px;
14
+ margin:0 auto;
15
+ padding:20px 40px;
16
+ border-top:none;
17
+ background:#FDF7E7;
18
+ box-shadow:0 0 12px #998772;
19
+ }
20
+
21
+ h1
22
+ {
23
+ color:#C5B9AB;
24
+ margin-top:0;
25
+ font-size:20px;
26
+ font-weight:normal;
27
+ font-family:monospace;
28
+ text-align:center;
29
+ padding:10px 0;
30
+ border-bottom:1px solid #E7DCD0;
31
+ border-top:1px solid #E7DCD0;
32
+ }
33
+
34
+ h2
35
+ {
36
+ font-size:16px;
37
+ color:#724F28;
38
+ font-weight:normal;
39
+ margin:30px 0 10px;
40
+ }
41
+
42
+ ul
43
+ {
44
+ padding-left:10px;
45
+ margin:10px 0 20px;
46
+ }
47
+
48
+ li
49
+ {
50
+ list-style:inside none;
51
+ margin-left:0;
52
+ padding-left:0;
53
+ }
54
+
55
+ li:before
56
+ {
57
+ content: ">";
58
+ font-size:14px;
59
+ color:#C5B9AB;
60
+ padding-right:20px;
61
+ font-family:monospace;
62
+ }
63
+
64
+ a
65
+ {
66
+ text-decoration:none;
67
+ color:rgb(11, 139, 156);
68
+ }
69
+
70
+ a:hover
71
+ {
72
+ color:rgb(253, 126, 26);
73
+ }
74
+ @media screen and (max-width: 550px) {
75
+ html { background:#FDF7E7; }
76
+ body { padding:10px; font-size:13px;box-shadow:none;}
77
+ h1 { font-size:15px; padding:5px 0; }
78
+ h2 { font-size:13px; margin-top:15px; }
79
+ }
80
+ </style>
81
+ <% end %>
82
+
83
+ <div class="lbindex">
84
+ <h1>letter_bomb</h1>
85
+
86
+ <% @mailer_classes.sort_by(&:name).each do |mailer| %>
87
+ <h2><%= mailer.name %></h2>
5
88
 
6
89
  <ul>
7
90
  <% mailer.actions.each do |action| %>
@@ -10,3 +93,4 @@
10
93
  </ul>
11
94
 
12
95
  <% end %>
96
+ </div>
@@ -1,5 +1,6 @@
1
1
  <% content_for :head do %>
2
2
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
3
+ <title><%= @action.name %> - letter_bomb %></title>
3
4
  <style type="text/css">
4
5
  #message_headers {
5
6
  width: 100%;
@@ -1,3 +1,3 @@
1
1
  module LetterBomb
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.3'
3
3
  end
File without changes
@@ -14303,3 +14303,22 @@ Connecting to database specified by database.yml
14303
14303
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
14304
14304
  Connecting to database specified by database.yml
14305
14305
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14306
+ Connecting to database specified by database.yml
14307
+
14308
+
14309
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:25:44 +1000
14310
+ Processing by LetterBomb::MailersController#index as HTML
14311
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (19.7ms)
14312
+ Completed 200 OK in 248ms (Views: 24.5ms | ActiveRecord: 0.0ms)
14313
+
14314
+
14315
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:25:59 +1000
14316
+ Processing by LetterBomb::MailersController#index as HTML
14317
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
14318
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
14319
+
14320
+
14321
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:28:07 +1000
14322
+ Processing by LetterBomb::MailersController#index as HTML
14323
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
14324
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
@@ -2837,3 +2837,406 @@ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2837
2837
   (0.0ms) rollback transaction
2838
2838
   (0.0ms) begin transaction
2839
2839
   (0.0ms) rollback transaction
2840
+ Connecting to database specified by database.yml
2841
+  (0.5ms) select sqlite_version(*)
2842
+  (2.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2843
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2844
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2845
+  (0.1ms) SELECT version FROM "schema_migrations"
2846
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
2847
+ Connecting to database specified by database.yml
2848
+  (0.2ms) begin transaction
2849
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-09 16:45:22 +1000
2850
+ Processing by LetterBomb::MailersController#show as HTML
2851
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2852
+  (0.0ms) SAVEPOINT active_record_1
2853
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "john"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2854
+ Rendered user_mailer/welcome.html.erb (0.9ms)
2855
+ Rendered user_mailer/welcome.text.erb (0.2ms)
2856
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2857
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.6ms)
2858
+ Completed 200 OK in 33ms (Views: 4.3ms | ActiveRecord: 3.0ms)
2859
+  (0.4ms) rollback transaction
2860
+  (0.0ms) begin transaction
2861
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-09 16:45:22 +1000
2862
+ Processing by LetterBomb::MailersController#show as HTML
2863
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2864
+  (0.0ms) SAVEPOINT active_record_1
2865
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "john"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2866
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2867
+ Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.5ms)
2868
+  (0.5ms) rollback transaction
2869
+  (0.0ms) begin transaction
2870
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-09 16:45:22 +1000
2871
+ Processing by LetterBomb::MailersController#show as HTML
2872
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2873
+  (0.0ms) SAVEPOINT active_record_1
2874
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "john"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2875
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2876
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms)
2877
+  (0.5ms) rollback transaction
2878
+  (0.0ms) begin transaction
2879
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-09 16:45:22 +1000
2880
+ Processing by LetterBomb::MailersController#show as HTML
2881
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2882
+  (0.0ms) SAVEPOINT active_record_1
2883
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "john"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2884
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2885
+ Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.5ms)
2886
+  (0.5ms) rollback transaction
2887
+  (0.1ms) begin transaction
2888
+ Started GET "/" for 127.0.0.1 at 2013-08-09 16:45:22 +1000
2889
+ Processing by LetterBomb::MailersController#index as HTML
2890
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2891
+  (0.1ms) rollback transaction
2892
+  (0.0ms) begin transaction
2893
+  (0.1ms) SELECT COUNT(*) FROM "users"
2894
+  (0.0ms) SAVEPOINT active_record_1
2895
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "bob"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2896
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2897
+  (0.1ms) SELECT COUNT(*) FROM "users"
2898
+  (0.4ms) rollback transaction
2899
+  (0.0ms) begin transaction
2900
+  (0.0ms) SAVEPOINT active_record_1
2901
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00], ["name", "bob"], ["updated_at", Fri, 09 Aug 2013 06:45:22 UTC +00:00]]
2902
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2903
+  (0.6ms) rollback transaction
2904
+  (0.0ms) begin transaction
2905
+  (0.0ms) rollback transaction
2906
+  (0.0ms) begin transaction
2907
+  (0.0ms) rollback transaction
2908
+ Connecting to database specified by database.yml
2909
+  (0.5ms) select sqlite_version(*)
2910
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2911
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2912
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2913
+  (0.1ms) SELECT version FROM "schema_migrations"
2914
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
2915
+ Connecting to database specified by database.yml
2916
+  (0.2ms) begin transaction
2917
+  (0.0ms) rollback transaction
2918
+  (0.0ms) begin transaction
2919
+  (0.0ms) rollback transaction
2920
+  (0.0ms) begin transaction
2921
+  (0.0ms) SELECT COUNT(*) FROM "users"
2922
+  (0.0ms) SAVEPOINT active_record_1
2923
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00], ["name", "bob"], ["updated_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00]]
2924
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2925
+  (0.1ms) SELECT COUNT(*) FROM "users"
2926
+  (0.5ms) rollback transaction
2927
+  (0.0ms) begin transaction
2928
+  (0.0ms) SAVEPOINT active_record_1
2929
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00], ["name", "bob"], ["updated_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00]]
2930
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2931
+  (0.4ms) rollback transaction
2932
+  (0.0ms) begin transaction
2933
+ Started GET "/" for 127.0.0.1 at 2013-08-29 09:46:57 +1000
2934
+ Processing by LetterBomb::MailersController#index as HTML
2935
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.9ms)
2936
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
2937
+  (0.0ms) rollback transaction
2938
+  (0.0ms) begin transaction
2939
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:46:57 +1000
2940
+ Processing by LetterBomb::MailersController#show as HTML
2941
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2942
+  (0.0ms) SAVEPOINT active_record_1
2943
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00]]
2944
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2945
+ Completed 200 OK in 21ms (Views: 3.4ms | ActiveRecord: 0.5ms)
2946
+  (0.4ms) rollback transaction
2947
+  (0.0ms) begin transaction
2948
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:46:57 +1000
2949
+ Processing by LetterBomb::MailersController#show as HTML
2950
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2951
+  (0.0ms) SAVEPOINT active_record_1
2952
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00]]
2953
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2954
+ Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms)
2955
+  (0.4ms) rollback transaction
2956
+  (0.0ms) begin transaction
2957
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:46:57 +1000
2958
+ Processing by LetterBomb::MailersController#show as HTML
2959
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2960
+  (0.1ms) SAVEPOINT active_record_1
2961
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:46:57 UTC +00:00]]
2962
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2963
+ Completed 200 OK in 14ms (Views: 1.2ms | ActiveRecord: 0.4ms)
2964
+  (0.4ms) rollback transaction
2965
+  (0.0ms) begin transaction
2966
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:46:58 +1000
2967
+ Processing by LetterBomb::MailersController#show as HTML
2968
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
2969
+  (0.0ms) SAVEPOINT active_record_1
2970
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:46:58 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:46:58 UTC +00:00]]
2971
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2972
+ Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.5ms)
2973
+  (0.5ms) rollback transaction
2974
+ Connecting to database specified by database.yml
2975
+  (0.6ms) select sqlite_version(*)
2976
+  (2.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2977
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2978
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2979
+  (0.1ms) SELECT version FROM "schema_migrations"
2980
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
2981
+ Connecting to database specified by database.yml
2982
+  (0.2ms) begin transaction
2983
+  (0.0ms) rollback transaction
2984
+  (0.0ms) begin transaction
2985
+  (0.0ms) rollback transaction
2986
+  (0.0ms) begin transaction
2987
+  (0.0ms) rollback transaction
2988
+  (0.0ms) begin transaction
2989
+  (0.0ms) SELECT COUNT(*) FROM "users"
2990
+  (0.0ms) SAVEPOINT active_record_1
2991
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "bob"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
2992
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2993
+  (0.1ms) SELECT COUNT(*) FROM "users"
2994
+  (1.3ms) rollback transaction
2995
+  (0.0ms) begin transaction
2996
+  (0.0ms) SAVEPOINT active_record_1
2997
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "bob"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
2998
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2999
+  (0.4ms) rollback transaction
3000
+  (0.0ms) begin transaction
3001
+ Started GET "/" for 127.0.0.1 at 2013-08-29 09:48:03 +1000
3002
+ Processing by LetterBomb::MailersController#index as HTML
3003
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.9ms)
3004
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
3005
+  (0.1ms) rollback transaction
3006
+  (0.0ms) begin transaction
3007
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:48:03 +1000
3008
+ Processing by LetterBomb::MailersController#show as HTML
3009
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3010
+  (0.0ms) SAVEPOINT active_record_1
3011
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
3012
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3013
+ Completed 200 OK in 19ms (Views: 3.9ms | ActiveRecord: 0.5ms)
3014
+  (0.3ms) rollback transaction
3015
+  (0.0ms) begin transaction
3016
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:48:03 +1000
3017
+ Processing by LetterBomb::MailersController#show as HTML
3018
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3019
+  (0.0ms) SAVEPOINT active_record_1
3020
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
3021
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3022
+ Completed 200 OK in 35ms (Views: 1.2ms | ActiveRecord: 0.5ms)
3023
+  (0.5ms) rollback transaction
3024
+  (0.0ms) begin transaction
3025
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:48:03 +1000
3026
+ Processing by LetterBomb::MailersController#show as HTML
3027
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3028
+  (0.0ms) SAVEPOINT active_record_1
3029
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
3030
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3031
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.4ms)
3032
+  (0.6ms) rollback transaction
3033
+  (0.0ms) begin transaction
3034
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 09:48:03 +1000
3035
+ Processing by LetterBomb::MailersController#show as HTML
3036
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3037
+  (0.0ms) SAVEPOINT active_record_1
3038
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00], ["name", "john"], ["updated_at", Wed, 28 Aug 2013 23:48:03 UTC +00:00]]
3039
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3040
+ Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.5ms)
3041
+  (0.4ms) rollback transaction
3042
+ Connecting to database specified by database.yml
3043
+  (0.5ms) select sqlite_version(*)
3044
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3045
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3046
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3047
+  (0.1ms) SELECT version FROM "schema_migrations"
3048
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3049
+ Connecting to database specified by database.yml
3050
+  (0.2ms) begin transaction
3051
+  (0.0ms) rollback transaction
3052
+  (0.0ms) begin transaction
3053
+  (0.0ms) rollback transaction
3054
+  (0.0ms) begin transaction
3055
+  (0.0ms) rollback transaction
3056
+  (0.0ms) begin transaction
3057
+  (0.0ms) SELECT COUNT(*) FROM "users"
3058
+  (0.0ms) SAVEPOINT active_record_1
3059
+ SQL (3.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3060
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3061
+  (0.0ms) SELECT COUNT(*) FROM "users"
3062
+  (1.5ms) rollback transaction
3063
+  (0.0ms) begin transaction
3064
+  (0.0ms) SAVEPOINT active_record_1
3065
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3066
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3067
+  (0.4ms) rollback transaction
3068
+  (0.0ms) begin transaction
3069
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:24:32 +1000
3070
+ Processing by LetterBomb::MailersController#index as HTML
3071
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (2.6ms)
3072
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.0ms)
3073
+  (0.1ms) rollback transaction
3074
+  (0.0ms) begin transaction
3075
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:24:32 +1000
3076
+ Processing by LetterBomb::MailersController#show as HTML
3077
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3078
+  (0.0ms) SAVEPOINT active_record_1
3079
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3080
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3081
+ Completed 200 OK in 19ms (Views: 3.4ms | ActiveRecord: 0.5ms)
3082
+  (0.4ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:24:32 +1000
3085
+ Processing by LetterBomb::MailersController#show as HTML
3086
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3087
+  (0.0ms) SAVEPOINT active_record_1
3088
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3089
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3090
+ Completed 200 OK in 35ms (Views: 1.0ms | ActiveRecord: 0.4ms)
3091
+  (0.5ms) rollback transaction
3092
+  (0.0ms) begin transaction
3093
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:24:32 +1000
3094
+ Processing by LetterBomb::MailersController#show as HTML
3095
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3096
+  (0.0ms) SAVEPOINT active_record_1
3097
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3098
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3099
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.4ms)
3100
+  (0.6ms) rollback transaction
3101
+  (0.0ms) begin transaction
3102
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:24:32 +1000
3103
+ Processing by LetterBomb::MailersController#show as HTML
3104
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3105
+  (0.0ms) SAVEPOINT active_record_1
3106
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:24:32 UTC +00:00]]
3107
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3108
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms)
3109
+  (0.5ms) rollback transaction
3110
+ Connecting to database specified by database.yml
3111
+  (0.5ms) select sqlite_version(*)
3112
+  (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3113
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3114
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3115
+  (0.1ms) SELECT version FROM "schema_migrations"
3116
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3117
+ Connecting to database specified by database.yml
3118
+  (0.3ms) begin transaction
3119
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:25:33 +1000
3120
+ Processing by LetterBomb::MailersController#show as HTML
3121
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3122
+  (0.0ms) SAVEPOINT active_record_1
3123
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3124
+ Rendered user_mailer/welcome.html.erb (0.9ms)
3125
+ Rendered user_mailer/welcome.text.erb (0.2ms)
3126
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3127
+ Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.8ms)
3128
+ Completed 200 OK in 32ms (Views: 4.6ms | ActiveRecord: 3.2ms)
3129
+  (0.5ms) rollback transaction
3130
+  (0.0ms) begin transaction
3131
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:25:33 +1000
3132
+ Processing by LetterBomb::MailersController#show as HTML
3133
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3134
+  (0.0ms) SAVEPOINT active_record_1
3135
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3136
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3137
+ Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.5ms)
3138
+  (2.4ms) rollback transaction
3139
+  (0.0ms) begin transaction
3140
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:25:33 +1000
3141
+ Processing by LetterBomb::MailersController#show as HTML
3142
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3143
+  (0.0ms) SAVEPOINT active_record_1
3144
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3145
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3146
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.5ms)
3147
+  (0.4ms) rollback transaction
3148
+  (0.0ms) begin transaction
3149
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:25:33 +1000
3150
+ Processing by LetterBomb::MailersController#show as HTML
3151
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3152
+  (0.0ms) SAVEPOINT active_record_1
3153
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3154
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3155
+ Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms)
3156
+  (0.5ms) rollback transaction
3157
+  (0.0ms) begin transaction
3158
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:25:33 +1000
3159
+ Processing by LetterBomb::MailersController#index as HTML
3160
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3161
+  (0.1ms) rollback transaction
3162
+  (0.0ms) begin transaction
3163
+  (0.1ms) SELECT COUNT(*) FROM "users"
3164
+  (0.0ms) SAVEPOINT active_record_1
3165
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3166
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3167
+  (0.1ms) SELECT COUNT(*) FROM "users"
3168
+  (0.3ms) rollback transaction
3169
+  (0.0ms) begin transaction
3170
+  (0.0ms) SAVEPOINT active_record_1
3171
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:25:33 UTC +00:00]]
3172
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3173
+  (0.4ms) rollback transaction
3174
+  (0.0ms) begin transaction
3175
+  (0.0ms) rollback transaction
3176
+  (0.0ms) begin transaction
3177
+  (0.0ms) rollback transaction
3178
+ Connecting to database specified by database.yml
3179
+  (0.5ms) select sqlite_version(*)
3180
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3181
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3182
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3183
+  (0.1ms) SELECT version FROM "schema_migrations"
3184
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430115218')
3185
+ Connecting to database specified by database.yml
3186
+  (0.2ms) begin transaction
3187
+ Started GET "/" for 127.0.0.1 at 2013-08-29 10:30:05 +1000
3188
+ Processing by LetterBomb::MailersController#index as HTML
3189
+ Completed 500 Internal Server Error in 1ms
3190
+  (0.1ms) rollback transaction
3191
+  (0.0ms) begin transaction
3192
+  (0.0ms) rollback transaction
3193
+  (0.0ms) begin transaction
3194
+  (0.0ms) rollback transaction
3195
+  (0.0ms) begin transaction
3196
+  (0.1ms) SELECT COUNT(*) FROM "users"
3197
+  (0.0ms) SAVEPOINT active_record_1
3198
+ SQL (9.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3199
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3200
+  (0.2ms) SELECT COUNT(*) FROM "users"
3201
+  (0.7ms) rollback transaction
3202
+  (0.1ms) begin transaction
3203
+  (0.1ms) SAVEPOINT active_record_1
3204
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "bob"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3205
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3206
+  (0.6ms) rollback transaction
3207
+  (0.1ms) begin transaction
3208
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:30:05 +1000
3209
+ Processing by LetterBomb::MailersController#show as HTML
3210
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3211
+  (0.1ms) SAVEPOINT active_record_1
3212
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3213
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
3214
+ Completed 200 OK in 52ms (Views: 9.1ms | ActiveRecord: 1.1ms)
3215
+  (0.7ms) rollback transaction
3216
+  (0.1ms) begin transaction
3217
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:30:05 +1000
3218
+ Processing by LetterBomb::MailersController#show as HTML
3219
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3220
+  (0.1ms) SAVEPOINT active_record_1
3221
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3222
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3223
+ Completed 200 OK in 22ms (Views: 1.8ms | ActiveRecord: 0.8ms)
3224
+  (0.5ms) rollback transaction
3225
+  (0.1ms) begin transaction
3226
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:30:05 +1000
3227
+ Processing by LetterBomb::MailersController#show as HTML
3228
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3229
+  (0.1ms) SAVEPOINT active_record_1
3230
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3231
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3232
+ Completed 200 OK in 20ms (Views: 1.7ms | ActiveRecord: 0.7ms)
3233
+  (0.5ms) rollback transaction
3234
+  (0.1ms) begin transaction
3235
+ Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-08-29 10:30:05 +1000
3236
+ Processing by LetterBomb::MailersController#show as HTML
3237
+ Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
3238
+  (0.1ms) SAVEPOINT active_record_1
3239
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00], ["name", "john"], ["updated_at", Thu, 29 Aug 2013 00:30:05 UTC +00:00]]
3240
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3241
+ Completed 200 OK in 18ms (Views: 1.6ms | ActiveRecord: 0.6ms)
3242
+  (0.5ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letter_bomb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-09 00:00:00.000000000 Z
11
+ date: 2013-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -99,6 +99,7 @@ files:
99
99
  - spec/dummy/config/locales/en.yml
100
100
  - spec/dummy/config/routes.rb
101
101
  - spec/dummy/config.ru
102
+ - spec/dummy/db/development.sqlite3
102
103
  - spec/dummy/db/migrate/20130430115218_create_users.rb
103
104
  - spec/dummy/db/schema.rb
104
105
  - spec/dummy/db/test.sqlite3
@@ -170,6 +171,7 @@ test_files:
170
171
  - spec/dummy/config/locales/en.yml
171
172
  - spec/dummy/config/routes.rb
172
173
  - spec/dummy/config.ru
174
+ - spec/dummy/db/development.sqlite3
173
175
  - spec/dummy/db/migrate/20130430115218_create_users.rb
174
176
  - spec/dummy/db/schema.rb
175
177
  - spec/dummy/db/test.sqlite3