dancroak-sortable_table 0.1.0 → 0.1.1
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/VERSION.yml +1 -1
- data/lib/sortable_table/app/controllers/application_controller.rb +4 -8
- data/lib/sortable_table/app/helpers/application_helper.rb +23 -46
- data/lib/sortable_table/test/test_helper.rb +9 -24
- data/test/rails_root/app/controllers/users_controller.rb +1 -1
- data/test/rails_root/app/views/users/index.html.erb +3 -3
- data/test/rails_root/config/initializers/sortable_table.rb +8 -0
- data/test/rails_root/log/test.log +692 -0
- data/test/rails_root/test/functional/users_controller_test.rb +1 -1
- metadata +3 -123
data/VERSION.yml
CHANGED
@@ -14,19 +14,15 @@ module SortableTable
|
|
14
14
|
def sortable_attributes(*args)
|
15
15
|
mappings = args.last.is_a?(Hash) ? args.pop : {}
|
16
16
|
acceptable_columns = args.collect(&:to_s) + mappings.keys.collect(&:to_s)
|
17
|
-
|
17
|
+
|
18
18
|
define_method(:sort_order) do |*default|
|
19
|
-
direction =
|
20
|
-
|
21
|
-
else
|
22
|
-
default_sort_direction(default)
|
23
|
-
end
|
24
|
-
column = params[:sort] || 'created_at'
|
19
|
+
direction = params[:order] == 'ascending' ? 'asc' : 'desc'
|
20
|
+
column = params[:sort] || 'created_on'
|
25
21
|
if params[:sort] && acceptable_columns.include?(column)
|
26
22
|
column = mappings[column.to_sym] || column
|
27
23
|
"#{column} #{direction}"
|
28
24
|
else
|
29
|
-
"#{acceptable_columns.first} #{
|
25
|
+
"#{acceptable_columns.first} #{default_sort_direction(default)}"
|
30
26
|
end
|
31
27
|
end
|
32
28
|
end
|
@@ -10,53 +10,42 @@ module SortableTable
|
|
10
10
|
end
|
11
11
|
|
12
12
|
module InstanceMethods
|
13
|
-
def sortable_table_header(
|
14
|
-
opts
|
15
|
-
|
16
|
-
inner_html = args
|
17
|
-
if inner_html.blank?
|
18
|
-
raise ArgumentError("Must specify inner_html as first argument")
|
19
|
-
end
|
20
|
-
|
21
|
-
# if args.first.is_a?(String)
|
22
|
-
# inner_html = args.shift
|
23
|
-
# elsif opts.first.is_a?(Hash)
|
24
|
-
# if opts.has_key?(:inner_html)
|
25
|
-
# inner_html = opts[:inner_html]
|
26
|
-
# else
|
27
|
-
# # raise ArgumentError unless opts.has_key?(:sort)
|
28
|
-
# inner_html = opts[:sort].humanize
|
29
|
-
# end
|
30
|
-
# else
|
31
|
-
# raise ArgumentError,
|
32
|
-
# "calling signature must be String, Hash or Hash"
|
33
|
-
# end
|
34
|
-
|
35
|
-
# anchor = opts[:anchor].blank? ? "" : "##{opts[:anchor]}"
|
36
|
-
# sortable_url(opts) + anchor
|
37
|
-
|
13
|
+
def sortable_table_header(opts = {})
|
14
|
+
raise ArgumentError if opts[:name].nil? || opts[:sort].nil?
|
15
|
+
anchor = opts[:anchor].blank? ? "" : "##{opts[:anchor]}"
|
38
16
|
content_tag :th,
|
39
|
-
link_to(
|
40
|
-
sortable_url(opts),
|
17
|
+
link_to(opts[:name],
|
18
|
+
sortable_url(opts) + anchor,
|
41
19
|
:title => opts[:title]),
|
42
20
|
:class => class_name_for_sortable_table_header_tag(opts)
|
43
21
|
end
|
44
|
-
|
22
|
+
|
45
23
|
def class_name_for_sortable_table_header_tag(opts)
|
46
24
|
if default_sort_to_most_recent? opts
|
47
|
-
|
25
|
+
'descending'
|
48
26
|
elsif re_sort? opts
|
49
|
-
|
27
|
+
params[:order]
|
50
28
|
else
|
51
|
-
|
29
|
+
nil
|
52
30
|
end
|
53
|
-
class_name << " #{opts[:class_name]}"
|
54
31
|
end
|
55
|
-
|
32
|
+
|
33
|
+
def default_sort_to_most_recent?(opts)
|
34
|
+
params[:sort].nil? && opts[:sort] == 'date'
|
35
|
+
end
|
36
|
+
|
37
|
+
def re_sort?(opts)
|
38
|
+
params[:sort] == opts[:sort]
|
39
|
+
end
|
40
|
+
|
41
|
+
def reverse_order(order)
|
42
|
+
order == 'ascending' ? 'descending' : 'ascending'
|
43
|
+
end
|
44
|
+
|
56
45
|
def sortable_url(opts)
|
57
46
|
url_for(params.merge(:sort => opts[:sort], :order => link_sort_order(opts), :page => 1))
|
58
47
|
end
|
59
|
-
|
48
|
+
|
60
49
|
def link_sort_order(opts)
|
61
50
|
if default_sort_to_most_recent? opts
|
62
51
|
'ascending'
|
@@ -66,18 +55,6 @@ module SortableTable
|
|
66
55
|
'ascending'
|
67
56
|
end
|
68
57
|
end
|
69
|
-
|
70
|
-
def default_sort_to_most_recent?(opts)
|
71
|
-
params[:sort].nil? && opts[:sort] == @sorted_column
|
72
|
-
end
|
73
|
-
|
74
|
-
def re_sort?(opts)
|
75
|
-
params[:sort] == opts[:sort]
|
76
|
-
end
|
77
|
-
|
78
|
-
def reverse_order(order)
|
79
|
-
order == 'ascending' ? 'descending' : 'ascending'
|
80
|
-
end
|
81
58
|
end
|
82
59
|
|
83
60
|
end
|
@@ -4,26 +4,23 @@ module SortableTable
|
|
4
4
|
|
5
5
|
def self.included(base)
|
6
6
|
base.class_eval do
|
7
|
-
include InstanceMethods
|
8
7
|
extend ClassMethods
|
9
8
|
end
|
10
9
|
end
|
11
|
-
|
12
|
-
module InstanceMethods
|
13
|
-
def stubbed_action_view
|
14
|
-
view = ActionView::Base.new(@controller.class.view_paths, {}, @controller)
|
15
|
-
yield view
|
16
|
-
ActionView::Base.stubs(:new).returns(view)
|
17
|
-
end
|
18
|
-
end
|
19
10
|
|
20
11
|
module ClassMethods
|
21
|
-
def should_sort_by(attribute,
|
12
|
+
def should_sort_by(attribute, &block)
|
22
13
|
collection = self.name.underscore.gsub(/_controller_test/, '')
|
23
14
|
collection.slice!(0..collection.rindex('/')) if collection.include?('/')
|
24
15
|
collection = collection.to_sym
|
25
16
|
model_name = collection.to_s.singularize.camelize.constantize
|
26
|
-
|
17
|
+
|
18
|
+
if !block
|
19
|
+
if model_name.columns.select{|c| c.name == attribute.to_s }.first.type == :boolean
|
20
|
+
block = lambda{|x| x.send(attribute).to_s }
|
21
|
+
end
|
22
|
+
block ||= attribute
|
23
|
+
end
|
27
24
|
|
28
25
|
%w(ascending descending).each do |direction|
|
29
26
|
should "sort by #{attribute.to_s} #{direction}" do
|
@@ -32,8 +29,6 @@ module SortableTable
|
|
32
29
|
|
33
30
|
get :index, :sort => attribute.to_s, :order => direction
|
34
31
|
|
35
|
-
# controller tests
|
36
|
-
|
37
32
|
assert_not_nil assigns(collection),
|
38
33
|
"assigns(:#{collection}) is nil"
|
39
34
|
assert assigns(collection).size >= 2,
|
@@ -42,19 +37,9 @@ module SortableTable
|
|
42
37
|
expected = assigns(collection).sort_by(&block)
|
43
38
|
expected = expected.reverse if direction == 'descending'
|
44
39
|
|
45
|
-
assert expected == assigns(collection),
|
40
|
+
assert expected.map(&block) == assigns(collection).map(&block),
|
46
41
|
"expected - #{expected.map(&block).inspect}," <<
|
47
42
|
" but was - #{assigns(collection).map(&block).inspect}"
|
48
|
-
|
49
|
-
# view tests
|
50
|
-
|
51
|
-
view_helper_error_message = "Include the sortable_table_header" <<
|
52
|
-
" helper in your view with the option :sort => '#{attribute}'"
|
53
|
-
|
54
|
-
assert_select "th" do
|
55
|
-
assert_select "a[href*=?]", "sort=#{attribute.to_s}",
|
56
|
-
true, view_helper_error_message
|
57
|
-
end
|
58
43
|
end
|
59
44
|
end
|
60
45
|
end
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
<table>
|
4
4
|
<tr>
|
5
|
-
<%= sortable_table_header 'Name', :sort => 'name' %>
|
6
|
-
<%= sortable_table_header 'Email', :sort => 'email' %>
|
7
|
-
<%= sortable_table_header 'Age', :sort => 'age' %>
|
5
|
+
<%= sortable_table_header :name => 'Name', :sort => 'name' %>
|
6
|
+
<%= sortable_table_header :name => 'Email', :sort => 'email' %>
|
7
|
+
<%= sortable_table_header :name => 'Age', :sort => 'age' %>
|
8
8
|
<th>Created On</th>
|
9
9
|
</tr>
|
10
10
|
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# This simulates loading the sortable_table gem, but without relying on
|
2
|
+
# vendor/gems
|
3
|
+
|
4
|
+
sortable_table_path = File.join(File.dirname(__FILE__), *%w(.. .. .. ..))
|
5
|
+
sortable_table_lib_path = File.join(sortable_table_path, "lib")
|
6
|
+
|
7
|
+
$LOAD_PATH.unshift(sortable_table_lib_path)
|
8
|
+
load File.join(sortable_table_path, 'rails', 'init.rb')
|
@@ -0,0 +1,692 @@
|
|
1
|
+
# Logfile created on Thu Oct 16 14:18:01 -0400 2008 [4;36;1mUser Create (0.000541)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:18:47', NULL, 1, 'email1@example.com', '2008-10-16 18:18:47')[0m
|
2
|
+
[4;35;1mUser Create (0.000121)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:18:47', NULL, 2, 'email2@example.com', '2008-10-16 18:18:47')[0m
|
3
|
+
[4;36;1mUser Load (0.000524)[0m [0;1mSELECT * FROM "users" [0m
|
4
|
+
|
5
|
+
|
6
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:18:47) [GET]
|
7
|
+
Session ID:
|
8
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
9
|
+
[4;35;1mUser Load (0.001175)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
10
|
+
Rendering template within layouts/users
|
11
|
+
Rendering users/index
|
12
|
+
Completed in 0.22554 (4 reqs/sec) | Rendering: 0.13327 (59%) | DB: 0.00236 (1%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
13
|
+
[4;36;1mUser Create (0.000453)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:18:47', NULL, 3, 'email3@example.com', '2008-10-16 18:18:47')[0m
|
14
|
+
[4;35;1mUser Create (0.000138)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:18:47', NULL, 4, 'email4@example.com', '2008-10-16 18:18:47')[0m
|
15
|
+
[4;36;1mUser Load (0.000555)[0m [0;1mSELECT * FROM "users" [0m
|
16
|
+
|
17
|
+
|
18
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:18:47) [GET]
|
19
|
+
Session ID:
|
20
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
21
|
+
[4;35;1mUser Load (0.001065)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
22
|
+
Rendering template within layouts/users
|
23
|
+
Rendering users/index
|
24
|
+
Completed in 0.00475 (210 reqs/sec) | Rendering: 0.00306 (64%) | DB: 0.00221 (46%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
25
|
+
[4;36;1mUser Create (0.000382)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:18:47', NULL, 5, 'email5@example.com', '2008-10-16 18:18:47')[0m
|
26
|
+
[4;35;1mUser Create (0.000110)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:18:47', NULL, 6, 'email6@example.com', '2008-10-16 18:18:47')[0m
|
27
|
+
[4;36;1mUser Load (0.000475)[0m [0;1mSELECT * FROM "users" [0m
|
28
|
+
|
29
|
+
|
30
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:18:47) [GET]
|
31
|
+
Session ID:
|
32
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
33
|
+
[4;35;1mUser Load (0.000838)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
34
|
+
Rendering template within layouts/users
|
35
|
+
Rendering users/index
|
36
|
+
Completed in 0.00369 (271 reqs/sec) | Rendering: 0.00234 (63%) | DB: 0.00180 (48%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
37
|
+
[4;36;1mUser Create (0.000385)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:18:47', NULL, 7, 'email7@example.com', '2008-10-16 18:18:47')[0m
|
38
|
+
[4;35;1mUser Create (0.000110)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:18:47', NULL, 8, 'email8@example.com', '2008-10-16 18:18:47')[0m
|
39
|
+
[4;36;1mUser Load (0.000547)[0m [0;1mSELECT * FROM "users" [0m
|
40
|
+
|
41
|
+
|
42
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:18:47) [GET]
|
43
|
+
Session ID:
|
44
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
45
|
+
[4;35;1mUser Load (0.001359)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
46
|
+
Rendering template within layouts/users
|
47
|
+
Rendering users/index
|
48
|
+
Completed in 0.00461 (216 reqs/sec) | Rendering: 0.00264 (57%) | DB: 0.00240 (52%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
49
|
+
[4;36;1mUser Create (0.000562)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:30:08', NULL, 1, 'email1@example.com', '2008-10-16 18:30:08')[0m
|
50
|
+
[4;35;1mUser Create (0.000117)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:30:08', NULL, 2, 'email2@example.com', '2008-10-16 18:30:08')[0m
|
51
|
+
[4;36;1mUser Load (0.000558)[0m [0;1mSELECT * FROM "users" [0m
|
52
|
+
|
53
|
+
|
54
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:30:08) [GET]
|
55
|
+
Session ID:
|
56
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
57
|
+
[4;35;1mUser Load (0.000998)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
58
|
+
Rendering template within layouts/users
|
59
|
+
Rendering users/index
|
60
|
+
Completed in 0.04727 (21 reqs/sec) | Rendering: 0.04269 (90%) | DB: 0.00223 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
61
|
+
[4;36;1mUser Create (0.000874)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:30:08', NULL, 3, 'email3@example.com', '2008-10-16 18:30:08')[0m
|
62
|
+
[4;35;1mUser Create (0.000162)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:30:08', NULL, 4, 'email4@example.com', '2008-10-16 18:30:08')[0m
|
63
|
+
[4;36;1mUser Load (0.000687)[0m [0;1mSELECT * FROM "users" [0m
|
64
|
+
|
65
|
+
|
66
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:30:08) [GET]
|
67
|
+
Session ID:
|
68
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
69
|
+
[4;35;1mUser Load (0.001261)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
70
|
+
Rendering template within layouts/users
|
71
|
+
Rendering users/index
|
72
|
+
Completed in 0.00489 (204 reqs/sec) | Rendering: 0.00292 (59%) | DB: 0.00298 (61%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
73
|
+
[4;36;1mUser Create (0.000338)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:30:08', NULL, 5, 'email5@example.com', '2008-10-16 18:30:08')[0m
|
74
|
+
[4;35;1mUser Create (0.000119)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:30:08', NULL, 6, 'email6@example.com', '2008-10-16 18:30:08')[0m
|
75
|
+
[4;36;1mUser Load (0.000495)[0m [0;1mSELECT * FROM "users" [0m
|
76
|
+
|
77
|
+
|
78
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:30:08) [GET]
|
79
|
+
Session ID:
|
80
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
81
|
+
[4;35;1mUser Load (0.000856)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
82
|
+
Rendering template within layouts/users
|
83
|
+
Rendering users/index
|
84
|
+
Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00237 (63%) | DB: 0.00181 (48%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
85
|
+
[4;36;1mUser Create (0.000408)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:30:08', NULL, 7, 'email7@example.com', '2008-10-16 18:30:08')[0m
|
86
|
+
[4;35;1mUser Create (0.000142)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:30:08', NULL, 8, 'email8@example.com', '2008-10-16 18:30:08')[0m
|
87
|
+
[4;36;1mUser Load (0.000495)[0m [0;1mSELECT * FROM "users" [0m
|
88
|
+
|
89
|
+
|
90
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:30:08) [GET]
|
91
|
+
Session ID:
|
92
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
93
|
+
[4;35;1mUser Load (0.000898)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
94
|
+
Rendering template within layouts/users
|
95
|
+
Rendering users/index
|
96
|
+
Completed in 0.00389 (256 reqs/sec) | Rendering: 0.00241 (61%) | DB: 0.00194 (49%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
97
|
+
[4;36;1mUser Create (0.000578)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:32:00', NULL, 1, 'email1@example.com', '2008-10-16 18:32:00')[0m
|
98
|
+
[4;35;1mUser Create (0.000136)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:32:00', NULL, 2, 'email2@example.com', '2008-10-16 18:32:00')[0m
|
99
|
+
[4;36;1mUser Load (0.000513)[0m [0;1mSELECT * FROM "users" [0m
|
100
|
+
|
101
|
+
|
102
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:32:00) [GET]
|
103
|
+
Session ID:
|
104
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
105
|
+
[4;35;1mUser Load (0.000982)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
106
|
+
Rendering template within layouts/users
|
107
|
+
Rendering users/index
|
108
|
+
Completed in 0.04582 (21 reqs/sec) | Rendering: 0.04137 (90%) | DB: 0.00221 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
109
|
+
[4;36;1mUser Create (0.000387)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:32:00', NULL, 3, 'email3@example.com', '2008-10-16 18:32:00')[0m
|
110
|
+
[4;35;1mUser Create (0.000134)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:32:00', NULL, 4, 'email4@example.com', '2008-10-16 18:32:00')[0m
|
111
|
+
[4;36;1mUser Load (0.000646)[0m [0;1mSELECT * FROM "users" [0m
|
112
|
+
|
113
|
+
|
114
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:32:00) [GET]
|
115
|
+
Session ID:
|
116
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
117
|
+
[4;35;1mUser Load (0.000907)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
118
|
+
Rendering template within layouts/users
|
119
|
+
Rendering users/index
|
120
|
+
Completed in 0.00397 (251 reqs/sec) | Rendering: 0.00252 (63%) | DB: 0.00207 (52%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
121
|
+
[4;36;1mUser Create (0.000334)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:32:00', NULL, 5, 'email5@example.com', '2008-10-16 18:32:00')[0m
|
122
|
+
[4;35;1mUser Create (0.000108)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:32:00', NULL, 6, 'email6@example.com', '2008-10-16 18:32:00')[0m
|
123
|
+
[4;36;1mUser Load (0.000477)[0m [0;1mSELECT * FROM "users" [0m
|
124
|
+
|
125
|
+
|
126
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:32:00) [GET]
|
127
|
+
Session ID:
|
128
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
129
|
+
[4;35;1mUser Load (0.000863)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
130
|
+
Rendering template within layouts/users
|
131
|
+
Rendering users/index
|
132
|
+
Completed in 0.00369 (271 reqs/sec) | Rendering: 0.00232 (62%) | DB: 0.00178 (48%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
133
|
+
[4;36;1mUser Create (0.000352)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:32:00', NULL, 7, 'email7@example.com', '2008-10-16 18:32:00')[0m
|
134
|
+
[4;35;1mUser Create (0.000145)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:32:00', NULL, 8, 'email8@example.com', '2008-10-16 18:32:00')[0m
|
135
|
+
[4;36;1mUser Load (0.000500)[0m [0;1mSELECT * FROM "users" [0m
|
136
|
+
|
137
|
+
|
138
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:32:00) [GET]
|
139
|
+
Session ID:
|
140
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
141
|
+
[4;35;1mUser Load (0.001056)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
142
|
+
Rendering template within layouts/users
|
143
|
+
Rendering users/index
|
144
|
+
Completed in 0.00419 (238 reqs/sec) | Rendering: 0.00251 (59%) | DB: 0.00205 (48%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
145
|
+
[4;36;1mUser Create (0.000532)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:41:44', NULL, 1, 'email1@example.com', '2008-10-16 18:41:44')[0m
|
146
|
+
[4;35;1mUser Create (0.000132)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:41:44', NULL, 2, 'email2@example.com', '2008-10-16 18:41:44')[0m
|
147
|
+
[4;36;1mUser Load (0.000488)[0m [0;1mSELECT * FROM "users" [0m
|
148
|
+
|
149
|
+
|
150
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:41:44) [GET]
|
151
|
+
Session ID:
|
152
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
153
|
+
[4;35;1mUser Load (0.001077)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
154
|
+
Rendering template within layouts/users
|
155
|
+
Rendering users/index
|
156
|
+
Completed in 0.04593 (21 reqs/sec) | Rendering: 0.04139 (90%) | DB: 0.00223 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
157
|
+
[4;36;1mUser Create (0.000544)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:41:44', NULL, 3, 'email3@example.com', '2008-10-16 18:41:44')[0m
|
158
|
+
[4;35;1mUser Create (0.000256)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:41:44', NULL, 4, 'email4@example.com', '2008-10-16 18:41:44')[0m
|
159
|
+
[4;36;1mUser Load (0.000693)[0m [0;1mSELECT * FROM "users" [0m
|
160
|
+
|
161
|
+
|
162
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:41:44) [GET]
|
163
|
+
Session ID:
|
164
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
165
|
+
[4;35;1mUser Load (0.001347)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
166
|
+
Rendering template within layouts/users
|
167
|
+
Rendering users/index
|
168
|
+
Completed in 0.00545 (183 reqs/sec) | Rendering: 0.00334 (61%) | DB: 0.00284 (52%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
169
|
+
[4;36;1mUser Create (0.000420)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:41:44', NULL, 5, 'email5@example.com', '2008-10-16 18:41:44')[0m
|
170
|
+
[4;35;1mUser Create (0.000158)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:41:44', NULL, 6, 'email6@example.com', '2008-10-16 18:41:44')[0m
|
171
|
+
[4;36;1mUser Load (0.000550)[0m [0;1mSELECT * FROM "users" [0m
|
172
|
+
|
173
|
+
|
174
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:41:44) [GET]
|
175
|
+
Session ID:
|
176
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
177
|
+
[4;35;1mUser Load (0.001008)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
178
|
+
Rendering template within layouts/users
|
179
|
+
Rendering users/index
|
180
|
+
Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00271 (63%) | DB: 0.00214 (49%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
181
|
+
[4;36;1mUser Create (0.000509)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:41:44', NULL, 7, 'email7@example.com', '2008-10-16 18:41:44')[0m
|
182
|
+
[4;35;1mUser Create (0.000157)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:41:44', NULL, 8, 'email8@example.com', '2008-10-16 18:41:44')[0m
|
183
|
+
[4;36;1mUser Load (0.000852)[0m [0;1mSELECT * FROM "users" [0m
|
184
|
+
|
185
|
+
|
186
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:41:44) [GET]
|
187
|
+
Session ID:
|
188
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
189
|
+
[4;35;1mUser Load (0.001212)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
190
|
+
Rendering template within layouts/users
|
191
|
+
Rendering users/index
|
192
|
+
Completed in 0.00525 (190 reqs/sec) | Rendering: 0.00317 (60%) | DB: 0.00273 (51%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
193
|
+
[4;36;1mUser Create (0.000788)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:42:09', NULL, 1, 'email1@example.com', '2008-10-16 18:42:09')[0m
|
194
|
+
[4;35;1mUser Create (0.000131)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:42:09', NULL, 2, 'email2@example.com', '2008-10-16 18:42:09')[0m
|
195
|
+
[4;36;1mUser Load (0.000492)[0m [0;1mSELECT * FROM "users" [0m
|
196
|
+
|
197
|
+
|
198
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:42:09) [GET]
|
199
|
+
Session ID:
|
200
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
201
|
+
[4;35;1mUser Load (0.000993)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
202
|
+
Rendering template within layouts/users
|
203
|
+
Rendering users/index
|
204
|
+
Completed in 0.04505 (22 reqs/sec) | Rendering: 0.04057 (90%) | DB: 0.00240 (5%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
205
|
+
[4;36;1mUser Create (0.000501)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:42:09', NULL, 3, 'email3@example.com', '2008-10-16 18:42:09')[0m
|
206
|
+
[4;35;1mUser Create (0.000156)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:42:09', NULL, 4, 'email4@example.com', '2008-10-16 18:42:09')[0m
|
207
|
+
[4;36;1mUser Load (0.000701)[0m [0;1mSELECT * FROM "users" [0m
|
208
|
+
|
209
|
+
|
210
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:42:09) [GET]
|
211
|
+
Session ID:
|
212
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
213
|
+
[4;35;1mUser Load (0.001268)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
214
|
+
Rendering template within layouts/users
|
215
|
+
Rendering users/index
|
216
|
+
Completed in 0.00510 (196 reqs/sec) | Rendering: 0.00312 (61%) | DB: 0.00263 (51%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
217
|
+
[4;36;1mUser Create (0.000450)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:42:09', NULL, 5, 'email5@example.com', '2008-10-16 18:42:09')[0m
|
218
|
+
[4;35;1mUser Create (0.000179)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:42:09', NULL, 6, 'email6@example.com', '2008-10-16 18:42:09')[0m
|
219
|
+
[4;36;1mUser Load (0.000679)[0m [0;1mSELECT * FROM "users" [0m
|
220
|
+
|
221
|
+
|
222
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:42:09) [GET]
|
223
|
+
Session ID:
|
224
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
225
|
+
[4;35;1mUser Load (0.001200)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
226
|
+
Rendering template within layouts/users
|
227
|
+
Rendering users/index
|
228
|
+
Completed in 0.00534 (187 reqs/sec) | Rendering: 0.00333 (62%) | DB: 0.00251 (46%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
229
|
+
[4;36;1mUser Create (0.000650)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:42:09', NULL, 7, 'email7@example.com', '2008-10-16 18:42:09')[0m
|
230
|
+
[4;35;1mUser Create (0.000122)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:42:09', NULL, 8, 'email8@example.com', '2008-10-16 18:42:09')[0m
|
231
|
+
[4;36;1mUser Load (0.000490)[0m [0;1mSELECT * FROM "users" [0m
|
232
|
+
|
233
|
+
|
234
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:42:09) [GET]
|
235
|
+
Session ID:
|
236
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
237
|
+
[4;35;1mUser Load (0.000853)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
238
|
+
Rendering template within layouts/users
|
239
|
+
Rendering users/index
|
240
|
+
Completed in 0.00423 (236 reqs/sec) | Rendering: 0.00274 (64%) | DB: 0.00212 (50%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
241
|
+
[4;36;1mUser Create (0.000540)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:57:17', NULL, 1, 'email1@example.com', '2008-10-16 18:57:17')[0m
|
242
|
+
[4;35;1mUser Create (0.000124)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:57:17', NULL, 2, 'email2@example.com', '2008-10-16 18:57:17')[0m
|
243
|
+
[4;36;1mUser Load (0.000497)[0m [0;1mSELECT * FROM "users" [0m
|
244
|
+
|
245
|
+
|
246
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:17) [GET]
|
247
|
+
Session ID:
|
248
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
249
|
+
[4;35;1mUser Load (0.000978)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
250
|
+
Rendering template within layouts/users
|
251
|
+
Rendering users/index
|
252
|
+
Completed in 0.04602 (21 reqs/sec) | Rendering: 0.04163 (90%) | DB: 0.00214 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
253
|
+
[4;36;1mUser Create (0.000505)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:57:17', NULL, 3, 'email3@example.com', '2008-10-16 18:57:17')[0m
|
254
|
+
[4;35;1mUser Create (0.000175)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:57:17', NULL, 4, 'email4@example.com', '2008-10-16 18:57:17')[0m
|
255
|
+
[4;36;1mUser Load (0.000690)[0m [0;1mSELECT * FROM "users" [0m
|
256
|
+
|
257
|
+
|
258
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:17) [GET]
|
259
|
+
Session ID:
|
260
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
261
|
+
[4;35;1mUser Load (0.001341)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
262
|
+
Rendering template within layouts/users
|
263
|
+
Rendering users/index
|
264
|
+
Completed in 0.00525 (190 reqs/sec) | Rendering: 0.00317 (60%) | DB: 0.00271 (51%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
265
|
+
[4;36;1mUser Create (0.000485)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:57:17', NULL, 5, 'email5@example.com', '2008-10-16 18:57:17')[0m
|
266
|
+
[4;35;1mUser Create (0.000118)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:57:17', NULL, 6, 'email6@example.com', '2008-10-16 18:57:17')[0m
|
267
|
+
[4;36;1mUser Load (0.000485)[0m [0;1mSELECT * FROM "users" [0m
|
268
|
+
|
269
|
+
|
270
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:17) [GET]
|
271
|
+
Session ID:
|
272
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
273
|
+
[4;35;1mUser Load (0.000854)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
274
|
+
Rendering template within layouts/users
|
275
|
+
Rendering users/index
|
276
|
+
Completed in 0.00380 (262 reqs/sec) | Rendering: 0.00243 (63%) | DB: 0.00194 (51%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
277
|
+
[4;36;1mUser Create (0.000553)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:57:17', NULL, 7, 'email7@example.com', '2008-10-16 18:57:17')[0m
|
278
|
+
[4;35;1mUser Create (0.000162)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:57:17', NULL, 8, 'email8@example.com', '2008-10-16 18:57:17')[0m
|
279
|
+
[4;36;1mUser Load (0.000709)[0m [0;1mSELECT * FROM "users" [0m
|
280
|
+
|
281
|
+
|
282
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:17) [GET]
|
283
|
+
Session ID:
|
284
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
285
|
+
[4;35;1mUser Load (0.001185)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
286
|
+
Rendering template within layouts/users
|
287
|
+
Rendering users/index
|
288
|
+
Completed in 0.00467 (214 reqs/sec) | Rendering: 0.00275 (58%) | DB: 0.00261 (55%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
289
|
+
[4;36;1mUser Create (0.000502)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 18:57:41', NULL, 1, 'email1@example.com', '2008-10-16 18:57:41')[0m
|
290
|
+
[4;35;1mUser Create (0.000117)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 18:57:41', NULL, 2, 'email2@example.com', '2008-10-16 18:57:41')[0m
|
291
|
+
[4;36;1mUser Load (0.000485)[0m [0;1mSELECT * FROM "users" [0m
|
292
|
+
|
293
|
+
|
294
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:41) [GET]
|
295
|
+
Session ID:
|
296
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
297
|
+
[4;35;1mUser Load (0.000534)[0m [0mSELECT * FROM "users" [0m
|
298
|
+
Rendering template within layouts/users
|
299
|
+
Rendering users/index
|
300
|
+
Completed in 0.04662 (21 reqs/sec) | Rendering: 0.04270 (91%) | DB: 0.00164 (3%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
301
|
+
[4;36;1mUser Create (0.000505)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 18:57:41', NULL, 3, 'email3@example.com', '2008-10-16 18:57:41')[0m
|
302
|
+
[4;35;1mUser Create (0.000157)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 18:57:41', NULL, 4, 'email4@example.com', '2008-10-16 18:57:41')[0m
|
303
|
+
[4;36;1mUser Load (0.000730)[0m [0;1mSELECT * FROM "users" [0m
|
304
|
+
|
305
|
+
|
306
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:42) [GET]
|
307
|
+
Session ID:
|
308
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
309
|
+
[4;35;1mUser Load (0.000899)[0m [0mSELECT * FROM "users" [0m
|
310
|
+
Rendering template within layouts/users
|
311
|
+
Rendering users/index
|
312
|
+
Completed in 0.00493 (202 reqs/sec) | Rendering: 0.00335 (67%) | DB: 0.00229 (46%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
313
|
+
[4;36;1mUser Create (0.000498)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 18:57:42', NULL, 5, 'email5@example.com', '2008-10-16 18:57:42')[0m
|
314
|
+
[4;35;1mUser Create (0.000165)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 18:57:42', NULL, 6, 'email6@example.com', '2008-10-16 18:57:42')[0m
|
315
|
+
[4;36;1mUser Load (0.000732)[0m [0;1mSELECT * FROM "users" [0m
|
316
|
+
|
317
|
+
|
318
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:42) [GET]
|
319
|
+
Session ID:
|
320
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
321
|
+
[4;35;1mUser Load (0.000793)[0m [0mSELECT * FROM "users" [0m
|
322
|
+
Rendering template within layouts/users
|
323
|
+
Rendering users/index
|
324
|
+
Completed in 0.00504 (198 reqs/sec) | Rendering: 0.00355 (70%) | DB: 0.00219 (43%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
325
|
+
[4;36;1mUser Create (0.000475)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 18:57:42', NULL, 7, 'email7@example.com', '2008-10-16 18:57:42')[0m
|
326
|
+
[4;35;1mUser Create (0.000155)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 18:57:42', NULL, 8, 'email8@example.com', '2008-10-16 18:57:42')[0m
|
327
|
+
[4;36;1mUser Load (0.000673)[0m [0;1mSELECT * FROM "users" [0m
|
328
|
+
|
329
|
+
|
330
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 14:57:42) [GET]
|
331
|
+
Session ID:
|
332
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
333
|
+
[4;35;1mUser Load (0.000696)[0m [0mSELECT * FROM "users" [0m
|
334
|
+
Rendering template within layouts/users
|
335
|
+
Rendering users/index
|
336
|
+
Completed in 0.00477 (209 reqs/sec) | Rendering: 0.00328 (68%) | DB: 0.00200 (41%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
337
|
+
[4;36;1mUser Create (0.000537)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:11:54', NULL, 1, 'email1@example.com', '2008-10-16 19:11:54')[0m
|
338
|
+
[4;35;1mUser Create (0.000117)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:11:54', NULL, 2, 'email2@example.com', '2008-10-16 19:11:54')[0m
|
339
|
+
[4;36;1mUser Load (0.000494)[0m [0;1mSELECT * FROM "users" [0m
|
340
|
+
|
341
|
+
|
342
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:11:54) [GET]
|
343
|
+
Session ID:
|
344
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
345
|
+
[4;35;1mUser Load (0.000506)[0m [0mSELECT * FROM "users" [0m
|
346
|
+
Rendering template within layouts/users
|
347
|
+
Rendering users/index
|
348
|
+
[4;36;1mUser Create (0.000604)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:11:54', NULL, 3, 'email3@example.com', '2008-10-16 19:11:54')[0m
|
349
|
+
[4;35;1mUser Create (0.000204)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:11:54', NULL, 4, 'email4@example.com', '2008-10-16 19:11:54')[0m
|
350
|
+
[4;36;1mUser Load (0.000716)[0m [0;1mSELECT * FROM "users" [0m
|
351
|
+
|
352
|
+
|
353
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:11:54) [GET]
|
354
|
+
Session ID:
|
355
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
356
|
+
[4;35;1mUser Load (0.001146)[0m [0mSELECT * FROM "users" [0m
|
357
|
+
Rendering template within layouts/users
|
358
|
+
Rendering users/index
|
359
|
+
[4;36;1mUser Create (0.000588)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:11:54', NULL, 5, 'email5@example.com', '2008-10-16 19:11:54')[0m
|
360
|
+
[4;35;1mUser Create (0.000198)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:11:54', NULL, 6, 'email6@example.com', '2008-10-16 19:11:54')[0m
|
361
|
+
[4;36;1mUser Load (0.000725)[0m [0;1mSELECT * FROM "users" [0m
|
362
|
+
|
363
|
+
|
364
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:11:54) [GET]
|
365
|
+
Session ID:
|
366
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
367
|
+
[4;35;1mUser Load (0.000663)[0m [0mSELECT * FROM "users" [0m
|
368
|
+
Rendering template within layouts/users
|
369
|
+
Rendering users/index
|
370
|
+
[4;36;1mUser Create (0.000511)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:11:55', NULL, 7, 'email7@example.com', '2008-10-16 19:11:55')[0m
|
371
|
+
[4;35;1mUser Create (0.000156)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:11:55', NULL, 8, 'email8@example.com', '2008-10-16 19:11:55')[0m
|
372
|
+
[4;36;1mUser Load (0.000681)[0m [0;1mSELECT * FROM "users" [0m
|
373
|
+
|
374
|
+
|
375
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:11:55) [GET]
|
376
|
+
Session ID:
|
377
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
378
|
+
[4;35;1mUser Load (0.000739)[0m [0mSELECT * FROM "users" [0m
|
379
|
+
Rendering template within layouts/users
|
380
|
+
Rendering users/index
|
381
|
+
[4;36;1mUser Create (0.000595)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:13:10', NULL, 1, 'email1@example.com', '2008-10-16 19:13:10')[0m
|
382
|
+
[4;35;1mUser Create (0.000123)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:13:10', NULL, 2, 'email2@example.com', '2008-10-16 19:13:10')[0m
|
383
|
+
[4;36;1mUser Load (0.000495)[0m [0;1mSELECT * FROM "users" [0m
|
384
|
+
|
385
|
+
|
386
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:13:10) [GET]
|
387
|
+
Session ID:
|
388
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
389
|
+
[4;35;1mUser Load (0.000507)[0m [0mSELECT * FROM "users" [0m
|
390
|
+
Rendering template within layouts/users
|
391
|
+
Rendering users/index
|
392
|
+
Completed in 0.04518 (22 reqs/sec) | Rendering: 0.04133 (91%) | DB: 0.00172 (3%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
393
|
+
[4;36;1mUser Create (0.000491)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:13:10', NULL, 3, 'email3@example.com', '2008-10-16 19:13:10')[0m
|
394
|
+
[4;35;1mUser Create (0.000156)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:13:10', NULL, 4, 'email4@example.com', '2008-10-16 19:13:10')[0m
|
395
|
+
[4;36;1mUser Load (0.000683)[0m [0;1mSELECT * FROM "users" [0m
|
396
|
+
|
397
|
+
|
398
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:13:10) [GET]
|
399
|
+
Session ID:
|
400
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
401
|
+
[4;35;1mUser Load (0.000747)[0m [0mSELECT * FROM "users" [0m
|
402
|
+
Rendering template within layouts/users
|
403
|
+
Rendering users/index
|
404
|
+
Completed in 0.00480 (208 reqs/sec) | Rendering: 0.00339 (70%) | DB: 0.00208 (43%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
405
|
+
[4;36;1mUser Create (0.000354)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:13:10', NULL, 5, 'email5@example.com', '2008-10-16 19:13:10')[0m
|
406
|
+
[4;35;1mUser Create (0.000109)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:13:10', NULL, 6, 'email6@example.com', '2008-10-16 19:13:10')[0m
|
407
|
+
[4;36;1mUser Load (0.000487)[0m [0;1mSELECT * FROM "users" [0m
|
408
|
+
|
409
|
+
|
410
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:13:10) [GET]
|
411
|
+
Session ID:
|
412
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
413
|
+
[4;35;1mUser Load (0.000490)[0m [0mSELECT * FROM "users" [0m
|
414
|
+
Rendering template within layouts/users
|
415
|
+
Rendering users/index
|
416
|
+
Completed in 0.00333 (300 reqs/sec) | Rendering: 0.00237 (71%) | DB: 0.00144 (43%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
417
|
+
[4;36;1mUser Create (0.000470)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:13:10', NULL, 7, 'email7@example.com', '2008-10-16 19:13:10')[0m
|
418
|
+
[4;35;1mUser Create (0.000156)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:13:10', NULL, 8, 'email8@example.com', '2008-10-16 19:13:10')[0m
|
419
|
+
[4;36;1mUser Load (0.000502)[0m [0;1mSELECT * FROM "users" [0m
|
420
|
+
|
421
|
+
|
422
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:13:10) [GET]
|
423
|
+
Session ID:
|
424
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
425
|
+
[4;35;1mUser Load (0.000484)[0m [0mSELECT * FROM "users" [0m
|
426
|
+
Rendering template within layouts/users
|
427
|
+
Rendering users/index
|
428
|
+
Completed in 0.00402 (248 reqs/sec) | Rendering: 0.00304 (75%) | DB: 0.00161 (40%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
429
|
+
[4;36;1mUser Create (0.000779)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:14:30', NULL, 1, 'email1@example.com', '2008-10-16 19:14:30')[0m
|
430
|
+
[4;35;1mUser Create (0.000122)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:14:30', NULL, 2, 'email2@example.com', '2008-10-16 19:14:30')[0m
|
431
|
+
[4;36;1mUser Load (0.000512)[0m [0;1mSELECT * FROM "users" [0m
|
432
|
+
|
433
|
+
|
434
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:14:30) [GET]
|
435
|
+
Session ID:
|
436
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
437
|
+
[4;35;1mUser Load (0.000651)[0m [0mSELECT * FROM "users" [0m
|
438
|
+
Rendering template within layouts/users
|
439
|
+
Rendering users/index
|
440
|
+
Completed in 0.04577 (21 reqs/sec) | Rendering: 0.04157 (90%) | DB: 0.00206 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
441
|
+
[4;36;1mUser Create (0.000547)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:14:30', NULL, 3, 'email3@example.com', '2008-10-16 19:14:30')[0m
|
442
|
+
[4;35;1mUser Create (0.000165)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:14:30', NULL, 4, 'email4@example.com', '2008-10-16 19:14:30')[0m
|
443
|
+
[4;36;1mUser Load (0.000688)[0m [0;1mSELECT * FROM "users" [0m
|
444
|
+
|
445
|
+
|
446
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:14:30) [GET]
|
447
|
+
Session ID:
|
448
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
449
|
+
[4;35;1mUser Load (0.000670)[0m [0mSELECT * FROM "users" [0m
|
450
|
+
Rendering template within layouts/users
|
451
|
+
Rendering users/index
|
452
|
+
Completed in 0.00470 (212 reqs/sec) | Rendering: 0.00330 (70%) | DB: 0.00207 (44%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
453
|
+
[4;36;1mUser Create (0.000354)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:14:30', NULL, 5, 'email5@example.com', '2008-10-16 19:14:30')[0m
|
454
|
+
[4;35;1mUser Create (0.000113)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:14:30', NULL, 6, 'email6@example.com', '2008-10-16 19:14:30')[0m
|
455
|
+
[4;36;1mUser Load (0.000513)[0m [0;1mSELECT * FROM "users" [0m
|
456
|
+
|
457
|
+
|
458
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:14:30) [GET]
|
459
|
+
Session ID:
|
460
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
461
|
+
[4;35;1mUser Load (0.000464)[0m [0mSELECT * FROM "users" [0m
|
462
|
+
Rendering template within layouts/users
|
463
|
+
Rendering users/index
|
464
|
+
Completed in 0.00318 (314 reqs/sec) | Rendering: 0.00226 (71%) | DB: 0.00144 (45%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
465
|
+
[4;36;1mUser Create (0.000408)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:14:30', NULL, 7, 'email7@example.com', '2008-10-16 19:14:30')[0m
|
466
|
+
[4;35;1mUser Create (0.000150)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:14:30', NULL, 8, 'email8@example.com', '2008-10-16 19:14:30')[0m
|
467
|
+
[4;36;1mUser Load (0.000488)[0m [0;1mSELECT * FROM "users" [0m
|
468
|
+
|
469
|
+
|
470
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:14:30) [GET]
|
471
|
+
Session ID:
|
472
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
473
|
+
[4;35;1mUser Load (0.000472)[0m [0mSELECT * FROM "users" [0m
|
474
|
+
Rendering template within layouts/users
|
475
|
+
Rendering users/index
|
476
|
+
Completed in 0.00348 (286 reqs/sec) | Rendering: 0.00253 (72%) | DB: 0.00152 (43%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
477
|
+
[4;36;1mUser Create (0.000506)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:18:12', NULL, 1, 'email1@example.com', '2008-10-16 19:18:12')[0m
|
478
|
+
[4;35;1mUser Create (0.000118)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:18:12', NULL, 2, 'email2@example.com', '2008-10-16 19:18:12')[0m
|
479
|
+
[4;36;1mUser Load (0.000489)[0m [0;1mSELECT * FROM "users" [0m
|
480
|
+
|
481
|
+
|
482
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:18:12) [GET]
|
483
|
+
Session ID:
|
484
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
485
|
+
[4;35;1mUser Load (0.000610)[0m [0mSELECT * FROM "users" [0m
|
486
|
+
Rendering template within layouts/users
|
487
|
+
Rendering users/index
|
488
|
+
Completed in 0.04553 (21 reqs/sec) | Rendering: 0.04149 (91%) | DB: 0.00172 (3%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
489
|
+
[4;36;1mUser Create (0.000573)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:18:12', NULL, 3, 'email3@example.com', '2008-10-16 19:18:12')[0m
|
490
|
+
[4;35;1mUser Create (0.000154)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:18:12', NULL, 4, 'email4@example.com', '2008-10-16 19:18:12')[0m
|
491
|
+
[4;36;1mUser Load (0.000683)[0m [0;1mSELECT * FROM "users" [0m
|
492
|
+
|
493
|
+
|
494
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:18:12) [GET]
|
495
|
+
Session ID:
|
496
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
497
|
+
[4;35;1mUser Load (0.000803)[0m [0mSELECT * FROM "users" [0m
|
498
|
+
Rendering template within layouts/users
|
499
|
+
Rendering users/index
|
500
|
+
Completed in 0.00501 (199 reqs/sec) | Rendering: 0.00341 (68%) | DB: 0.00221 (44%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
501
|
+
[4;36;1mUser Create (0.000343)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:18:12', NULL, 5, 'email5@example.com', '2008-10-16 19:18:12')[0m
|
502
|
+
[4;35;1mUser Create (0.000118)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:18:12', NULL, 6, 'email6@example.com', '2008-10-16 19:18:12')[0m
|
503
|
+
[4;36;1mUser Load (0.000484)[0m [0;1mSELECT * FROM "users" [0m
|
504
|
+
|
505
|
+
|
506
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:18:12) [GET]
|
507
|
+
Session ID:
|
508
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
509
|
+
[4;35;1mUser Load (0.000459)[0m [0mSELECT * FROM "users" [0m
|
510
|
+
Rendering template within layouts/users
|
511
|
+
Rendering users/index
|
512
|
+
Completed in 0.00323 (309 reqs/sec) | Rendering: 0.00231 (71%) | DB: 0.00140 (43%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
513
|
+
[4;36;1mUser Create (0.000487)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:18:12', NULL, 7, 'email7@example.com', '2008-10-16 19:18:12')[0m
|
514
|
+
[4;35;1mUser Create (0.000141)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:18:12', NULL, 8, 'email8@example.com', '2008-10-16 19:18:12')[0m
|
515
|
+
[4;36;1mUser Load (0.000546)[0m [0;1mSELECT * FROM "users" [0m
|
516
|
+
|
517
|
+
|
518
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:18:12) [GET]
|
519
|
+
Session ID:
|
520
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
521
|
+
[4;35;1mUser Load (0.000469)[0m [0mSELECT * FROM "users" [0m
|
522
|
+
Rendering template within layouts/users
|
523
|
+
Rendering users/index
|
524
|
+
Completed in 0.00342 (292 reqs/sec) | Rendering: 0.00244 (71%) | DB: 0.00164 (47%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
525
|
+
[4;36;1mUser Create (0.000560)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:20:40', NULL, 1, 'email1@example.com', '2008-10-16 19:20:40')[0m
|
526
|
+
[4;35;1mUser Create (0.000123)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:20:40', NULL, 2, 'email2@example.com', '2008-10-16 19:20:40')[0m
|
527
|
+
[4;36;1mUser Load (0.000555)[0m [0;1mSELECT * FROM "users" [0m
|
528
|
+
|
529
|
+
|
530
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:20:40) [GET]
|
531
|
+
Session ID:
|
532
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
533
|
+
[4;35;1mUser Load (0.000520)[0m [0mSELECT * FROM "users" [0m
|
534
|
+
Rendering template within layouts/users
|
535
|
+
Rendering users/index
|
536
|
+
Completed in 0.04955 (20 reqs/sec) | Rendering: 0.04561 (92%) | DB: 0.00176 (3%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
537
|
+
[4;36;1mUser Create (0.000505)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:20:40', NULL, 3, 'email3@example.com', '2008-10-16 19:20:40')[0m
|
538
|
+
[4;35;1mUser Create (0.000157)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:20:40', NULL, 4, 'email4@example.com', '2008-10-16 19:20:40')[0m
|
539
|
+
[4;36;1mUser Load (0.000844)[0m [0;1mSELECT * FROM "users" [0m
|
540
|
+
|
541
|
+
|
542
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:20:40) [GET]
|
543
|
+
Session ID:
|
544
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
545
|
+
[4;35;1mUser Load (0.000915)[0m [0mSELECT * FROM "users" [0m
|
546
|
+
Rendering template within layouts/users
|
547
|
+
Rendering users/index
|
548
|
+
Completed in 0.00507 (197 reqs/sec) | Rendering: 0.00341 (67%) | DB: 0.00242 (47%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
549
|
+
[4;36;1mUser Create (0.000455)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:20:41', NULL, 5, 'email5@example.com', '2008-10-16 19:20:41')[0m
|
550
|
+
[4;35;1mUser Create (0.000141)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:20:41', NULL, 6, 'email6@example.com', '2008-10-16 19:20:41')[0m
|
551
|
+
[4;36;1mUser Load (0.000812)[0m [0;1mSELECT * FROM "users" [0m
|
552
|
+
|
553
|
+
|
554
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:20:41) [GET]
|
555
|
+
Session ID:
|
556
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
557
|
+
[4;35;1mUser Load (0.000543)[0m [0mSELECT * FROM "users" [0m
|
558
|
+
Rendering template within layouts/users
|
559
|
+
Rendering users/index
|
560
|
+
Completed in 0.00392 (255 reqs/sec) | Rendering: 0.00283 (72%) | DB: 0.00195 (49%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
561
|
+
[4;36;1mUser Create (0.000349)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:20:41', NULL, 7, 'email7@example.com', '2008-10-16 19:20:41')[0m
|
562
|
+
[4;35;1mUser Create (0.000108)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:20:41', NULL, 8, 'email8@example.com', '2008-10-16 19:20:41')[0m
|
563
|
+
[4;36;1mUser Load (0.000490)[0m [0;1mSELECT * FROM "users" [0m
|
564
|
+
|
565
|
+
|
566
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:20:41) [GET]
|
567
|
+
Session ID:
|
568
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
569
|
+
[4;35;1mUser Load (0.000690)[0m [0mSELECT * FROM "users" [0m
|
570
|
+
Rendering template within layouts/users
|
571
|
+
Rendering users/index
|
572
|
+
Completed in 0.00424 (235 reqs/sec) | Rendering: 0.00290 (68%) | DB: 0.00164 (38%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
573
|
+
[4;36;1mUser Create (0.000565)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:21:26', NULL, 1, 'email1@example.com', '2008-10-16 19:21:26')[0m
|
574
|
+
[4;35;1mUser Create (0.000136)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:21:26', NULL, 2, 'email2@example.com', '2008-10-16 19:21:26')[0m
|
575
|
+
[4;36;1mUser Load (0.000511)[0m [0;1mSELECT * FROM "users" [0m
|
576
|
+
|
577
|
+
|
578
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:26) [GET]
|
579
|
+
Session ID:
|
580
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
581
|
+
[4;35;1mUser Load (0.000952)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
582
|
+
Rendering template within layouts/users
|
583
|
+
Rendering users/index
|
584
|
+
Completed in 0.04831 (20 reqs/sec) | Rendering: 0.04393 (90%) | DB: 0.00216 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
585
|
+
[4;36;1mUser Create (0.000582)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:21:26', NULL, 3, 'email3@example.com', '2008-10-16 19:21:26')[0m
|
586
|
+
[4;35;1mUser Create (0.000202)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:21:26', NULL, 4, 'email4@example.com', '2008-10-16 19:21:26')[0m
|
587
|
+
[4;36;1mUser Load (0.000726)[0m [0;1mSELECT * FROM "users" [0m
|
588
|
+
|
589
|
+
|
590
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:26) [GET]
|
591
|
+
Session ID:
|
592
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
593
|
+
[4;35;1mUser Load (0.002443)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
594
|
+
Rendering template within layouts/users
|
595
|
+
Rendering users/index
|
596
|
+
Completed in 0.00569 (175 reqs/sec) | Rendering: 0.00247 (43%) | DB: 0.00395 (69%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
597
|
+
[4;36;1mUser Create (0.000355)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:21:26', NULL, 5, 'email5@example.com', '2008-10-16 19:21:26')[0m
|
598
|
+
[4;35;1mUser Create (0.000112)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:21:26', NULL, 6, 'email6@example.com', '2008-10-16 19:21:26')[0m
|
599
|
+
[4;36;1mUser Load (0.000476)[0m [0;1mSELECT * FROM "users" [0m
|
600
|
+
|
601
|
+
|
602
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:26) [GET]
|
603
|
+
Session ID:
|
604
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
605
|
+
[4;35;1mUser Load (0.000840)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
606
|
+
Rendering template within layouts/users
|
607
|
+
Rendering users/index
|
608
|
+
Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00231 (62%) | DB: 0.00178 (48%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
609
|
+
[4;36;1mUser Create (0.000338)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:21:26', NULL, 7, 'email7@example.com', '2008-10-16 19:21:26')[0m
|
610
|
+
[4;35;1mUser Create (0.000108)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:21:26', NULL, 8, 'email8@example.com', '2008-10-16 19:21:26')[0m
|
611
|
+
[4;36;1mUser Load (0.000468)[0m [0;1mSELECT * FROM "users" [0m
|
612
|
+
|
613
|
+
|
614
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:26) [GET]
|
615
|
+
Session ID:
|
616
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
617
|
+
[4;35;1mUser Load (0.000869)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
618
|
+
Rendering template within layouts/users
|
619
|
+
Rendering users/index
|
620
|
+
Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00249 (63%) | DB: 0.00178 (45%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
621
|
+
[4;36;1mUser Create (0.000582)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name1', '2008-10-16 19:21:37', NULL, 1, 'email1@example.com', '2008-10-16 19:21:37')[0m
|
622
|
+
[4;35;1mUser Create (0.000119)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name2', '2008-10-16 19:21:37', NULL, 2, 'email2@example.com', '2008-10-16 19:21:37')[0m
|
623
|
+
[4;36;1mUser Load (0.000498)[0m [0;1mSELECT * FROM "users" [0m
|
624
|
+
|
625
|
+
|
626
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
627
|
+
Session ID:
|
628
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
629
|
+
[4;35;1mUser Load (0.000959)[0m [0mSELECT * FROM "users" ORDER BY age asc[0m
|
630
|
+
Rendering template within layouts/users
|
631
|
+
Rendering users/index
|
632
|
+
Completed in 0.04584 (21 reqs/sec) | Rendering: 0.04136 (90%) | DB: 0.00216 (4%) | 200 OK [http://test.host/users?order=ascending&sort=age]
|
633
|
+
[4;36;1mUser Create (0.000517)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name3', '2008-10-16 19:21:37', NULL, 3, 'email3@example.com', '2008-10-16 19:21:37')[0m
|
634
|
+
[4;35;1mUser Create (0.000165)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name4', '2008-10-16 19:21:37', NULL, 4, 'email4@example.com', '2008-10-16 19:21:37')[0m
|
635
|
+
[4;36;1mUser Load (0.000699)[0m [0;1mSELECT * FROM "users" [0m
|
636
|
+
|
637
|
+
|
638
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
639
|
+
Session ID:
|
640
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"age"}
|
641
|
+
[4;35;1mUser Load (0.001245)[0m [0mSELECT * FROM "users" ORDER BY age desc[0m
|
642
|
+
Rendering template within layouts/users
|
643
|
+
Rendering users/index
|
644
|
+
Completed in 0.00540 (185 reqs/sec) | Rendering: 0.00335 (61%) | DB: 0.00263 (48%) | 200 OK [http://test.host/users?order=descending&sort=age]
|
645
|
+
[4;36;1mUser Create (0.000478)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name5', '2008-10-16 19:21:37', NULL, 5, 'email5@example.com', '2008-10-16 19:21:37')[0m
|
646
|
+
[4;35;1mUser Create (0.000163)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name6', '2008-10-16 19:21:37', NULL, 6, 'email6@example.com', '2008-10-16 19:21:37')[0m
|
647
|
+
[4;36;1mUser Load (0.000682)[0m [0;1mSELECT * FROM "users" [0m
|
648
|
+
|
649
|
+
|
650
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
651
|
+
Session ID:
|
652
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
653
|
+
[4;35;1mUser Load (0.001323)[0m [0mSELECT * FROM "users" ORDER BY users.email asc[0m
|
654
|
+
Rendering template within layouts/users
|
655
|
+
Rendering users/index
|
656
|
+
Completed in 0.00541 (184 reqs/sec) | Rendering: 0.00338 (62%) | DB: 0.00265 (48%) | 200 OK [http://test.host/users?order=ascending&sort=email]
|
657
|
+
[4;36;1mUser Create (0.000525)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name7', '2008-10-16 19:21:37', NULL, 7, 'email7@example.com', '2008-10-16 19:21:37')[0m
|
658
|
+
[4;35;1mUser Create (0.000197)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name8', '2008-10-16 19:21:37', NULL, 8, 'email8@example.com', '2008-10-16 19:21:37')[0m
|
659
|
+
[4;36;1mUser Load (0.000699)[0m [0;1mSELECT * FROM "users" [0m
|
660
|
+
|
661
|
+
|
662
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
663
|
+
Session ID:
|
664
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"email"}
|
665
|
+
[4;35;1mUser Load (0.001170)[0m [0mSELECT * FROM "users" ORDER BY users.email desc[0m
|
666
|
+
Rendering template within layouts/users
|
667
|
+
Rendering users/index
|
668
|
+
Completed in 0.00484 (206 reqs/sec) | Rendering: 0.00293 (60%) | DB: 0.00259 (53%) | 200 OK [http://test.host/users?order=descending&sort=email]
|
669
|
+
[4;36;1mUser Create (0.000448)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name9', '2008-10-16 19:21:37', NULL, 9, 'email9@example.com', '2008-10-16 19:21:37')[0m
|
670
|
+
[4;35;1mUser Create (0.000159)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name10', '2008-10-16 19:21:37', NULL, 10, 'email10@example.com', '2008-10-16 19:21:37')[0m
|
671
|
+
[4;36;1mUser Load (0.000698)[0m [0;1mSELECT * FROM "users" [0m
|
672
|
+
|
673
|
+
|
674
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
675
|
+
Session ID:
|
676
|
+
Parameters: {"order"=>"ascending", "action"=>"index", "controller"=>"users", "sort"=>"name"}
|
677
|
+
[4;35;1mUser Load (0.001885)[0m [0mSELECT * FROM "users" ORDER BY name asc[0m
|
678
|
+
Rendering template within layouts/users
|
679
|
+
Rendering users/index
|
680
|
+
Completed in 0.00631 (158 reqs/sec) | Rendering: 0.00358 (56%) | DB: 0.00319 (50%) | 200 OK [http://test.host/users?order=ascending&sort=name]
|
681
|
+
[4;36;1mUser Create (0.000474)[0m [0;1mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name11', '2008-10-16 19:21:37', NULL, 11, 'email11@example.com', '2008-10-16 19:21:37')[0m
|
682
|
+
[4;35;1mUser Create (0.000163)[0m [0mINSERT INTO "users" ("name", "updated_at", "admin", "age", "email", "created_at") VALUES('name12', '2008-10-16 19:21:37', NULL, 12, 'email12@example.com', '2008-10-16 19:21:37')[0m
|
683
|
+
[4;36;1mUser Load (0.000687)[0m [0;1mSELECT * FROM "users" [0m
|
684
|
+
|
685
|
+
|
686
|
+
Processing UsersController#index (for 0.0.0.0 at 2008-10-16 15:21:37) [GET]
|
687
|
+
Session ID:
|
688
|
+
Parameters: {"order"=>"descending", "action"=>"index", "controller"=>"users", "sort"=>"name"}
|
689
|
+
[4;35;1mUser Load (0.001261)[0m [0mSELECT * FROM "users" ORDER BY name desc[0m
|
690
|
+
Rendering template within layouts/users
|
691
|
+
Rendering users/index
|
692
|
+
Completed in 0.00504 (198 reqs/sec) | Rendering: 0.00305 (60%) | DB: 0.00258 (51%) | 200 OK [http://test.host/users?order=descending&sort=name]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dancroak-sortable_table
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Croak
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- test/rails_root/config/environments/test.rb
|
63
63
|
- test/rails_root/config/initializers
|
64
64
|
- test/rails_root/config/initializers/new_rails_defaults.rb
|
65
|
+
- test/rails_root/config/initializers/sortable_table.rb
|
65
66
|
- test/rails_root/config/routes.rb
|
66
67
|
- test/rails_root/db
|
67
68
|
- test/rails_root/db/development.sqlite3
|
@@ -74,6 +75,7 @@ files:
|
|
74
75
|
- test/rails_root/log/development.log
|
75
76
|
- test/rails_root/log/production.log
|
76
77
|
- test/rails_root/log/server.log
|
78
|
+
- test/rails_root/log/test.log
|
77
79
|
- test/rails_root/public
|
78
80
|
- test/rails_root/public/404.html
|
79
81
|
- test/rails_root/public/422.html
|
@@ -130,128 +132,6 @@ files:
|
|
130
132
|
- test/rails_root/tmp/sessions
|
131
133
|
- test/rails_root/tmp/sockets
|
132
134
|
- test/rails_root/vendor
|
133
|
-
- test/rails_root/vendor/plugins
|
134
|
-
- test/rails_root/vendor/plugins/shoulda
|
135
|
-
- test/rails_root/vendor/plugins/shoulda/bin
|
136
|
-
- test/rails_root/vendor/plugins/shoulda/bin/convert_to_should_syntax
|
137
|
-
- test/rails_root/vendor/plugins/shoulda/CONTRIBUTION_GUIDELINES.rdoc
|
138
|
-
- test/rails_root/vendor/plugins/shoulda/init.rb
|
139
|
-
- test/rails_root/vendor/plugins/shoulda/lib
|
140
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda
|
141
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb
|
142
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/color.rb
|
143
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/controller_tests
|
144
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/controller_tests/controller_tests.rb
|
145
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats
|
146
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/html.rb
|
147
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/xml.rb
|
148
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/gem
|
149
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/gem/proc_extensions.rb
|
150
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/gem/shoulda.rb
|
151
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/general.rb
|
152
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb
|
153
|
-
- test/rails_root/vendor/plugins/shoulda/lib/shoulda.rb
|
154
|
-
- test/rails_root/vendor/plugins/shoulda/MIT-LICENSE
|
155
|
-
- test/rails_root/vendor/plugins/shoulda/Rakefile
|
156
|
-
- test/rails_root/vendor/plugins/shoulda/README.rdoc
|
157
|
-
- test/rails_root/vendor/plugins/shoulda/tasks
|
158
|
-
- test/rails_root/vendor/plugins/shoulda/tasks/list_tests.rake
|
159
|
-
- test/rails_root/vendor/plugins/shoulda/tasks/yaml_to_shoulda.rake
|
160
|
-
- test/rails_root/vendor/plugins/shoulda/test
|
161
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures
|
162
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/addresses.yml
|
163
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/posts.yml
|
164
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/products.yml
|
165
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/taggings.yml
|
166
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/tags.yml
|
167
|
-
- test/rails_root/vendor/plugins/shoulda/test/fixtures/users.yml
|
168
|
-
- test/rails_root/vendor/plugins/shoulda/test/functional
|
169
|
-
- test/rails_root/vendor/plugins/shoulda/test/functional/posts_controller_test.rb
|
170
|
-
- test/rails_root/vendor/plugins/shoulda/test/functional/users_controller_test.rb
|
171
|
-
- test/rails_root/vendor/plugins/shoulda/test/other
|
172
|
-
- test/rails_root/vendor/plugins/shoulda/test/other/context_test.rb
|
173
|
-
- test/rails_root/vendor/plugins/shoulda/test/other/convert_to_should_syntax_test.rb
|
174
|
-
- test/rails_root/vendor/plugins/shoulda/test/other/helpers_test.rb
|
175
|
-
- test/rails_root/vendor/plugins/shoulda/test/other/private_helpers_test.rb
|
176
|
-
- test/rails_root/vendor/plugins/shoulda/test/other/should_test.rb
|
177
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root
|
178
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app
|
179
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/controllers
|
180
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/controllers/application.rb
|
181
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/controllers/posts_controller.rb
|
182
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/controllers/users_controller.rb
|
183
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/helpers
|
184
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/helpers/application_helper.rb
|
185
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/helpers/posts_helper.rb
|
186
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/helpers/users_helper.rb
|
187
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models
|
188
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/address.rb
|
189
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/dog.rb
|
190
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/flea.rb
|
191
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/post.rb
|
192
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/product.rb
|
193
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/tag.rb
|
194
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/tagging.rb
|
195
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/models/user.rb
|
196
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views
|
197
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/layouts
|
198
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/layouts/posts.rhtml
|
199
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/layouts/users.rhtml
|
200
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/posts
|
201
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/posts/edit.rhtml
|
202
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/posts/index.rhtml
|
203
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/posts/new.rhtml
|
204
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/posts/show.rhtml
|
205
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/users
|
206
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/users/edit.rhtml
|
207
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/users/index.rhtml
|
208
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/users/new.rhtml
|
209
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/app/views/users/show.rhtml
|
210
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config
|
211
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/boot.rb
|
212
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/database.yml
|
213
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/environment.rb
|
214
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/environments
|
215
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/environments/sqlite3.rb
|
216
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/initializers
|
217
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/initializers/new_rails_defaults.rb
|
218
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/initializers/shoulda.rb
|
219
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/config/routes.rb
|
220
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db
|
221
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate
|
222
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/001_create_users.rb
|
223
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/002_create_posts.rb
|
224
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/003_create_taggings.rb
|
225
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/004_create_tags.rb
|
226
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/005_create_dogs.rb
|
227
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/006_create_addresses.rb
|
228
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/007_create_fleas.rb
|
229
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/008_create_dogs_fleas.rb
|
230
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/migrate/009_create_products.rb
|
231
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/db/schema.rb
|
232
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/log
|
233
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/public
|
234
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/public/404.html
|
235
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/public/422.html
|
236
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/public/500.html
|
237
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/script
|
238
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/script/console
|
239
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/script/generate
|
240
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/vendor
|
241
|
-
- test/rails_root/vendor/plugins/shoulda/test/rails_root/vendor/plugins
|
242
|
-
- test/rails_root/vendor/plugins/shoulda/test/README
|
243
|
-
- test/rails_root/vendor/plugins/shoulda/test/test_helper.rb
|
244
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit
|
245
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/address_test.rb
|
246
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/dog_test.rb
|
247
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/flea_test.rb
|
248
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/post_test.rb
|
249
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/product_test.rb
|
250
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/tag_test.rb
|
251
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/tagging_test.rb
|
252
|
-
- test/rails_root/vendor/plugins/shoulda/test/unit/user_test.rb
|
253
|
-
- test/rails_root/vendor/plugins/sortable
|
254
|
-
- test/rails_root/vendor/plugins/sortable/init.rb
|
255
135
|
has_rdoc: false
|
256
136
|
homepage: http://github.com/dancroak/sortable_table
|
257
137
|
post_install_message:
|