rails_dash 0.0.5 → 0.0.6
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.
data/README.rdoc
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
=== NOTE: There are some incompatibilities between versions before 0.0.5, we're trying to improve this from version 0.0.5 and above
|
2
|
+
|
3
|
+
---
|
4
|
+
|
1
5
|
{<img src="https://codeclimate.com/github/mattways/rails_dash.png" />}[https://codeclimate.com/github/mattways/rails_dash] {<img src="https://travis-ci.org/mattways/rails_dash.png?branch=master" alt="Build Status" />}[https://travis-ci.org/mattways/rails_dash] {<img src="https://gemnasium.com/mattways/rails_dash.png" alt="Dependency Status" />}[https://gemnasium.com/mattways/rails_dash]
|
2
6
|
|
3
7
|
= Rails Dash
|
@@ -10,13 +10,13 @@ module RailsDash
|
|
10
10
|
|
11
11
|
def new
|
12
12
|
@meta_title = @title = "#{t('dash.grid.add')} #{@model.model_name.human}"
|
13
|
-
|
13
|
+
define_record :new
|
14
14
|
render :form
|
15
15
|
end
|
16
16
|
|
17
17
|
def create
|
18
18
|
@meta_title = @title = "#{t('dash.grid.add')} #{@model.model_name.human}"
|
19
|
-
|
19
|
+
define_record :create
|
20
20
|
if @record.save
|
21
21
|
redirect_with_flash(index_path, :success, t('dash.flash.success.add'), params)
|
22
22
|
else
|
@@ -27,13 +27,13 @@ module RailsDash
|
|
27
27
|
|
28
28
|
def show
|
29
29
|
@meta_title = @title = "#{t('dash.grid.edit')} #{@model.model_name.human}"
|
30
|
-
|
30
|
+
define_record :show
|
31
31
|
render :form
|
32
32
|
end
|
33
33
|
|
34
34
|
def update
|
35
35
|
@meta_title = @title = "#{t('dash.grid.edit')} #{@model.model_name.human}"
|
36
|
-
|
36
|
+
define_record :update
|
37
37
|
if @record.update_attributes(params[param])
|
38
38
|
redirect_with_flash index_path, :success, t('dash.flash.success.edit'), params
|
39
39
|
else
|
@@ -49,6 +49,17 @@ module RailsDash
|
|
49
49
|
|
50
50
|
protected
|
51
51
|
|
52
|
+
def define_record(context)
|
53
|
+
if context == :new
|
54
|
+
@record = @model.new
|
55
|
+
elsif context == :create
|
56
|
+
@record = @model.new(params[param])
|
57
|
+
else
|
58
|
+
@record = @model.find(params[:id])
|
59
|
+
end
|
60
|
+
send :alter_record, context if respond_to? :alter_record
|
61
|
+
end
|
62
|
+
|
52
63
|
def model
|
53
64
|
@model = Object.const_get self.class.name.split('::').last.gsub('Controller', '').singularize
|
54
65
|
end
|
data/lib/rails_dash/version.rb
CHANGED
Binary file
|
@@ -13870,3 +13870,1182 @@ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
13870
13870
|
|
13871
13871
|
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-11 16:43:22 -0300
|
13872
13872
|
Served asset /application.js - 304 Not Modified (0ms)
|
13873
|
+
Connecting to database specified by database.yml
|
13874
|
+
|
13875
|
+
|
13876
|
+
Started GET "/" for 127.0.0.1 at 2013-04-17 17:12:02 -0300
|
13877
|
+
Processing by StaticsController#home as HTML
|
13878
|
+
Rendered statics/home.html.haml within layouts/application (8.5ms)
|
13879
|
+
Completed 200 OK in 178ms (Views: 176.6ms | ActiveRecord: 0.0ms)
|
13880
|
+
|
13881
|
+
|
13882
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:02 -0300
|
13883
|
+
Served asset /application.css - 200 OK (5ms)
|
13884
|
+
|
13885
|
+
|
13886
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:02 -0300
|
13887
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
13888
|
+
|
13889
|
+
|
13890
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:02 -0300
|
13891
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
13892
|
+
|
13893
|
+
|
13894
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:02 -0300
|
13895
|
+
Served asset /application.js - 200 OK (10ms)
|
13896
|
+
|
13897
|
+
|
13898
|
+
Started GET "/dash" for 127.0.0.1 at 2013-04-17 17:12:07 -0300
|
13899
|
+
Processing by RailsDash::StaticsController#home as HTML
|
13900
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/statics/home.html.haml within layouts/dash (1.2ms)
|
13901
|
+
Completed 200 OK in 294ms (Views: 293.4ms | ActiveRecord: 0.0ms)
|
13902
|
+
|
13903
|
+
|
13904
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13905
|
+
Served asset /rails_dash/application.css - 304 Not Modified (56ms)
|
13906
|
+
|
13907
|
+
|
13908
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13909
|
+
Served asset /rails_dash/autocomplete.css - 200 OK (3ms)
|
13910
|
+
|
13911
|
+
|
13912
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13913
|
+
Served asset /rails_dash/footer.css - 200 OK (3ms)
|
13914
|
+
|
13915
|
+
|
13916
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13917
|
+
Served asset /rails_dash/forms.css - 200 OK (6ms)
|
13918
|
+
|
13919
|
+
|
13920
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13921
|
+
Served asset /rails_dash/flash.css - 200 OK (3ms)
|
13922
|
+
|
13923
|
+
|
13924
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13925
|
+
Served asset /rails_dash/content.css - 200 OK (3ms)
|
13926
|
+
|
13927
|
+
|
13928
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13929
|
+
Served asset /rails_dash/header.css - 200 OK (3ms)
|
13930
|
+
|
13931
|
+
|
13932
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13933
|
+
Served asset /rails_dash/navigation.css - 200 OK (3ms)
|
13934
|
+
|
13935
|
+
|
13936
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13937
|
+
Served asset /rails_dash/grid.css - 200 OK (4ms)
|
13938
|
+
|
13939
|
+
|
13940
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13941
|
+
Served asset /rails_dash/page.css - 200 OK (3ms)
|
13942
|
+
|
13943
|
+
|
13944
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13945
|
+
Served asset /rails_dash/pager.css - 200 OK (3ms)
|
13946
|
+
|
13947
|
+
|
13948
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13949
|
+
Served asset /rails_dash/style.css - 200 OK (3ms)
|
13950
|
+
|
13951
|
+
|
13952
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13953
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
13954
|
+
|
13955
|
+
|
13956
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13957
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
13958
|
+
|
13959
|
+
|
13960
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:08 -0300
|
13961
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
13962
|
+
|
13963
|
+
|
13964
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:09 -0300
|
13965
|
+
Processing by Dash::PhotosController#index as HTML
|
13966
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (8.0ms)
|
13967
|
+
[1m[36mPhoto Load (18.8ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
13968
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
13969
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (8.0ms)
|
13970
|
+
Rendered dash/photos/index.html.haml within layouts/dash (158.8ms)
|
13971
|
+
Completed 200 OK in 343ms (Views: 245.9ms | ActiveRecord: 38.2ms)
|
13972
|
+
|
13973
|
+
|
13974
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:10 -0300
|
13975
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
13976
|
+
|
13977
|
+
|
13978
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:10 -0300
|
13979
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
13980
|
+
|
13981
|
+
|
13982
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:10 -0300
|
13983
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
13984
|
+
|
13985
|
+
|
13986
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:10 -0300
|
13987
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
13988
|
+
|
13989
|
+
|
13990
|
+
Started GET "/assets/rails_dash/filter.png" for 127.0.0.1 at 2013-04-17 17:12:10 -0300
|
13991
|
+
Served asset /rails_dash/filter.png - 304 Not Modified (24ms)
|
13992
|
+
|
13993
|
+
|
13994
|
+
Started GET "/dash/photos/new" for 127.0.0.1 at 2013-04-17 17:12:12 -0300
|
13995
|
+
Processing by Dash::PhotosController#new as HTML
|
13996
|
+
Rendered dash/photos/form.html.haml within layouts/dash (7.1ms)
|
13997
|
+
Completed 200 OK in 149ms (Views: 147.6ms | ActiveRecord: 0.0ms)
|
13998
|
+
|
13999
|
+
|
14000
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:13 -0300
|
14001
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14002
|
+
|
14003
|
+
|
14004
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:13 -0300
|
14005
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14006
|
+
|
14007
|
+
|
14008
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:13 -0300
|
14009
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14010
|
+
|
14011
|
+
|
14012
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:13 -0300
|
14013
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14014
|
+
|
14015
|
+
|
14016
|
+
Started GET "/assets/rails_dash/shadow.gif" for 127.0.0.1 at 2013-04-17 17:12:13 -0300
|
14017
|
+
Served asset /rails_dash/shadow.gif - 304 Not Modified (26ms)
|
14018
|
+
|
14019
|
+
|
14020
|
+
Started POST "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14021
|
+
Processing by Dash::PhotosController#create as HTML
|
14022
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"sadf"}, "commit"=>""}
|
14023
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14024
|
+
[1m[35mSQL (20.7ms)[0m INSERT INTO "photos" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Apr 2013 20:12:15 UTC +00:00], ["name", "sadf"], ["updated_at", Wed, 17 Apr 2013 20:12:15 UTC +00:00]]
|
14025
|
+
[1m[36m (6.5ms)[0m [1mcommit transaction[0m
|
14026
|
+
Redirected to http://localhost:3000/dash/photos
|
14027
|
+
Completed 302 Found in 36ms (ActiveRecord: 27.3ms)
|
14028
|
+
|
14029
|
+
|
14030
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14031
|
+
Processing by Dash::PhotosController#index as HTML
|
14032
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (1.9ms)
|
14033
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0
|
14034
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')[0m
|
14035
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14036
|
+
Rendered dash/photos/index.html.haml within layouts/dash (10.7ms)
|
14037
|
+
Completed 200 OK in 128ms (Views: 126.7ms | ActiveRecord: 0.3ms)
|
14038
|
+
|
14039
|
+
|
14040
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14041
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14042
|
+
|
14043
|
+
|
14044
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14045
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14046
|
+
|
14047
|
+
|
14048
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14049
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14050
|
+
|
14051
|
+
|
14052
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:15 -0300
|
14053
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14054
|
+
|
14055
|
+
|
14056
|
+
Started DELETE "/dash/photos/5" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14057
|
+
Processing by Dash::PhotosController#destroy as HTML
|
14058
|
+
Parameters: {"authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "id"=>"5"}
|
14059
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "5"]]
|
14060
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14061
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "photos" WHERE "photos"."id" = ? [["id", 5]]
|
14062
|
+
[1m[36m (63.3ms)[0m [1mcommit transaction[0m
|
14063
|
+
Redirected to http://localhost:3000/dash/photos
|
14064
|
+
Completed 302 Found in 70ms (ActiveRecord: 63.9ms)
|
14065
|
+
|
14066
|
+
|
14067
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14068
|
+
Processing by Dash::PhotosController#index as HTML
|
14069
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.1ms)
|
14070
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0
|
14071
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')[0m
|
14072
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.6ms)
|
14073
|
+
Rendered dash/photos/index.html.haml within layouts/dash (9.6ms)
|
14074
|
+
Completed 200 OK in 130ms (Views: 127.6ms | ActiveRecord: 0.3ms)
|
14075
|
+
|
14076
|
+
|
14077
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14078
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14079
|
+
|
14080
|
+
|
14081
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14082
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14083
|
+
|
14084
|
+
|
14085
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14086
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14087
|
+
|
14088
|
+
|
14089
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:19 -0300
|
14090
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14091
|
+
|
14092
|
+
|
14093
|
+
Started GET "/dash/photos/4" for 127.0.0.1 at 2013-04-17 17:12:26 -0300
|
14094
|
+
Processing by Dash::PhotosController#show as HTML
|
14095
|
+
Parameters: {"id"=>"4"}
|
14096
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "4"]]
|
14097
|
+
Rendered dash/photos/form.html.haml within layouts/dash (3.0ms)
|
14098
|
+
Completed 200 OK in 128ms (Views: 125.6ms | ActiveRecord: 0.1ms)
|
14099
|
+
|
14100
|
+
|
14101
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:26 -0300
|
14102
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14103
|
+
|
14104
|
+
|
14105
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:26 -0300
|
14106
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14107
|
+
|
14108
|
+
|
14109
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:26 -0300
|
14110
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14111
|
+
|
14112
|
+
|
14113
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:26 -0300
|
14114
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14115
|
+
|
14116
|
+
|
14117
|
+
Started PUT "/dash/photos/4" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14118
|
+
Processing by Dash::PhotosController#update as HTML
|
14119
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"Prueba 1"}, "commit"=>"", "id"=>"4"}
|
14120
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "4"]]
|
14121
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14122
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "photos" SET "name" = 'Prueba 1', "updated_at" = '2013-04-17 20:12:28.182784' WHERE "photos"."id" = 4[0m
|
14123
|
+
[1m[35m (38.8ms)[0m commit transaction
|
14124
|
+
Redirected to http://localhost:3000/dash/photos
|
14125
|
+
Completed 302 Found in 48ms (ActiveRecord: 39.3ms)
|
14126
|
+
|
14127
|
+
|
14128
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14129
|
+
Processing by Dash::PhotosController#index as HTML
|
14130
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.1ms)
|
14131
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14132
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14133
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.7ms)
|
14134
|
+
Rendered dash/photos/index.html.haml within layouts/dash (10.3ms)
|
14135
|
+
Completed 200 OK in 134ms (Views: 132.1ms | ActiveRecord: 0.3ms)
|
14136
|
+
|
14137
|
+
|
14138
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14139
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14140
|
+
|
14141
|
+
|
14142
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14143
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14144
|
+
|
14145
|
+
|
14146
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14147
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14148
|
+
|
14149
|
+
|
14150
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:28 -0300
|
14151
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14152
|
+
|
14153
|
+
|
14154
|
+
Started GET "/dash/photos/4" for 127.0.0.1 at 2013-04-17 17:12:37 -0300
|
14155
|
+
Processing by Dash::PhotosController#show as HTML
|
14156
|
+
Parameters: {"id"=>"4"}
|
14157
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "4"]]
|
14158
|
+
Rendered dash/photos/form.html.haml within layouts/dash (2.6ms)
|
14159
|
+
Completed 200 OK in 130ms (Views: 119.5ms | ActiveRecord: 0.6ms)
|
14160
|
+
|
14161
|
+
|
14162
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:37 -0300
|
14163
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14164
|
+
|
14165
|
+
|
14166
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:37 -0300
|
14167
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14168
|
+
|
14169
|
+
|
14170
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:37 -0300
|
14171
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14172
|
+
|
14173
|
+
|
14174
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:37 -0300
|
14175
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14176
|
+
|
14177
|
+
|
14178
|
+
Started PUT "/dash/photos/4" for 127.0.0.1 at 2013-04-17 17:12:39 -0300
|
14179
|
+
Processing by Dash::PhotosController#update as HTML
|
14180
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"Prueba"}, "commit"=>"", "id"=>"4"}
|
14181
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "4"]]
|
14182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14183
|
+
[1m[35m (0.3ms)[0m UPDATE "photos" SET "name" = 'Prueba', "updated_at" = '2013-04-17 20:12:39.818193' WHERE "photos"."id" = 4
|
14184
|
+
[1m[36m (38.0ms)[0m [1mcommit transaction[0m
|
14185
|
+
Redirected to http://localhost:3000/dash/photos
|
14186
|
+
Completed 302 Found in 47ms (ActiveRecord: 38.5ms)
|
14187
|
+
|
14188
|
+
|
14189
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:39 -0300
|
14190
|
+
Processing by Dash::PhotosController#index as HTML
|
14191
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (1.9ms)
|
14192
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0
|
14193
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')[0m
|
14194
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14195
|
+
Rendered dash/photos/index.html.haml within layouts/dash (9.2ms)
|
14196
|
+
Completed 200 OK in 127ms (Views: 125.0ms | ActiveRecord: 0.3ms)
|
14197
|
+
|
14198
|
+
|
14199
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:40 -0300
|
14200
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14201
|
+
|
14202
|
+
|
14203
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:40 -0300
|
14204
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14205
|
+
|
14206
|
+
|
14207
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:40 -0300
|
14208
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14209
|
+
|
14210
|
+
|
14211
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:40 -0300
|
14212
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14213
|
+
|
14214
|
+
|
14215
|
+
Started GET "/dash/photos/new" for 127.0.0.1 at 2013-04-17 17:12:41 -0300
|
14216
|
+
Processing by Dash::PhotosController#new as HTML
|
14217
|
+
Rendered dash/photos/form.html.haml within layouts/dash (2.5ms)
|
14218
|
+
Completed 200 OK in 123ms (Views: 121.3ms | ActiveRecord: 0.0ms)
|
14219
|
+
|
14220
|
+
|
14221
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:41 -0300
|
14222
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14223
|
+
|
14224
|
+
|
14225
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:41 -0300
|
14226
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14227
|
+
|
14228
|
+
|
14229
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:41 -0300
|
14230
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14231
|
+
|
14232
|
+
|
14233
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:41 -0300
|
14234
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14235
|
+
|
14236
|
+
|
14237
|
+
Started POST "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14238
|
+
Processing by Dash::PhotosController#create as HTML
|
14239
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"Prueba 2"}, "commit"=>""}
|
14240
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14241
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "photos" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Apr 2013 20:12:44 UTC +00:00], ["name", "Prueba 2"], ["updated_at", Wed, 17 Apr 2013 20:12:44 UTC +00:00]]
|
14242
|
+
[1m[35m (43.2ms)[0m commit transaction
|
14243
|
+
Redirected to http://localhost:3000/dash/photos
|
14244
|
+
Completed 302 Found in 51ms (ActiveRecord: 43.9ms)
|
14245
|
+
|
14246
|
+
|
14247
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14248
|
+
Processing by Dash::PhotosController#index as HTML
|
14249
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (1.9ms)
|
14250
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14251
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14252
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14253
|
+
Rendered dash/photos/index.html.haml within layouts/dash (10.6ms)
|
14254
|
+
Completed 200 OK in 130ms (Views: 128.8ms | ActiveRecord: 0.3ms)
|
14255
|
+
|
14256
|
+
|
14257
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14258
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14259
|
+
|
14260
|
+
|
14261
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14262
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14263
|
+
|
14264
|
+
|
14265
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14266
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14267
|
+
|
14268
|
+
|
14269
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:44 -0300
|
14270
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14271
|
+
|
14272
|
+
|
14273
|
+
Started DELETE "/dash/photos/6" for 127.0.0.1 at 2013-04-17 17:12:45 -0300
|
14274
|
+
Processing by Dash::PhotosController#destroy as HTML
|
14275
|
+
Parameters: {"authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "id"=>"6"}
|
14276
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "6"]]
|
14277
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14278
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "photos" WHERE "photos"."id" = ?[0m [["id", 6]]
|
14279
|
+
[1m[35m (55.1ms)[0m commit transaction
|
14280
|
+
Redirected to http://localhost:3000/dash/photos
|
14281
|
+
Completed 302 Found in 62ms (ActiveRecord: 55.6ms)
|
14282
|
+
|
14283
|
+
|
14284
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:12:45 -0300
|
14285
|
+
Processing by Dash::PhotosController#index as HTML
|
14286
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14287
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14288
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14289
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14290
|
+
Rendered dash/photos/index.html.haml within layouts/dash (9.6ms)
|
14291
|
+
Completed 200 OK in 129ms (Views: 127.2ms | ActiveRecord: 0.3ms)
|
14292
|
+
|
14293
|
+
|
14294
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:46 -0300
|
14295
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14296
|
+
|
14297
|
+
|
14298
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:46 -0300
|
14299
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14300
|
+
|
14301
|
+
|
14302
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:46 -0300
|
14303
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14304
|
+
|
14305
|
+
|
14306
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:46 -0300
|
14307
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14308
|
+
|
14309
|
+
|
14310
|
+
Started GET "/dash/photos?utf8=%E2%9C%93&q=23r" for 127.0.0.1 at 2013-04-17 17:12:49 -0300
|
14311
|
+
Processing by Dash::PhotosController#index as HTML
|
14312
|
+
Parameters: {"utf8"=>"✓", "q"=>"23r"}
|
14313
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14314
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%23r%') LIMIT 15 OFFSET 0[0m
|
14315
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%23r%')
|
14316
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.4ms)
|
14317
|
+
Rendered dash/photos/index.html.haml within layouts/dash (7.6ms)
|
14318
|
+
Completed 200 OK in 126ms (Views: 123.7ms | ActiveRecord: 0.3ms)
|
14319
|
+
|
14320
|
+
|
14321
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:49 -0300
|
14322
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14323
|
+
|
14324
|
+
|
14325
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:49 -0300
|
14326
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14327
|
+
|
14328
|
+
|
14329
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:49 -0300
|
14330
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14331
|
+
|
14332
|
+
|
14333
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:49 -0300
|
14334
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14335
|
+
|
14336
|
+
|
14337
|
+
Started GET "/dash/photos?utf8=%E2%9C%93&q=prueba" for 127.0.0.1 at 2013-04-17 17:12:52 -0300
|
14338
|
+
Processing by Dash::PhotosController#index as HTML
|
14339
|
+
Parameters: {"utf8"=>"✓", "q"=>"prueba"}
|
14340
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14341
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%prueba%') LIMIT 15 OFFSET 0[0m
|
14342
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%prueba%')
|
14343
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.4ms)
|
14344
|
+
Rendered dash/photos/index.html.haml within layouts/dash (9.2ms)
|
14345
|
+
Completed 200 OK in 125ms (Views: 122.9ms | ActiveRecord: 0.3ms)
|
14346
|
+
|
14347
|
+
|
14348
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:12:52 -0300
|
14349
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14350
|
+
|
14351
|
+
|
14352
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:52 -0300
|
14353
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14354
|
+
|
14355
|
+
|
14356
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:52 -0300
|
14357
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14358
|
+
|
14359
|
+
|
14360
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:12:52 -0300
|
14361
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14362
|
+
|
14363
|
+
|
14364
|
+
Started GET "/" for 127.0.0.1 at 2013-04-17 17:14:34 -0300
|
14365
|
+
Processing by StaticsController#home as HTML
|
14366
|
+
Rendered statics/home.html.haml within layouts/application (0.6ms)
|
14367
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
14368
|
+
|
14369
|
+
|
14370
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:34 -0300
|
14371
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14372
|
+
|
14373
|
+
|
14374
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:34 -0300
|
14375
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
14376
|
+
|
14377
|
+
|
14378
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:34 -0300
|
14379
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14380
|
+
|
14381
|
+
|
14382
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:34 -0300
|
14383
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14384
|
+
|
14385
|
+
|
14386
|
+
Started GET "/dash" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14387
|
+
Processing by RailsDash::StaticsController#home as HTML
|
14388
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/statics/home.html.haml within layouts/dash (0.1ms)
|
14389
|
+
Completed 200 OK in 117ms (Views: 116.8ms | ActiveRecord: 0.0ms)
|
14390
|
+
|
14391
|
+
|
14392
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14393
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14394
|
+
|
14395
|
+
|
14396
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14397
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14398
|
+
|
14399
|
+
|
14400
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14401
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14402
|
+
|
14403
|
+
|
14404
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14405
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14406
|
+
|
14407
|
+
|
14408
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14409
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14410
|
+
|
14411
|
+
|
14412
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14413
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14414
|
+
|
14415
|
+
|
14416
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14417
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14418
|
+
|
14419
|
+
|
14420
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14421
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14422
|
+
|
14423
|
+
|
14424
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14425
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14426
|
+
|
14427
|
+
|
14428
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14429
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14430
|
+
|
14431
|
+
|
14432
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14433
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14434
|
+
|
14435
|
+
|
14436
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14437
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14438
|
+
|
14439
|
+
|
14440
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14441
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14442
|
+
|
14443
|
+
|
14444
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14445
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14446
|
+
|
14447
|
+
|
14448
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:37 -0300
|
14449
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14450
|
+
|
14451
|
+
|
14452
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14453
|
+
Processing by Dash::PhotosController#index as HTML
|
14454
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14455
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14456
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14457
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.7ms)
|
14458
|
+
Rendered dash/photos/index.html.haml within layouts/dash (16.3ms)
|
14459
|
+
Completed 200 OK in 139ms (Views: 135.5ms | ActiveRecord: 0.7ms)
|
14460
|
+
|
14461
|
+
|
14462
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14463
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14464
|
+
|
14465
|
+
|
14466
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14467
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14468
|
+
|
14469
|
+
|
14470
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14471
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14472
|
+
|
14473
|
+
|
14474
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14475
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14476
|
+
|
14477
|
+
|
14478
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14479
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14480
|
+
|
14481
|
+
|
14482
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14483
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14484
|
+
|
14485
|
+
|
14486
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14487
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14488
|
+
|
14489
|
+
|
14490
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14491
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14492
|
+
|
14493
|
+
|
14494
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14495
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14496
|
+
|
14497
|
+
|
14498
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14499
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14500
|
+
|
14501
|
+
|
14502
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14503
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14504
|
+
|
14505
|
+
|
14506
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14507
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14508
|
+
|
14509
|
+
|
14510
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14511
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14512
|
+
|
14513
|
+
|
14514
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14515
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14516
|
+
|
14517
|
+
|
14518
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14519
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14520
|
+
|
14521
|
+
|
14522
|
+
Started GET "/assets/rails_dash/filter.png" for 127.0.0.1 at 2013-04-17 17:14:39 -0300
|
14523
|
+
Served asset /rails_dash/filter.png - 304 Not Modified (0ms)
|
14524
|
+
|
14525
|
+
|
14526
|
+
Started GET "/dash/photos/new" for 127.0.0.1 at 2013-04-17 17:14:40 -0300
|
14527
|
+
Processing by Dash::PhotosController#new as HTML
|
14528
|
+
Rendered dash/photos/form.html.haml within layouts/dash (2.5ms)
|
14529
|
+
Completed 200 OK in 121ms (Views: 119.5ms | ActiveRecord: 0.0ms)
|
14530
|
+
|
14531
|
+
|
14532
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14533
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14534
|
+
|
14535
|
+
|
14536
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14537
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14538
|
+
|
14539
|
+
|
14540
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14541
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14542
|
+
|
14543
|
+
|
14544
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14545
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14546
|
+
|
14547
|
+
|
14548
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14549
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14550
|
+
|
14551
|
+
|
14552
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14553
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14554
|
+
|
14555
|
+
|
14556
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14557
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14558
|
+
|
14559
|
+
|
14560
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14561
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14562
|
+
|
14563
|
+
|
14564
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14565
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14566
|
+
|
14567
|
+
|
14568
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14569
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14570
|
+
|
14571
|
+
|
14572
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14573
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14574
|
+
|
14575
|
+
|
14576
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14577
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14578
|
+
|
14579
|
+
|
14580
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14581
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14582
|
+
|
14583
|
+
|
14584
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14585
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14586
|
+
|
14587
|
+
|
14588
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14589
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14590
|
+
|
14591
|
+
|
14592
|
+
Started GET "/assets/rails_dash/shadow.gif" for 127.0.0.1 at 2013-04-17 17:14:41 -0300
|
14593
|
+
Served asset /rails_dash/shadow.gif - 304 Not Modified (0ms)
|
14594
|
+
|
14595
|
+
|
14596
|
+
Started POST "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14597
|
+
Processing by Dash::PhotosController#create as HTML
|
14598
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"New"}, "commit"=>""}
|
14599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14600
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "photos" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Apr 2013 20:14:42 UTC +00:00], ["name", "New"], ["updated_at", Wed, 17 Apr 2013 20:14:42 UTC +00:00]]
|
14601
|
+
[1m[36m (52.2ms)[0m [1mcommit transaction[0m
|
14602
|
+
Redirected to http://localhost:3000/dash/photos
|
14603
|
+
Completed 302 Found in 60ms (ActiveRecord: 52.9ms)
|
14604
|
+
|
14605
|
+
|
14606
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14607
|
+
Processing by Dash::PhotosController#index as HTML
|
14608
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14609
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0
|
14610
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')[0m
|
14611
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.6ms)
|
14612
|
+
Rendered dash/photos/index.html.haml within layouts/dash (11.1ms)
|
14613
|
+
Completed 200 OK in 130ms (Views: 128.2ms | ActiveRecord: 0.3ms)
|
14614
|
+
|
14615
|
+
|
14616
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14617
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14618
|
+
|
14619
|
+
|
14620
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14621
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14622
|
+
|
14623
|
+
|
14624
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14625
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14626
|
+
|
14627
|
+
|
14628
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14629
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14630
|
+
|
14631
|
+
|
14632
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14633
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14634
|
+
|
14635
|
+
|
14636
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14637
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14638
|
+
|
14639
|
+
|
14640
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14641
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14642
|
+
|
14643
|
+
|
14644
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14645
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14646
|
+
|
14647
|
+
|
14648
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14649
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14650
|
+
|
14651
|
+
|
14652
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14653
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14654
|
+
|
14655
|
+
|
14656
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14657
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14658
|
+
|
14659
|
+
|
14660
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14661
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14662
|
+
|
14663
|
+
|
14664
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14665
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14666
|
+
|
14667
|
+
|
14668
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14669
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14670
|
+
|
14671
|
+
|
14672
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:42 -0300
|
14673
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14674
|
+
|
14675
|
+
|
14676
|
+
Started GET "/dash/photos/7" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14677
|
+
Processing by Dash::PhotosController#show as HTML
|
14678
|
+
Parameters: {"id"=>"7"}
|
14679
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "7"]]
|
14680
|
+
Rendered dash/photos/form.html.haml within layouts/dash (2.8ms)
|
14681
|
+
Completed 200 OK in 123ms (Views: 119.9ms | ActiveRecord: 0.2ms)
|
14682
|
+
|
14683
|
+
|
14684
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14685
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14686
|
+
|
14687
|
+
|
14688
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14689
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14690
|
+
|
14691
|
+
|
14692
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14693
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14694
|
+
|
14695
|
+
|
14696
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14697
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14698
|
+
|
14699
|
+
|
14700
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14701
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14702
|
+
|
14703
|
+
|
14704
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14705
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14706
|
+
|
14707
|
+
|
14708
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14709
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14710
|
+
|
14711
|
+
|
14712
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14713
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14714
|
+
|
14715
|
+
|
14716
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14717
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14718
|
+
|
14719
|
+
|
14720
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14721
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14722
|
+
|
14723
|
+
|
14724
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:44 -0300
|
14725
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14726
|
+
|
14727
|
+
|
14728
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:45 -0300
|
14729
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14730
|
+
|
14731
|
+
|
14732
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:45 -0300
|
14733
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14734
|
+
|
14735
|
+
|
14736
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:45 -0300
|
14737
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14738
|
+
|
14739
|
+
|
14740
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:45 -0300
|
14741
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14742
|
+
|
14743
|
+
|
14744
|
+
Started PUT "/dash/photos/7" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14745
|
+
Processing by Dash::PhotosController#update as HTML
|
14746
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"New 1"}, "commit"=>"", "id"=>"7"}
|
14747
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "7"]]
|
14748
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14749
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "photos" SET "name" = 'New 1', "updated_at" = '2013-04-17 20:14:47.402161' WHERE "photos"."id" = 7[0m
|
14750
|
+
[1m[35m (45.6ms)[0m commit transaction
|
14751
|
+
Redirected to http://localhost:3000/dash/photos
|
14752
|
+
Completed 302 Found in 54ms (ActiveRecord: 46.1ms)
|
14753
|
+
|
14754
|
+
|
14755
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14756
|
+
Processing by Dash::PhotosController#index as HTML
|
14757
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (1.9ms)
|
14758
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14759
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14760
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.6ms)
|
14761
|
+
Rendered dash/photos/index.html.haml within layouts/dash (11.0ms)
|
14762
|
+
Completed 200 OK in 129ms (Views: 127.6ms | ActiveRecord: 0.3ms)
|
14763
|
+
|
14764
|
+
|
14765
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14766
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14767
|
+
|
14768
|
+
|
14769
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14770
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14771
|
+
|
14772
|
+
|
14773
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14774
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14775
|
+
|
14776
|
+
|
14777
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14778
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14779
|
+
|
14780
|
+
|
14781
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14782
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14783
|
+
|
14784
|
+
|
14785
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14786
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14787
|
+
|
14788
|
+
|
14789
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14790
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14791
|
+
|
14792
|
+
|
14793
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14794
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14795
|
+
|
14796
|
+
|
14797
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14798
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14799
|
+
|
14800
|
+
|
14801
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14802
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14803
|
+
|
14804
|
+
|
14805
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14806
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14807
|
+
|
14808
|
+
|
14809
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14810
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14811
|
+
|
14812
|
+
|
14813
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14814
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14815
|
+
|
14816
|
+
|
14817
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14818
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14819
|
+
|
14820
|
+
|
14821
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:47 -0300
|
14822
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14823
|
+
|
14824
|
+
|
14825
|
+
Started GET "/dash/photos/7" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14826
|
+
Processing by Dash::PhotosController#show as HTML
|
14827
|
+
Parameters: {"id"=>"7"}
|
14828
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "7"]]
|
14829
|
+
Rendered dash/photos/form.html.haml within layouts/dash (2.9ms)
|
14830
|
+
Completed 200 OK in 120ms (Views: 118.4ms | ActiveRecord: 0.1ms)
|
14831
|
+
|
14832
|
+
|
14833
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14834
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14835
|
+
|
14836
|
+
|
14837
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14838
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14839
|
+
|
14840
|
+
|
14841
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14842
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14843
|
+
|
14844
|
+
|
14845
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14846
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14847
|
+
|
14848
|
+
|
14849
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14850
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14851
|
+
|
14852
|
+
|
14853
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14854
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14855
|
+
|
14856
|
+
|
14857
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14858
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14859
|
+
|
14860
|
+
|
14861
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14862
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14863
|
+
|
14864
|
+
|
14865
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14866
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14867
|
+
|
14868
|
+
|
14869
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14870
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14871
|
+
|
14872
|
+
|
14873
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14874
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14875
|
+
|
14876
|
+
|
14877
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14878
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14879
|
+
|
14880
|
+
|
14881
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14882
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14883
|
+
|
14884
|
+
|
14885
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14886
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14887
|
+
|
14888
|
+
|
14889
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:49 -0300
|
14890
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14891
|
+
|
14892
|
+
|
14893
|
+
Started PUT "/dash/photos/7" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14894
|
+
Processing by Dash::PhotosController#update as HTML
|
14895
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "photo"=>{"name"=>"New 1"}, "commit"=>"", "id"=>"7"}
|
14896
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "7"]]
|
14897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14898
|
+
[1m[35m (0.0ms)[0m commit transaction
|
14899
|
+
Redirected to http://localhost:3000/dash/photos
|
14900
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
14901
|
+
|
14902
|
+
|
14903
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14904
|
+
Processing by Dash::PhotosController#index as HTML
|
14905
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14906
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14907
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14908
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14909
|
+
Rendered dash/photos/index.html.haml within layouts/dash (11.1ms)
|
14910
|
+
Completed 200 OK in 129ms (Views: 127.7ms | ActiveRecord: 0.3ms)
|
14911
|
+
|
14912
|
+
|
14913
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14914
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
14915
|
+
|
14916
|
+
|
14917
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14918
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
14919
|
+
|
14920
|
+
|
14921
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14922
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14923
|
+
|
14924
|
+
|
14925
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14926
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
14927
|
+
|
14928
|
+
|
14929
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14930
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
14931
|
+
|
14932
|
+
|
14933
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14934
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
14935
|
+
|
14936
|
+
|
14937
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14938
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
14939
|
+
|
14940
|
+
|
14941
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14942
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
14943
|
+
|
14944
|
+
|
14945
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14946
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
14947
|
+
|
14948
|
+
|
14949
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14950
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
14951
|
+
|
14952
|
+
|
14953
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14954
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
14955
|
+
|
14956
|
+
|
14957
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14958
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
14959
|
+
|
14960
|
+
|
14961
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14962
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
14963
|
+
|
14964
|
+
|
14965
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14966
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
14967
|
+
|
14968
|
+
|
14969
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:50 -0300
|
14970
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
14971
|
+
|
14972
|
+
|
14973
|
+
Started DELETE "/dash/photos/7" for 127.0.0.1 at 2013-04-17 17:14:52 -0300
|
14974
|
+
Processing by Dash::PhotosController#destroy as HTML
|
14975
|
+
Parameters: {"authenticity_token"=>"y16OL8seLxGfUbksIOVE18tJ3mRc8IPW++ZhOBYgN+g=", "id"=>"7"}
|
14976
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "7"]]
|
14977
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14978
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "photos" WHERE "photos"."id" = ?[0m [["id", 7]]
|
14979
|
+
[1m[35m (2.5ms)[0m commit transaction
|
14980
|
+
Redirected to http://localhost:3000/dash/photos
|
14981
|
+
Completed 302 Found in 8ms (ActiveRecord: 3.0ms)
|
14982
|
+
|
14983
|
+
|
14984
|
+
Started GET "/dash/photos" for 127.0.0.1 at 2013-04-17 17:14:52 -0300
|
14985
|
+
Processing by Dash::PhotosController#index as HTML
|
14986
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_options.html.haml (2.0ms)
|
14987
|
+
[1m[36mPhoto Load (0.2ms)[0m [1mSELECT "photos".* FROM "photos" WHERE (LOWER(name) LIKE '%%') LIMIT 15 OFFSET 0[0m
|
14988
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE (LOWER(name) LIKE '%%')
|
14989
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/rails_dash/app/views/rails_dash/shared/_pager.html.haml (1.5ms)
|
14990
|
+
Rendered dash/photos/index.html.haml within layouts/dash (9.4ms)
|
14991
|
+
Completed 200 OK in 129ms (Views: 127.3ms | ActiveRecord: 0.3ms)
|
14992
|
+
|
14993
|
+
|
14994
|
+
Started GET "/assets/rails_dash/application.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
14995
|
+
Served asset /rails_dash/application.css - 304 Not Modified (0ms)
|
14996
|
+
|
14997
|
+
|
14998
|
+
Started GET "/assets/rails_dash/autocomplete.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
14999
|
+
Served asset /rails_dash/autocomplete.css - 304 Not Modified (0ms)
|
15000
|
+
|
15001
|
+
|
15002
|
+
Started GET "/assets/rails_dash/forms.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15003
|
+
Served asset /rails_dash/forms.css - 304 Not Modified (0ms)
|
15004
|
+
|
15005
|
+
|
15006
|
+
Started GET "/assets/rails_dash/content.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15007
|
+
Served asset /rails_dash/content.css - 304 Not Modified (0ms)
|
15008
|
+
|
15009
|
+
|
15010
|
+
Started GET "/assets/rails_dash/flash.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15011
|
+
Served asset /rails_dash/flash.css - 304 Not Modified (0ms)
|
15012
|
+
|
15013
|
+
|
15014
|
+
Started GET "/assets/rails_dash/footer.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15015
|
+
Served asset /rails_dash/footer.css - 304 Not Modified (0ms)
|
15016
|
+
|
15017
|
+
|
15018
|
+
Started GET "/assets/rails_dash/grid.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15019
|
+
Served asset /rails_dash/grid.css - 304 Not Modified (0ms)
|
15020
|
+
|
15021
|
+
|
15022
|
+
Started GET "/assets/rails_dash/header.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15023
|
+
Served asset /rails_dash/header.css - 304 Not Modified (0ms)
|
15024
|
+
|
15025
|
+
|
15026
|
+
Started GET "/assets/rails_dash/navigation.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15027
|
+
Served asset /rails_dash/navigation.css - 304 Not Modified (0ms)
|
15028
|
+
|
15029
|
+
|
15030
|
+
Started GET "/assets/rails_dash/page.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15031
|
+
Served asset /rails_dash/page.css - 304 Not Modified (0ms)
|
15032
|
+
|
15033
|
+
|
15034
|
+
Started GET "/assets/rails_dash/pager.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15035
|
+
Served asset /rails_dash/pager.css - 304 Not Modified (0ms)
|
15036
|
+
|
15037
|
+
|
15038
|
+
Started GET "/assets/rails_dash/style.css?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15039
|
+
Served asset /rails_dash/style.css - 304 Not Modified (0ms)
|
15040
|
+
|
15041
|
+
|
15042
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15043
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
15044
|
+
|
15045
|
+
|
15046
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15047
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
15048
|
+
|
15049
|
+
|
15050
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-17 17:14:53 -0300
|
15051
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_dash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
12
|
+
date: 2013-04-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|