poodle-rb 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1cd974dd96a4571f209f5b1d3c598b29b3712075
4
- data.tar.gz: 4884965237eca401e4f4b7177c60975454a233b6
3
+ metadata.gz: be8e691d01c4c593802eb02bd3271931c51e69df
4
+ data.tar.gz: 3173ad3f53babaa399f32e302c7de57c552a83e7
5
5
  SHA512:
6
- metadata.gz: 5becd2f7bc610d21c95471af4e23549a9ad493b072e6e0d067f793b1fc89ed62cd0b4af7bc7932134ff855083782d416e30ff06756f40bbbbfc65e06a4602276
7
- data.tar.gz: e3ffe939564fc051629ad39aa7ed77f0fd880f32e7dc2817f6f343a2c219312e5e29ad1064820c0348415f0c5ea321da751bb3a3d4619955bacc0a5e803a3f8c
6
+ metadata.gz: ab40a00c4e0338d797f569b3176ca932bec7f498a4ae64ac3b8a98dec669ae8af4e55ff11eed1202b7a749f93c037929b0613af4d1c13dcc0da73177f7815f31
7
+ data.tar.gz: 06666a925252cb310edca29e539d3e8ed2252100ff0419f4129e9116c0a50c3e580b2dfc88d98478970926a324fa44f7b878a04de6da6757d4371f762006d834
@@ -88,12 +88,12 @@ module Poodle
88
88
  end
89
89
 
90
90
  # theme_search_form is a helper to create a form to filter the results by entering a search query
91
- def theme_search_form(cls, url, method=:get, remote=true, text="Search!")
91
+ def theme_search_form(cls, url, method=:get, remote=true, text="Search!", placeholder="Search ...")
92
92
  form_for cls.new, :url => url,
93
93
  :method => method, :remote=>remote,
94
94
  :html=>{:class=>"pull-right", :style=>"margin-bottom:0px;"} do |f|
95
95
  content_tag :div, class: "input-group" do
96
- text_field_tag('query','', :class => 'form-control', :placeholder => 'Search ...') +
96
+ text_field_tag('query','', :class => 'form-control', :placeholder => placeholder) +
97
97
  content_tag(:span, class: "input-group-btn") do
98
98
  button_tag(type: 'submit', class: "btn btn-default") do
99
99
  raw(theme_fa_icon('search') +
@@ -186,8 +186,8 @@ module Poodle
186
186
  # is equivalent to:
187
187
  # ---------------------------
188
188
  # <%= link_to project.name, admin_project_path(project), :remote=>true, :class=>"text-color-blue fs-16" %>
189
- def theme_item_title(title, url, classes = "text-color-blue fs-16")
190
- link_to(title, url, :remote=>true, :class=>classes)
189
+ def theme_item_title(title, url, classes = "text-color-blue fs-16", remote=true)
190
+ link_to(title, url, :remote=>remote, :class=>classes)
191
191
  end
192
192
 
193
193
  # Example
@@ -1,3 +1,3 @@
1
1
  module Poodle
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -20695,3 +20695,362 @@ Processing by ProfilePicturesController#new as JS
20695
20695
  Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.1ms)
20696
20696
   (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20697
20697
   (0.5ms) rollback transaction
20698
+  (0.5ms) begin transaction
20699
+  (0.1ms) SAVEPOINT active_record_1
20700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20701
+  (0.1ms) SAVEPOINT active_record_1
20702
+  (0.1ms) SAVEPOINT active_record_2
20703
+ SQL (1.0ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:01.023191"], ["updated_at", "2015-04-20 03:51:01.023191"]]
20704
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20705
+ Processing by ProfilePicturesController#new as JS
20706
+ Parameters: {"image_type"=>"Image::ProfilePicture", "imageable_type"=>"User", "imageable_id"=>"1"}
20707
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
20708
+ Rendered profile_pictures/new.js.erb (0.5ms)
20709
+ Completed 200 OK in 131ms (Views: 80.3ms | ActiveRecord: 0.4ms)
20710
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20711
+  (0.8ms) rollback transaction
20712
+  (0.1ms) begin transaction
20713
+  (0.0ms) SAVEPOINT active_record_1
20714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20715
+  (0.0ms) SAVEPOINT active_record_1
20716
+  (0.1ms) SAVEPOINT active_record_2
20717
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:01.328623"], ["updated_at", "2015-04-20 03:51:01.328623"]]
20718
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20719
+  (0.1ms) SAVEPOINT active_record_2
20720
+ SQL (15.7ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:01.714355"], ["updated_at", "2015-04-20 03:51:01.714355"]]
20721
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20722
+ Image::ProfilePicture Load (0.2ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20723
+ Processing by ProfilePicturesController#update as HTML
20724
+ Parameters: {"image"=>#<Rack::Test::UploadedFile:0x007fed3f1f5958 @content_type="image/jpg", @original_filename="test.jpg", @tempfile=#<Tempfile:/var/folders/s1/_3h4h96n4w37msyfhzkwz4yr0000gn/T/test.jpg20150420-80809-11tigyk>>, "image_type"=>"Image::ProfilePicture", "imageable_type"=>"User", "imageable_id"=>"1", "id"=>"1"}
20725
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
20726
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 1]]
20727
+  (0.1ms) SAVEPOINT active_record_2
20728
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 1]]
20729
+ SQL (0.2ms) UPDATE "images" SET "image" = ?, "updated_at" = ? WHERE "images"."id" = ? [["image", "test.jpg"], ["updated_at", "2015-04-20 03:51:01.794566"], ["id", 1]]
20730
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20731
+ Rendered profile_pictures/update.html.erb within layouts/poodle/image_upload (0.3ms)
20732
+ Completed 200 OK in 76ms (Views: 30.3ms | ActiveRecord: 0.5ms)
20733
+  (0.1ms) SELECT COUNT(*) FROM "images"
20734
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20735
+  (0.7ms) rollback transaction
20736
+  (0.1ms) begin transaction
20737
+  (0.0ms) SAVEPOINT active_record_1
20738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20739
+  (0.0ms) SAVEPOINT active_record_1
20740
+  (0.0ms) SAVEPOINT active_record_2
20741
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:01.835732"], ["updated_at", "2015-04-20 03:51:01.835732"]]
20742
+  (0.0ms) RELEASE SAVEPOINT active_record_2
20743
+ Processing by ProfilePicturesController#create as HTML
20744
+ Parameters: {"image"=>#<Rack::Test::UploadedFile:0x007fed3ce2bd10 @content_type="image/jpg", @original_filename="test.jpg", @tempfile=#<Tempfile:/var/folders/s1/_3h4h96n4w37msyfhzkwz4yr0000gn/T/test.jpg20150420-80809-1mxwu2s>>, "image_type"=>"Image::ProfilePicture", "imageable_type"=>"User", "imageable_id"=>"1"}
20745
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
20746
+  (0.1ms) SAVEPOINT active_record_2
20747
+ SQL (16.8ms) INSERT INTO "images" ("imageable_id", "imageable_type", "image", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["imageable_id", 1], ["imageable_type", "User"], ["image", "test.jpg"], ["created_at", "2015-04-20 03:51:01.880922"], ["updated_at", "2015-04-20 03:51:01.880922"]]
20748
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20749
+ Rendered profile_pictures/create.html.erb within layouts/poodle/image_upload (0.3ms)
20750
+ Completed 200 OK in 66ms (Views: 1.6ms | ActiveRecord: 17.0ms)
20751
+  (0.1ms) SELECT COUNT(*) FROM "images"
20752
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20753
+  (0.7ms) rollback transaction
20754
+  (0.1ms) begin transaction
20755
+  (0.0ms) SAVEPOINT active_record_1
20756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20757
+  (0.0ms) SAVEPOINT active_record_1
20758
+  (0.1ms) SAVEPOINT active_record_2
20759
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:01.907798"], ["updated_at", "2015-04-20 03:51:01.907798"]]
20760
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20761
+  (0.1ms) SAVEPOINT active_record_2
20762
+ SQL (0.4ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:02.031322"], ["updated_at", "2015-04-20 03:51:02.031322"]]
20763
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20764
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20765
+ Processing by ProfilePicturesController#edit as JS
20766
+ Parameters: {"image_type"=>"Image::ProfilePicture", "imageable_type"=>"User", "imageable_id"=>"1", "id"=>"1"}
20767
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
20768
+ Image::ProfilePicture Load (0.0ms) SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 1]]
20769
+ Rendered profile_pictures/edit.js.erb (0.5ms)
20770
+ Completed 200 OK in 73ms (Views: 72.6ms | ActiveRecord: 0.1ms)
20771
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
20772
+  (29.2ms) rollback transaction
20773
+  (0.1ms) begin transaction
20774
+  (0.1ms) SAVEPOINT active_record_1
20775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20776
+  (0.0ms) SAVEPOINT active_record_1
20777
+  (0.1ms) SAVEPOINT active_record_2
20778
+ SQL (1.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:02.277524"], ["updated_at", "2015-04-20 03:51:02.277524"]]
20779
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20780
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20781
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20782
+  (426.8ms) rollback transaction
20783
+  (0.1ms) begin transaction
20784
+  (0.1ms) SAVEPOINT active_record_1
20785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20786
+  (0.0ms) SAVEPOINT active_record_1
20787
+  (0.0ms) SAVEPOINT active_record_2
20788
+ SQL (1.0ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:02.791216"], ["updated_at", "2015-04-20 03:51:02.791216"]]
20789
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20790
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20791
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20792
+  (136.0ms) rollback transaction
20793
+  (0.1ms) begin transaction
20794
+  (0.0ms) SAVEPOINT active_record_1
20795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20796
+  (0.0ms) SAVEPOINT active_record_1
20797
+  (0.0ms) SAVEPOINT active_record_2
20798
+ SQL (60.9ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:02.934281"], ["updated_at", "2015-04-20 03:51:02.934281"]]
20799
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20800
+  (0.1ms) SAVEPOINT active_record_2
20801
+ SQL (0.3ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:03.340387"], ["updated_at", "2015-04-20 03:51:03.340387"]]
20802
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20803
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20804
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20805
+  (191.5ms) rollback transaction
20806
+  (0.1ms) begin transaction
20807
+  (0.1ms) SAVEPOINT active_record_1
20808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20809
+  (0.0ms) SAVEPOINT active_record_1
20810
+  (0.1ms) SAVEPOINT active_record_2
20811
+ SQL (14.8ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:03.680980"], ["updated_at", "2015-04-20 03:51:03.680980"]]
20812
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20813
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20814
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20815
+  (136.2ms) rollback transaction
20816
+  (0.1ms) begin transaction
20817
+  (0.1ms) SAVEPOINT active_record_1
20818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20819
+  (0.1ms) SAVEPOINT active_record_1
20820
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20821
+  (0.1ms) rollback transaction
20822
+  (0.1ms) begin transaction
20823
+  (0.0ms) SAVEPOINT active_record_1
20824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20825
+  (0.0ms) SAVEPOINT active_record_1
20826
+  (0.0ms) SAVEPOINT active_record_2
20827
+ SQL (41.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:03.842242"], ["updated_at", "2015-04-20 03:51:03.842242"]]
20828
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20829
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20830
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20831
+  (19.0ms) rollback transaction
20832
+  (0.1ms) begin transaction
20833
+  (0.1ms) SAVEPOINT active_record_1
20834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20835
+  (0.0ms) SAVEPOINT active_record_1
20836
+  (0.1ms) SAVEPOINT active_record_2
20837
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:03.950817"], ["updated_at", "2015-04-20 03:51:03.950817"]]
20838
+  (0.0ms) RELEASE SAVEPOINT active_record_2
20839
+  (0.1ms) SAVEPOINT active_record_2
20840
+ SQL (0.6ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:04.159637"], ["updated_at", "2015-04-20 03:51:04.159637"]]
20841
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20842
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20843
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20844
+  (198.7ms) rollback transaction
20845
+  (0.1ms) begin transaction
20846
+  (0.1ms) SAVEPOINT active_record_1
20847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20848
+  (0.0ms) SAVEPOINT active_record_1
20849
+  (0.0ms) SAVEPOINT active_record_2
20850
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:04.391343"], ["updated_at", "2015-04-20 03:51:04.391343"]]
20851
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20852
+ Image::ProfilePicture Load (0.0ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20853
+  (0.1ms) SAVEPOINT active_record_2
20854
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:04.394852"], ["updated_at", "2015-04-20 03:51:04.394852"]]
20855
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20856
+  (0.1ms) SAVEPOINT active_record_2
20857
+ SQL (0.1ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 2], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:04.756926"], ["updated_at", "2015-04-20 03:51:04.756926"]]
20858
+  (0.2ms) RELEASE SAVEPOINT active_record_2
20859
+ Image::ProfilePicture Load (0.2ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 2], ["imageable_type", "User"]]
20860
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
20861
+  (1.3ms) rollback transaction
20862
+  (0.1ms) begin transaction
20863
+  (0.0ms) SAVEPOINT active_record_1
20864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20865
+  (0.0ms) SAVEPOINT active_record_1
20866
+  (0.0ms) SAVEPOINT active_record_2
20867
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:04.812427"], ["updated_at", "2015-04-20 03:51:04.812427"]]
20868
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20869
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20870
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20871
+  (0.5ms) rollback transaction
20872
+  (0.1ms) begin transaction
20873
+  (0.1ms) SAVEPOINT active_record_1
20874
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20875
+  (0.1ms) SAVEPOINT active_record_1
20876
+  (0.1ms) SAVEPOINT active_record_2
20877
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:04.820442"], ["updated_at", "2015-04-20 03:51:04.820442"]]
20878
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20879
+  (0.1ms) SAVEPOINT active_record_2
20880
+ SQL (0.4ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:04.870121"], ["updated_at", "2015-04-20 03:51:04.870121"]]
20881
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20882
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20883
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20884
+  (0.8ms) rollback transaction
20885
+  (0.1ms) begin transaction
20886
+  (0.0ms) SAVEPOINT active_record_1
20887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20888
+  (0.0ms) SAVEPOINT active_record_1
20889
+  (0.0ms) SAVEPOINT active_record_2
20890
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:04.881532"], ["updated_at", "2015-04-20 03:51:04.881532"]]
20891
+  (0.0ms) RELEASE SAVEPOINT active_record_2
20892
+ Image::ProfilePicture Load (0.0ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20893
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20894
+  (0.5ms) rollback transaction
20895
+  (0.1ms) begin transaction
20896
+  (0.0ms) SAVEPOINT active_record_1
20897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20898
+  (0.0ms) SAVEPOINT active_record_1
20899
+  (0.1ms) SAVEPOINT active_record_2
20900
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:04.888035"], ["updated_at", "2015-04-20 03:51:04.888035"]]
20901
+  (0.0ms) RELEASE SAVEPOINT active_record_2
20902
+  (0.1ms) SAVEPOINT active_record_2
20903
+ SQL (0.3ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:04.948839"], ["updated_at", "2015-04-20 03:51:04.948839"]]
20904
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20905
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20906
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20907
+  (0.8ms) rollback transaction
20908
+  (0.1ms) begin transaction
20909
+  (0.0ms) SAVEPOINT active_record_1
20910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20911
+  (0.0ms) SAVEPOINT active_record_1
20912
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20913
+  (0.0ms) rollback transaction
20914
+  (0.1ms) begin transaction
20915
+  (0.1ms) SAVEPOINT active_record_1
20916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20917
+  (0.0ms) SAVEPOINT active_record_1
20918
+  (0.1ms) SAVEPOINT active_record_2
20919
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Some Name"], ["created_at", "2015-04-20 03:51:04.962112"], ["updated_at", "2015-04-20 03:51:04.962112"]]
20920
+  (0.0ms) RELEASE SAVEPOINT active_record_2
20921
+  (0.1ms) SAVEPOINT active_record_2
20922
+ SQL (0.3ms) INSERT INTO "images" ("image", "imageable_id", "imageable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["image", "test.jpg"], ["imageable_id", 1], ["imageable_type", "User"], ["created_at", "2015-04-20 03:51:05.006804"], ["updated_at", "2015-04-20 03:51:05.006804"]]
20923
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20924
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20925
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
20926
+  (0.8ms) rollback transaction
20927
+  (0.1ms) begin transaction
20928
+  (0.0ms) SAVEPOINT active_record_1
20929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20930
+  (0.0ms) SAVEPOINT active_record_1
20931
+  (0.1ms) SAVEPOINT active_record_2
20932
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "First Middle Last"], ["created_at", "2015-04-20 03:51:05.017777"], ["updated_at", "2015-04-20 03:51:05.017777"]]
20933
+  (0.1ms) RELEASE SAVEPOINT active_record_2
20934
+ Image::ProfilePicture Load (0.1ms) SELECT "images".* FROM "images" WHERE "images"."imageable_id" = ? AND "images"."imageable_type" = ? LIMIT 1 [["imageable_id", 1], ["imageable_type", "User"]]
20935
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20936
+  (0.6ms) rollback transaction
20937
+  (0.1ms) begin transaction
20938
+  (0.0ms) SAVEPOINT active_record_1
20939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20940
+  (0.0ms) SAVEPOINT active_record_1
20941
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20942
+  (0.0ms) rollback transaction
20943
+  (0.1ms) begin transaction
20944
+  (0.1ms) SAVEPOINT active_record_1
20945
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20946
+  (0.1ms) SAVEPOINT active_record_1
20947
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20948
+  (0.1ms) rollback transaction
20949
+  (0.1ms) begin transaction
20950
+  (0.0ms) SAVEPOINT active_record_1
20951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20952
+  (0.0ms) SAVEPOINT active_record_1
20953
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20954
+  (0.0ms) rollback transaction
20955
+  (0.0ms) begin transaction
20956
+  (0.0ms) SAVEPOINT active_record_1
20957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20958
+  (0.0ms) SAVEPOINT active_record_1
20959
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20960
+  (0.0ms) rollback transaction
20961
+  (0.1ms) begin transaction
20962
+  (0.0ms) SAVEPOINT active_record_1
20963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20964
+  (0.0ms) SAVEPOINT active_record_1
20965
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20966
+  (0.1ms) rollback transaction
20967
+  (0.1ms) begin transaction
20968
+  (0.1ms) SAVEPOINT active_record_1
20969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20970
+  (0.0ms) SAVEPOINT active_record_1
20971
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
20972
+  (0.1ms) rollback transaction
20973
+  (0.1ms) begin transaction
20974
+  (0.1ms) SAVEPOINT active_record_1
20975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20976
+  (0.0ms) SAVEPOINT active_record_1
20977
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20978
+  (0.0ms) rollback transaction
20979
+  (0.0ms) begin transaction
20980
+  (0.0ms) SAVEPOINT active_record_1
20981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20982
+  (0.0ms) SAVEPOINT active_record_1
20983
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20984
+  (0.0ms) rollback transaction
20985
+  (0.1ms) begin transaction
20986
+  (0.1ms) SAVEPOINT active_record_1
20987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20988
+  (0.0ms) SAVEPOINT active_record_1
20989
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20990
+  (0.0ms) rollback transaction
20991
+  (0.0ms) begin transaction
20992
+  (0.0ms) SAVEPOINT active_record_1
20993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20994
+  (0.0ms) SAVEPOINT active_record_1
20995
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
20996
+  (0.0ms) rollback transaction
20997
+  (0.0ms) begin transaction
20998
+  (0.0ms) SAVEPOINT active_record_1
20999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21000
+  (0.0ms) SAVEPOINT active_record_1
21001
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21002
+  (0.0ms) rollback transaction
21003
+  (0.1ms) begin transaction
21004
+  (0.0ms) SAVEPOINT active_record_1
21005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21006
+  (0.0ms) SAVEPOINT active_record_1
21007
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21008
+  (0.0ms) rollback transaction
21009
+  (0.0ms) begin transaction
21010
+  (0.0ms) SAVEPOINT active_record_1
21011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21012
+  (0.0ms) SAVEPOINT active_record_1
21013
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21014
+  (0.0ms) rollback transaction
21015
+  (0.1ms) begin transaction
21016
+  (0.0ms) SAVEPOINT active_record_1
21017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21018
+  (0.0ms) SAVEPOINT active_record_1
21019
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21020
+  (0.0ms) rollback transaction
21021
+  (0.0ms) begin transaction
21022
+  (0.0ms) SAVEPOINT active_record_1
21023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21024
+  (0.0ms) SAVEPOINT active_record_1
21025
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21026
+  (0.0ms) rollback transaction
21027
+  (0.0ms) begin transaction
21028
+  (0.0ms) SAVEPOINT active_record_1
21029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21030
+  (0.0ms) SAVEPOINT active_record_1
21031
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21032
+  (0.0ms) rollback transaction
21033
+  (0.0ms) begin transaction
21034
+  (0.0ms) SAVEPOINT active_record_1
21035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21036
+  (0.0ms) SAVEPOINT active_record_1
21037
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21038
+  (0.0ms) rollback transaction
21039
+  (0.0ms) begin transaction
21040
+  (0.1ms) SAVEPOINT active_record_1
21041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21042
+  (0.0ms) SAVEPOINT active_record_1
21043
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21044
+  (0.0ms) rollback transaction
21045
+  (0.0ms) begin transaction
21046
+  (0.0ms) SAVEPOINT active_record_1
21047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21048
+  (0.0ms) SAVEPOINT active_record_1
21049
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21050
+  (0.0ms) rollback transaction
21051
+  (0.0ms) begin transaction
21052
+  (0.0ms) SAVEPOINT active_record_1
21053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21054
+  (0.0ms) SAVEPOINT active_record_1
21055
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
21056
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poodle-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krishnaprasad Varma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-17 00:00:00.000000000 Z
11
+ date: 2015-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kaminari