Skip to content

Commit

Permalink
gitignore and bundle source added.
Browse files Browse the repository at this point in the history
  • Loading branch information
rizwanreza committed Aug 18, 2010
1 parent f166e59 commit 0c87b89
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
log/**/*
tmp/**/*
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
source :gemcutter

gem "rails", "~> 2.3.8"
gem "sqlite3-ruby", :require => "sqlite3"
gem "faker"
Expand Down
27 changes: 27 additions & 0 deletions log/development.log
Original file line number Diff line number Diff line change
Expand Up @@ -2422,3 +2422,30 @@ Rendering template within layouts/address_books
Rendering address_books/index
AddressBook Load (41.9ms) SELECT * FROM "address_books" WHERE (name NOT LIKE '%Jeffry%') 
Completed in 1340ms (View: 1224, DB: 85) | 200 OK [http://localhost/address_books?criteria=not_contain&name=Jeffry]


Processing AddressBooksController#index (for 127.0.0.1 at 2010-08-18 23:52:40) [GET]
Parameters: {"name"=>"Lula", "criteria"=>"not_contain"}
AddressBook Load (170.8ms) SELECT * FROM "address_books" 
Rendering template within layouts/address_books
Rendering address_books/index
AddressBook Load (42.4ms) SELECT * FROM "address_books" WHERE (name NOT LIKE '%Lula%') 
Completed in 1531ms (View: 1287, DB: 213) | 200 OK [http://localhost/address_books?criteria=not_contain&name=Lula]


Processing AddressBooksController#index (for 127.0.0.1 at 2010-08-18 23:52:47) [GET]
Parameters: {"name"=>"Jeffry", "criteria"=>"contains"}
AddressBook Load (42.6ms) SELECT * FROM "address_books" 
Rendering template within layouts/address_books
Rendering address_books/index
AddressBook Load (0.7ms) SELECT * FROM "address_books" WHERE (name LIKE '%Jeffry%') 
Completed in 87ms (View: 13, DB: 43) | 200 OK [http://localhost/address_books?criteria=contains&name=Jeffry]


Processing AddressBooksController#index (for 127.0.0.1 at 2010-08-18 23:52:52) [GET]
Parameters: {"name"=>"Jeffry", "criteria"=>"not_contain"}
AddressBook Load (42.3ms) SELECT * FROM "address_books" 
Rendering template within layouts/address_books
Rendering address_books/index
AddressBook Load (42.1ms) SELECT * FROM "address_books" WHERE (name NOT LIKE '%Jeffry%') 
Completed in 1334ms (View: 1218, DB: 84) | 200 OK [http://localhost/address_books?criteria=not_contain&name=Jeffry]

0 comments on commit 0c87b89

Please sign in to comment.