bookkeeper 0.0.1.beta1 → 0.0.1.beta2

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.
Files changed (36) hide show
  1. data/app/assets/stylesheets/bookkeeper/scaffold.css +17 -17
  2. data/app/controllers/bookkeeper/purchases_controller.rb +3 -2
  3. data/app/views/bookkeeper/purchases/_form.html.erb +1 -1
  4. data/app/views/bookkeeper/purchases/edit.html.erb +3 -3
  5. data/app/views/bookkeeper/purchases/index.html.erb +11 -11
  6. data/app/views/bookkeeper/purchases/new.html.erb +2 -2
  7. data/config/locales/en.yml +35 -0
  8. data/config/locales/simple_form.en.yml +18 -8
  9. data/lib/bookkeeper/version.rb +1 -1
  10. data/spec/dummy/db/schema.rb +2 -0
  11. data/spec/dummy/db/test.sqlite3 +0 -0
  12. data/spec/dummy/log/test.log +329 -0
  13. data/spec/dummy/public/uploads/receipt.jpg +0 -0
  14. data/spec/dummy/public/uploads/thumb_receipt.jpg +0 -0
  15. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/receipt.jpg +0 -0
  16. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/thumb_receipt.jpg +0 -0
  17. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/receipt.jpg +0 -0
  18. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/thumb_receipt.jpg +0 -0
  19. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/receipt.jpg +0 -0
  20. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/thumb_receipt.jpg +0 -0
  21. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/receipt.jpg +0 -0
  22. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/thumb_receipt.jpg +0 -0
  23. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/receipt.jpg +0 -0
  24. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/thumb_receipt.jpg +0 -0
  25. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/receipt.jpg +0 -0
  26. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/thumb_receipt.jpg +0 -0
  27. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/receipt.jpg +0 -0
  28. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/thumb_receipt.jpg +0 -0
  29. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/receipt.jpg +0 -0
  30. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/thumb_receipt.jpg +0 -0
  31. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/receipt.jpg +0 -0
  32. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/thumb_receipt.jpg +0 -0
  33. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/receipt.jpg +0 -0
  34. data/spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/thumb_receipt.jpg +0 -0
  35. metadata +48 -3
  36. data/spec/dummy/db/development.sqlite3 +0 -0
@@ -1,20 +1,20 @@
1
- body { background-color: #fff; color: #333; }
2
-
3
- body, p, ol, ul, td {
4
- font-family: verdana, arial, helvetica, sans-serif;
5
- font-size: 13px;
6
- line-height: 18px;
7
- }
8
-
9
- pre {
10
- background-color: #eee;
11
- padding: 10px;
12
- font-size: 11px;
13
- }
14
-
15
- a { color: #000; }
16
- a:visited { color: #666; }
17
- a:hover { color: #fff; background-color:#000; }
1
+ /* body { background-color: #fff; color: #333; } */
2
+ /* */
3
+ /* body, p, ol, ul, td { */
4
+ /* font-family: verdana, arial, helvetica, sans-serif; */
5
+ /* font-size: 13px; */
6
+ /* line-height: 18px; */
7
+ /* } */
8
+ /* */
9
+ /* pre { */
10
+ /* background-color: #eee; */
11
+ /* padding: 10px; */
12
+ /* font-size: 11px; */
13
+ /* } */
14
+ /* */
15
+ /* a { color: #000; } */
16
+ /* a:visited { color: #666; } */
17
+ /* a:hover { color: #fff; background-color:#000; } */
18
18
 
19
19
  div.field, div.actions {
20
20
  margin-bottom: 10px;
@@ -38,7 +38,7 @@ module Bookkeeper
38
38
 
39
39
  respond_to do |format|
40
40
  if @purchase.save
41
- format.html { redirect_to purchases_path, notice: 'Purchase was successfully created.' }
41
+ format.html { redirect_to purchases_path, notice: I18n.t('.bookkeeper.controllers.purchases.created') }
42
42
  format.json { render json: @purchase, status: :created, location: @purchase }
43
43
  else
44
44
  format.html { render action: "new" }
@@ -52,7 +52,7 @@ module Bookkeeper
52
52
 
53
53
  respond_to do |format|
54
54
  if @purchase.update_attributes(params[:purchase])
55
- format.html { redirect_to purchases_path, notice: 'Purchase was successfully updated.' }
55
+ format.html { redirect_to purchases_path, notice: I18n.t('.bookkeeper.controllers.purchases.updated') }
56
56
  format.json { head :no_content }
57
57
  else
58
58
  format.html { render action: "edit" }
@@ -64,6 +64,7 @@ module Bookkeeper
64
64
  def destroy
65
65
  @purchase = Purchase.find(params[:id])
66
66
  @purchase.destroy
67
+ flash[:notice] = I18n.t('.bookkeeper.controllers.purchases.destroyed')
67
68
 
68
69
  respond_to do |format|
69
70
  format.html { redirect_to purchases_url }
@@ -12,6 +12,6 @@
12
12
  <%= f.input :receipt %>
13
13
  </div>
14
14
  <div class="form-actions">
15
- <%= button_tag '<i class="icon-ok"></i> Save'.html_safe, class: 'btn' %>
15
+ <%= button_tag ('<i class="icon-ok"></i> ' + t('bookkeeper.actions.save')).html_safe, class: 'btn' %>
16
16
  </div>
17
17
  <% end %>
@@ -1,6 +1,6 @@
1
- <h1>Editing purchase</h1>
1
+ <h1><%= t '.title' %></h1>
2
2
 
3
3
  <%= render 'form' %>
4
4
 
5
- <%= link_to '<i class="icon-search"></i> Show'.html_safe, @purchase, class: 'btn' %>
6
- <%= link_to '<i class="icon-arrow-left"></i> Back'.html_safe, purchases_path, class: 'btn' %>
5
+ <%= link_to ('<i class="icon-search"></i> ' + t('bookkeeper.actions.show')).html_safe, @purchase, class: 'btn' %>
6
+ <%= link_to ('<i class="icon-arrow-left"></i> ' + t('bookkeeper.actions.back')).html_safe, purchases_path, class: 'btn' %>
@@ -1,13 +1,13 @@
1
- <h1>Listing purchases</h1>
1
+ <h1><%= t '.title' %></h1>
2
2
 
3
3
  <table class='table table-striped table-condensed table-bordered'>
4
4
  <thead>
5
5
  <tr>
6
- <th>Title</th>
7
- <th>Description</th>
8
- <th>Purchase date</th>
9
- <th>Warranty duration</th>
10
- <th>Receipt</th>
6
+ <th><%=t 'bookkeeper.models.purchase.attributes.title' %></th>
7
+ <th><%=t 'bookkeeper.models.purchase.attributes.description' %></th>
8
+ <th><%=t 'bookkeeper.models.purchase.attributes.purchase_date' %></th>
9
+ <th><%=t 'bookkeeper.models.purchase.attributes.warranty_duration' %></th>
10
+ <th><%=t 'bookkeeper.models.purchase.attributes.receipt' %></th>
11
11
  <th></th>
12
12
  </tr>
13
13
  </thead>
@@ -17,12 +17,12 @@
17
17
  <td><%= purchase.title %></td>
18
18
  <td><%= purchase.description %></td>
19
19
  <td><%=l purchase.purchase_date rescue '' %></td>
20
- <td><%= purchase.warranty_duration %></td>
20
+ <td><%= purchase.warranty_duration %> <%=t '.months' %></td>
21
21
  <td><%= link_to "<i class='icon-download-alt'></i> #{purchase.receipt.file.filename}".html_safe, purchase.receipt.url, class: 'btn btn-mini' if purchase.receipt.file %></td>
22
22
  <td>
23
- <%= link_to '<i class="icon-search"></i> Show'.html_safe, purchase, class: 'btn btn-mini' %>
24
- <%= link_to '<i class="icon-pencil"></i> Edit'.html_safe, edit_purchase_path(purchase), class: 'btn btn-mini' %>
25
- <%= link_to '<i class="icon-remove"></i> Destroy'.html_safe, purchase, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-mini btn-danger' %>
23
+ <%= link_to ('<i class="icon-search"></i> ' + t('bookkeeper.actions.show')).html_safe, purchase, class: 'btn btn-mini' %>
24
+ <%= link_to ('<i class="icon-pencil"></i> ' + t('bookkeeper.actions.edit')).html_safe, edit_purchase_path(purchase), class: 'btn btn-mini' %>
25
+ <%= link_to ('<i class="icon-remove"></i> ' + t('bookkeeper.actions.destroy')).html_safe, purchase, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-mini btn-danger' %>
26
26
  </td>
27
27
  </tr>
28
28
  <% end %>
@@ -31,4 +31,4 @@
31
31
 
32
32
  <br />
33
33
 
34
- <%= link_to '<i class="icon-plus"></i> New Purchase'.html_safe, new_purchase_path, class: 'btn' %>
34
+ <%= link_to ('<i class="icon-plus"></i> ' + t('bookkeeper.actions.new')).html_safe, new_purchase_path, class: 'btn' %>
@@ -1,5 +1,5 @@
1
- <h1>New purchase</h1>
1
+ <h1><%= t '.title' %></h1>
2
2
 
3
3
  <%= render 'form' %>
4
4
 
5
- <%= link_to '<i class="icon-arrow-left"></i> Back'.html_safe, purchases_path, class: 'btn' %>
5
+ <%= link_to ('<i class="icon-arrow-left"></i> ' + t('bookkeeper.actions.back')).html_safe, purchases_path, class: 'btn' %>
@@ -0,0 +1,35 @@
1
+ en:
2
+ bookkeeper:
3
+ # actions
4
+ actions:
5
+ save: 'Save'
6
+ back: 'Back'
7
+ show: 'Show'
8
+ new: 'New'
9
+ edit: 'Edit'
10
+ destroy: 'Destroy'
11
+ destroy_confirm: 'Are you sure?'
12
+ # models
13
+ models:
14
+ purchase:
15
+ attributes:
16
+ title: 'Title'
17
+ description: 'Description'
18
+ purchase_date: 'Purchase date'
19
+ warranty_duration: 'Warranty duration'
20
+ receipt: 'Receipt'
21
+ # controllers
22
+ controllers:
23
+ purchases:
24
+ created: 'Purchase was successfully created.'
25
+ updated: 'Purchase was successfully updated.'
26
+ destroyed: 'Purchase was successfully deleted.'
27
+ # views
28
+ purchases:
29
+ index:
30
+ title: 'Listing purchases'
31
+ months: 'months'
32
+ new:
33
+ title: 'New purchase'
34
+ edit:
35
+ title: 'Edit purchase'
@@ -11,16 +11,26 @@ en:
11
11
  error_notification:
12
12
  default_message: "Please review the problems below:"
13
13
  # Labels and hints examples
14
- # labels:
15
- # defaults:
16
- # password: 'Password'
17
- # user:
18
- # new:
19
- # email: 'E-mail to sign in.'
20
- # edit:
21
- # email: 'E-mail.'
14
+ labels:
15
+ # defaults:
16
+ # password: 'Password'
17
+ # user:
18
+ # new:
19
+ # email: 'E-mail to sign in.'
20
+ # edit:
21
+ # email: 'E-mail.'
22
+ purchase:
23
+ title: 'Title'
24
+ description: 'Description'
25
+ purchase_date: 'Purchase date'
26
+ warranty_duration: 'Warranty duration'
27
+ receipt: 'Receipt'
28
+
22
29
  # hints:
23
30
  # defaults:
24
31
  # username: 'User name to sign in.'
25
32
  # password: 'No special characters, please.'
33
+ # placeholders:
34
+ # user:
35
+ # username: 'Your username'
26
36
 
@@ -1,3 +1,3 @@
1
1
  module Bookkeeper
2
- VERSION = "0.0.1.beta1"
2
+ VERSION = "0.0.1.beta2"
3
3
  end
@@ -23,4 +23,6 @@ ActiveRecord::Schema.define(:version => 20130215165240) do
23
23
  t.datetime "updated_at", :null => false
24
24
  end
25
25
 
26
+ add_index "bookkeeper_purchases", ["title"], :name => "index_bookkeeper_purchases_on_title"
27
+
26
28
  end
Binary file
@@ -0,0 +1,329 @@
1
+ Connecting to database specified by database.yml
2
+  (0.3ms) begin transaction
3
+  (0.1ms) rollback transaction
4
+  (0.1ms) begin transaction
5
+  (0.1ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+  (0.0ms) rollback transaction
8
+  (0.0ms) begin transaction
9
+  (0.0ms) rollback transaction
10
+  (0.0ms) begin transaction
11
+  (0.0ms) rollback transaction
12
+  (0.0ms) begin transaction
13
+  (0.0ms) rollback transaction
14
+  (0.0ms) begin transaction
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+  (0.0ms) rollback transaction
18
+  (0.0ms) begin transaction
19
+  (0.0ms) rollback transaction
20
+  (0.1ms) begin transaction
21
+  (0.0ms) rollback transaction
22
+  (0.1ms) begin transaction
23
+  (0.0ms) rollback transaction
24
+  (0.0ms) begin transaction
25
+  (0.0ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+  (0.0ms) begin transaction
29
+ Processing by Bookkeeper::PurchasesController#create as HTML
30
+ Parameters: {"purchase"=>{"title"=>"Principal Security Assistant", "description"=>"Eos vitae magnam qui consequatur.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9c76669698>"}}
31
+ Completed 500 Internal Server Error in 0ms
32
+  (0.0ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+ Processing by Bookkeeper::PurchasesController#create as HTML
35
+ Parameters: {"purchase"=>{"title"=>"Central Implementation Executive", "description"=>"Dolore adipisci et ex consectetur unde quisquam.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9c76669698>"}}
36
+ Completed 500 Internal Server Error in 0ms
37
+  (0.0ms) rollback transaction
38
+  (0.0ms) begin transaction
39
+  (0.0ms) rollback transaction
40
+  (0.0ms) begin transaction
41
+ Processing by Bookkeeper::PurchasesController#create as HTML
42
+ Parameters: {"purchase"=>{"title"=>nil, "description"=>"Repellat qui vitae provident.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9c76669698>"}}
43
+ Completed 500 Internal Server Error in 0ms
44
+  (0.0ms) rollback transaction
45
+  (0.0ms) begin transaction
46
+ Processing by Bookkeeper::PurchasesController#create as HTML
47
+ Parameters: {"purchase"=>{"title"=>nil, "description"=>"Dolorem itaque ut laboriosam repudiandae.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9c76669698>"}}
48
+ Completed 500 Internal Server Error in 0ms
49
+  (0.0ms) rollback transaction
50
+  (0.0ms) begin transaction
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+  (0.0ms) rollback transaction
54
+  (0.0ms) begin transaction
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+  (0.0ms) rollback transaction
58
+  (0.0ms) begin transaction
59
+  (0.0ms) rollback transaction
60
+  (0.0ms) begin transaction
61
+  (0.0ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+  (0.0ms) rollback transaction
64
+  (0.0ms) begin transaction
65
+  (0.0ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+  (0.0ms) rollback transaction
68
+  (0.0ms) begin transaction
69
+  (0.0ms) rollback transaction
70
+  (0.0ms) begin transaction
71
+ Processing by Bookkeeper::PurchasesController#new as HTML
72
+ Completed 500 Internal Server Error in 0ms
73
+  (0.0ms) rollback transaction
74
+  (0.0ms) begin transaction
75
+ Processing by Bookkeeper::PurchasesController#new as HTML
76
+ Completed 500 Internal Server Error in 0ms
77
+  (0.0ms) rollback transaction
78
+  (0.0ms) begin transaction
79
+  (0.0ms) rollback transaction
80
+  (0.0ms) begin transaction
81
+  (0.0ms) rollback transaction
82
+  (0.1ms) begin transaction
83
+  (0.1ms) rollback transaction
84
+  (0.1ms) begin transaction
85
+  (0.1ms) rollback transaction
86
+ Connecting to database specified by database.yml
87
+  (0.6ms) select sqlite_version(*)
88
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
89
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
90
+  (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
91
+ Migrating to CreateBookkeeperPurchases (20130215165240)
92
+  (0.0ms) begin transaction
93
+  (0.5ms) CREATE TABLE "bookkeeper_purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "purchase_date" date, "warranty_duration" integer, "receipt" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
94
+  (0.1ms) CREATE INDEX "index_bookkeeper_purchases_on_title" ON "bookkeeper_purchases" ("title")
95
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130215165240')
96
+  (1.0ms) commit transaction
97
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
98
+ Connecting to database specified by database.yml
99
+  (0.4ms) begin transaction
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+  (0.0ms) rollback transaction
103
+  (0.0ms) begin transaction
104
+  (0.1ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+  (0.1ms) rollback transaction
107
+  (0.1ms) begin transaction
108
+  (0.0ms) rollback transaction
109
+  (0.1ms) begin transaction
110
+  (0.1ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+  (0.0ms) rollback transaction
113
+  (0.0ms) begin transaction
114
+  (0.1ms) rollback transaction
115
+  (0.0ms) begin transaction
116
+  (0.1ms) rollback transaction
117
+  (0.1ms) begin transaction
118
+  (0.0ms) rollback transaction
119
+  (0.1ms) begin transaction
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+  (0.1ms) rollback transaction
123
+  (0.0ms) begin transaction
124
+  (0.1ms) rollback transaction
125
+  (0.1ms) begin transaction
126
+  (0.1ms) SAVEPOINT active_record_1
127
+ SQL (3.0ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Quae eligendi totam nemo."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Dynamic Communications Developer"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
129
+ Processing by Bookkeeper::PurchasesController#destroy as HTML
130
+ Parameters: {"id"=>"1"}
131
+ Bookkeeper::Purchase Load (0.2ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
132
+  (0.1ms) SAVEPOINT active_record_1
133
+ SQL (0.4ms) DELETE FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? [["id", 1]]
134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
135
+ Redirected to http://test.host/bookkeeper/purchases
136
+ Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
137
+  (0.7ms) rollback transaction
138
+  (0.1ms) begin transaction
139
+  (0.1ms) SAVEPOINT active_record_1
140
+ SQL (0.7ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Qui odio aut eos aspernatur sequi maxime est eveniet."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Direct Data Specialist"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
142
+  (0.2ms) SELECT COUNT(*) FROM "bookkeeper_purchases"
143
+ Processing by Bookkeeper::PurchasesController#destroy as HTML
144
+ Parameters: {"id"=>"1"}
145
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
146
+  (0.1ms) SAVEPOINT active_record_1
147
+ SQL (0.3ms) DELETE FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? [["id", 1]]
148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
149
+ Redirected to http://test.host/bookkeeper/purchases
150
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
151
+  (0.1ms) SELECT COUNT(*) FROM "bookkeeper_purchases" 
152
+  (0.4ms) rollback transaction
153
+  (0.0ms) begin transaction
154
+ Processing by Bookkeeper::PurchasesController#create as HTML
155
+ Parameters: {"purchase"=>{"title"=>nil, "description"=>"Odit est quidem ut porro itaque et magni.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
156
+  (0.1ms) SAVEPOINT active_record_1
157
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
158
+ Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.1ms)
159
+  (0.1ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+ Processing by Bookkeeper::PurchasesController#create as HTML
162
+ Parameters: {"purchase"=>{"title"=>nil, "description"=>"Iure occaecati temporibus sit voluptatibus.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
163
+  (0.0ms) SAVEPOINT active_record_1
164
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
165
+ Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
166
+  (0.0ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+  (0.2ms) SELECT COUNT(*) FROM "bookkeeper_purchases"
169
+ Processing by Bookkeeper::PurchasesController#create as HTML
170
+ Parameters: {"purchase"=>{"title"=>nil, "description"=>"Vel dolorem nihil distinctio et tenetur eum.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
171
+  (0.0ms) SAVEPOINT active_record_1
172
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
173
+ Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
174
+  (0.1ms) SELECT COUNT(*) FROM "bookkeeper_purchases" 
175
+  (0.1ms) rollback transaction
176
+  (0.0ms) begin transaction
177
+ Processing by Bookkeeper::PurchasesController#create as HTML
178
+ Parameters: {"purchase"=>{"title"=>"Lead Paradigm Representative", "description"=>"Iure ea vel itaque consectetur sunt labore.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
179
+  (0.1ms) SAVEPOINT active_record_1
180
+ SQL (0.5ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Iure ea vel itaque consectetur sunt labore."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", nil], ["title", "Lead Paradigm Representative"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
182
+ Redirected to http://test.host/bookkeeper/purchases
183
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
184
+  (0.4ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+ Processing by Bookkeeper::PurchasesController#create as HTML
187
+ Parameters: {"purchase"=>{"title"=>"Direct Data Specialist", "description"=>"Qui odio aut eos aspernatur sequi maxime est eveniet.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
188
+  (0.0ms) SAVEPOINT active_record_1
189
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Qui odio aut eos aspernatur sequi maxime est eveniet."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", nil], ["title", "Direct Data Specialist"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
191
+ Redirected to http://test.host/bookkeeper/purchases
192
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
193
+  (0.4ms) rollback transaction
194
+  (0.1ms) begin transaction
195
+  (0.1ms) SELECT COUNT(*) FROM "bookkeeper_purchases"
196
+ Processing by Bookkeeper::PurchasesController#create as HTML
197
+ Parameters: {"purchase"=>{"title"=>"Corporate Communications Representative", "description"=>"Saepe voluptatem nihil distinctio vel.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
198
+  (0.1ms) SAVEPOINT active_record_1
199
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Saepe voluptatem nihil distinctio vel."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", nil], ["title", "Corporate Communications Representative"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
201
+ Redirected to http://test.host/bookkeeper/purchases
202
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
203
+  (0.1ms) SELECT COUNT(*) FROM "bookkeeper_purchases"
204
+  (0.3ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+ Processing by Bookkeeper::PurchasesController#new as HTML
207
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
208
+  (0.1ms) rollback transaction
209
+  (0.0ms) begin transaction
210
+ Processing by Bookkeeper::PurchasesController#new as HTML
211
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
212
+  (0.1ms) rollback transaction
213
+  (0.0ms) begin transaction
214
+  (0.1ms) SAVEPOINT active_record_1
215
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Test lorem ipsum"], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Test title"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
217
+ Processing by Bookkeeper::PurchasesController#update as HTML
218
+ Parameters: {"id"=>"1", "purchase"=>{"title"=>nil, "description"=>"Quo facilis ut repudiandae.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
219
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
220
+  (0.1ms) SAVEPOINT active_record_1
221
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
222
+ Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 0.2ms)
223
+  (0.4ms) rollback transaction
224
+  (0.1ms) begin transaction
225
+  (0.1ms) SAVEPOINT active_record_1
226
+ SQL (25.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Test lorem ipsum"], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Test title"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
228
+ Processing by Bookkeeper::PurchasesController#update as HTML
229
+ Parameters: {"id"=>"1", "purchase"=>{"title"=>nil, "description"=>"Ipsa ex reprehenderit quae.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
230
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
231
+  (0.0ms) SAVEPOINT active_record_1
232
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
233
+ Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.1ms)
234
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", 1]]
235
+  (0.4ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+  (0.1ms) SAVEPOINT active_record_1
238
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Test lorem ipsum"], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Test title"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
240
+ Processing by Bookkeeper::PurchasesController#update as HTML
241
+ Parameters: {"id"=>"1", "purchase"=>{"title"=>"Chief Assurance Specialist", "description"=>"Accusamus nemo totam veritatis.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
242
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
243
+  (0.0ms) SAVEPOINT active_record_1
244
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", 1]]
245
+  (0.3ms) UPDATE "bookkeeper_purchases" SET "title" = 'Chief Assurance Specialist', "description" = 'Accusamus nemo totam veritatis.', "receipt" = 'receipt.jpg', "updated_at" = '2013-02-23 18:58:14.392624' WHERE "bookkeeper_purchases"."id" = 1
246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
247
+ Redirected to http://test.host/bookkeeper/purchases
248
+ Completed 302 Found in 6ms (ActiveRecord: 0.5ms)
249
+  (0.5ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+  (0.1ms) SAVEPOINT active_record_1
252
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Test lorem ipsum"], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Test title"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
254
+ Processing by Bookkeeper::PurchasesController#update as HTML
255
+ Parameters: {"id"=>"1", "purchase"=>{"title"=>"Central Security Coordinator", "description"=>"Dolorem esse est officia inventore laudantium qui voluptate voluptas.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
256
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
257
+  (0.0ms) SAVEPOINT active_record_1
258
+ Bookkeeper::Purchase Load (0.0ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", 1]]
259
+  (0.3ms) UPDATE "bookkeeper_purchases" SET "title" = 'Central Security Coordinator', "description" = 'Dolorem esse est officia inventore laudantium qui voluptate voluptas.', "receipt" = 'receipt.jpg', "updated_at" = '2013-02-23 18:58:14.410635' WHERE "bookkeeper_purchases"."id" = 1
260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
261
+ Redirected to http://test.host/bookkeeper/purchases
262
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
263
+  (0.5ms) rollback transaction
264
+  (0.0ms) begin transaction
265
+  (0.1ms) SAVEPOINT active_record_1
266
+ SQL (0.5ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Test lorem ipsum"], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Test title"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
268
+ Processing by Bookkeeper::PurchasesController#update as HTML
269
+ Parameters: {"id"=>"1", "purchase"=>{"title"=>"Corporate Optimization Associate", "description"=>"Dicta ut ut rem dolorem excepturi a.", "purchase_date"=>"2013-02-15", "warranty_duration"=>"24", "receipt"=>"#<File:0x007f9bdd671b70>"}}
270
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
271
+  (0.0ms) SAVEPOINT active_record_1
272
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", 1]]
273
+  (0.3ms) UPDATE "bookkeeper_purchases" SET "title" = 'Corporate Optimization Associate', "description" = 'Dicta ut ut rem dolorem excepturi a.', "receipt" = 'receipt.jpg', "updated_at" = '2013-02-23 18:58:14.428265' WHERE "bookkeeper_purchases"."id" = 1
274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
275
+ Redirected to http://test.host/bookkeeper/purchases
276
+ Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
277
+  (0.4ms) rollback transaction
278
+  (0.1ms) begin transaction
279
+  (0.1ms) SAVEPOINT active_record_1
280
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Quae eligendi totam nemo."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Dynamic Communications Developer"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
282
+ Processing by Bookkeeper::PurchasesController#show as HTML
283
+ Parameters: {"id"=>"1"}
284
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
285
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
286
+  (0.4ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+  (0.1ms) SAVEPOINT active_record_1
289
+ SQL (0.6ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Qui odio aut eos aspernatur sequi maxime est eveniet."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Direct Data Specialist"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
291
+ Processing by Bookkeeper::PurchasesController#show as HTML
292
+ Parameters: {"id"=>"1"}
293
+ Bookkeeper::Purchase Load (0.0ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
294
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
295
+  (0.4ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+  (0.1ms) SAVEPOINT active_record_1
298
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Quae eligendi totam nemo."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Dynamic Communications Developer"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
300
+ Processing by Bookkeeper::PurchasesController#edit as HTML
301
+ Parameters: {"id"=>"1"}
302
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
303
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
304
+  (0.3ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+  (0.1ms) SAVEPOINT active_record_1
307
+ SQL (0.7ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Qui odio aut eos aspernatur sequi maxime est eveniet."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Direct Data Specialist"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
308
+  (0.1ms) RELEASE SAVEPOINT active_record_1
309
+ Processing by Bookkeeper::PurchasesController#edit as HTML
310
+ Parameters: {"id"=>"1"}
311
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" WHERE "bookkeeper_purchases"."id" = ? LIMIT 1 [["id", "1"]]
312
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
313
+  (0.5ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+  (0.1ms) SAVEPOINT active_record_1
316
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Quae eligendi totam nemo."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Dynamic Communications Developer"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
318
+ Processing by Bookkeeper::PurchasesController#index as HTML
319
+ Bookkeeper::Purchase Load (0.2ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" 
320
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
321
+  (0.5ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+  (0.1ms) SAVEPOINT active_record_1
324
+ SQL (0.4ms) INSERT INTO "bookkeeper_purchases" ("created_at", "description", "purchase_date", "receipt", "title", "updated_at", "warranty_duration") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["description", "Qui odio aut eos aspernatur sequi maxime est eveniet."], ["purchase_date", Fri, 15 Feb 2013], ["receipt", "receipt.jpg"], ["title", "Direct Data Specialist"], ["updated_at", Sat, 23 Feb 2013 18:58:14 UTC +00:00], ["warranty_duration", 24]]
325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
326
+ Processing by Bookkeeper::PurchasesController#index as HTML
327
+ Bookkeeper::Purchase Load (0.1ms) SELECT "bookkeeper_purchases".* FROM "bookkeeper_purchases" 
328
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
329
+  (0.4ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookkeeper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.beta1
4
+ version: 0.0.1.beta2
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -248,6 +248,7 @@ files:
248
248
  - config/initializers/simple_form.rb
249
249
  - config/initializers/simple_form_bootstrap.rb
250
250
  - config/initializers/validates_timeliness.rb
251
+ - config/locales/en.yml
251
252
  - config/locales/simple_form.en.yml
252
253
  - config/locales/validates_timeliness.en.yml
253
254
  - config/routes.rb
@@ -290,9 +291,9 @@ files:
290
291
  - spec/dummy/config/locales/en.yml
291
292
  - spec/dummy/config/routes.rb
292
293
  - spec/dummy/config.ru
293
- - spec/dummy/db/development.sqlite3
294
294
  - spec/dummy/db/schema.rb
295
295
  - spec/dummy/db/test.sqlite3
296
+ - spec/dummy/log/test.log
296
297
  - spec/dummy/public/404.html
297
298
  - spec/dummy/public/422.html
298
299
  - spec/dummy/public/500.html
@@ -302,6 +303,28 @@ files:
302
303
  - spec/dummy/public/font/fontawesome-webfont.ttf
303
304
  - spec/dummy/public/font/fontawesome-webfont.woff
304
305
  - spec/dummy/public/font/FontAwesome.otf
306
+ - spec/dummy/public/uploads/receipt.jpg
307
+ - spec/dummy/public/uploads/thumb_receipt.jpg
308
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/receipt.jpg
309
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/thumb_receipt.jpg
310
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/receipt.jpg
311
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/thumb_receipt.jpg
312
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/receipt.jpg
313
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/thumb_receipt.jpg
314
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/receipt.jpg
315
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/thumb_receipt.jpg
316
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/receipt.jpg
317
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/thumb_receipt.jpg
318
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/receipt.jpg
319
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/thumb_receipt.jpg
320
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/receipt.jpg
321
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/thumb_receipt.jpg
322
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/receipt.jpg
323
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/thumb_receipt.jpg
324
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/receipt.jpg
325
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/thumb_receipt.jpg
326
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/receipt.jpg
327
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/thumb_receipt.jpg
305
328
  - spec/dummy/Rakefile
306
329
  - spec/dummy/README.rdoc
307
330
  - spec/dummy/script/rails
@@ -370,9 +393,9 @@ test_files:
370
393
  - spec/dummy/config/locales/en.yml
371
394
  - spec/dummy/config/routes.rb
372
395
  - spec/dummy/config.ru
373
- - spec/dummy/db/development.sqlite3
374
396
  - spec/dummy/db/schema.rb
375
397
  - spec/dummy/db/test.sqlite3
398
+ - spec/dummy/log/test.log
376
399
  - spec/dummy/public/404.html
377
400
  - spec/dummy/public/422.html
378
401
  - spec/dummy/public/500.html
@@ -382,6 +405,28 @@ test_files:
382
405
  - spec/dummy/public/font/fontawesome-webfont.ttf
383
406
  - spec/dummy/public/font/fontawesome-webfont.woff
384
407
  - spec/dummy/public/font/FontAwesome.otf
408
+ - spec/dummy/public/uploads/receipt.jpg
409
+ - spec/dummy/public/uploads/thumb_receipt.jpg
410
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/receipt.jpg
411
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-0153/thumb_receipt.jpg
412
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/receipt.jpg
413
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-1009/thumb_receipt.jpg
414
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/receipt.jpg
415
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2120/thumb_receipt.jpg
416
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/receipt.jpg
417
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-2714/thumb_receipt.jpg
418
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/receipt.jpg
419
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3081/thumb_receipt.jpg
420
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/receipt.jpg
421
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-3658/thumb_receipt.jpg
422
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/receipt.jpg
423
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-5761/thumb_receipt.jpg
424
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/receipt.jpg
425
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-6301/thumb_receipt.jpg
426
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/receipt.jpg
427
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-8404/thumb_receipt.jpg
428
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/receipt.jpg
429
+ - spec/dummy/public/uploads/tmp/20130223-1958-61501-9318/thumb_receipt.jpg
385
430
  - spec/dummy/Rakefile
386
431
  - spec/dummy/README.rdoc
387
432
  - spec/dummy/script/rails
Binary file