font_awesome_tag_helper 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/log/*.log
6
+ test/dummy/tmp/
7
+ test/dummy/.sass-cache
8
+ Gemfile.lock
9
+ font_awesome_tag_helper-*.gem
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ # jquery-rails is used by the dummy application
6
+ gem "jquery-rails"
7
+ gem 'font-awesome-rails'
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2012 chaunce
1
+ Copyright (c) 2013 chaunce - chaunce.slc@gmail.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -2,7 +2,44 @@
2
2
 
3
3
  tag helper methods for Font Awesome icons
4
4
 
5
- Usage:
5
+ == Usage
6
6
 
7
- <%= icon_tag :search %>
8
- #=> <i class"icon-search"></i>
7
+ icon_tag :icon_name, options_hash
8
+
9
+ == Examples
10
+
11
+ icon_tag :search
12
+
13
+ produces:
14
+
15
+ <i class"icon-search"></i>
16
+
17
+ --
18
+
19
+ icon_tag :search, { id: "search", name: "search_icon" }
20
+
21
+ produces:
22
+
23
+ <i id="search" name="search_icon" class="icon-search"></i>
24
+
25
+ --
26
+
27
+ icon_tag :search, { id: "search", name: "search_icon", large: true, pull: "right" }
28
+
29
+ produces:
30
+
31
+ <i id="search" name="search_icon" class"icon-search icon-large pull-right"></i>
32
+
33
+ == Available Options
34
+
35
+ - +id+ the value of the id attribute. Accepts a string.
36
+ - +name+ the value of the name attribute. Accepts a string.
37
+ - +size+ increases the size of the icon. Adds +icon-2x+, +icon-3x+ or +icon-4x+ to the class when the value is set to a valid multiplayer +2+, +3+ or +4+. Accepts an integer.
38
+ - +large+ increases the size of the icon. Adds +icon-large+ to the class when the value is set to +true+. Accepts a boolean.
39
+ - +border+ includes a border around the icon. Adds +icon-border+ to the class when the value is set to +true+. Accepts a boolean.
40
+ - +pull+ orientates the icon to the left or right. Adds +pull-left+ or +pull-right+ to the class when the value is set to +left+ or +right+. Accepts a string.
41
+ - +spin+ animates the icon. Adds +icon-spin+ to the class when the value is set to +true+. Accepts a boolean.
42
+ - +li+ or +list+ formats the icon for a list. Adds +icon-li+ to the class when the value is set to +true+. Accepts a boolean.
43
+ - +width+ increases the width to the width of the parent element. Adds +icon-fixed-width+ to the class when the value is set to +fixed+. Accepts a string.
44
+ - +rotate+ turns the icon the specified number of degrees. Adds +icon-rotate-90+, +icon-rotate-180+ or +icon-rotate-270+ to the class when the value is set to +90+, +180+ or +270+. Accepts an integer.
45
+ - +width+ flips the icon. Adds +icon-flip-horizontal+ or +icon-flip-vertical+ to the class when the value is set to +horizontal+ or +vertical+. Accepts a string.
@@ -0,0 +1,32 @@
1
+ lib = File.expand_path('../lib/', __FILE__)
2
+ $:.unshift lib unless $:.include?(lib)
3
+
4
+ require "font_awesome_tag_helper/version"
5
+ require 'date'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "font_awesome_tag_helper"
9
+ s.version = ExpiringAssetLinks::Version.string
10
+ s.date = Date.today
11
+
12
+ s.summary = "Adds Font Awesome tag helpers."
13
+ s.description = "Adds Font Awesome tag helpers."
14
+ s.license = 'MIT'
15
+
16
+ s.author = "chaunce"
17
+ s.email = "chaunce.slc@gmail.com"
18
+ s.homepage = "http://github.com/chaunce/font_awesome_tag_helper"
19
+
20
+ s.has_rdoc = false
21
+ s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc']
22
+
23
+ s.require_paths = ['lib']
24
+
25
+ s.files = `git ls-files`.split("\n")
26
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
+
28
+ s.add_dependency "rails"
29
+ s.add_dependency "font-awesome-rails"
30
+
31
+ s.add_development_dependency "sqlite3"
32
+ end
@@ -1,3 +1,17 @@
1
- module FontAwesomeTagHelper
2
- VERSION = "0.2.0"
1
+ module ExpiringAssetLinks
2
+ # Contains information about this gem's version
3
+ module Version
4
+ MAJOR = 0
5
+ MINOR = 2
6
+ PATCH = 1
7
+
8
+ # Returns a version string by joining <tt>MAJOR</tt>, <tt>MINOR</tt>, and <tt>PATCH</tt> with <tt>'.'</tt>
9
+ #
10
+ # Example
11
+ #
12
+ # Version.string # '1.0.2'
13
+ def self.string
14
+ [MAJOR, MINOR, PATCH].join('.')
15
+ end
16
+ end
3
17
  end
File without changes
File without changes
File without changes
data/test/test_helper.rb CHANGED
@@ -13,3 +13,5 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
13
13
  if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
14
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
15
  end
16
+
17
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :database => ":memory:")
metadata CHANGED
@@ -1,77 +1,91 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font_awesome_tag_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - chaunce
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-09-05 00:00:00.000000000 Z
12
+ date: 2013-09-13 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rails
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - '>='
19
+ - - ! '>='
18
20
  - !ruby/object:Gem::Version
19
21
  version: '0'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
- - - '>='
27
+ - - ! '>='
25
28
  - !ruby/object:Gem::Version
26
29
  version: '0'
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: font-awesome-rails
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
- - - '>='
35
+ - - ! '>='
32
36
  - !ruby/object:Gem::Version
33
37
  version: '0'
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
- - - '>='
43
+ - - ! '>='
39
44
  - !ruby/object:Gem::Version
40
45
  version: '0'
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: sqlite3
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
- - - '>='
51
+ - - ! '>='
46
52
  - !ruby/object:Gem::Version
47
53
  version: '0'
48
54
  type: :development
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
- - - '>='
59
+ - - ! '>='
53
60
  - !ruby/object:Gem::Version
54
61
  version: '0'
55
62
  description: Adds Font Awesome tag helpers.
56
- email:
57
- - chaunce.slc@gmail.com
63
+ email: chaunce.slc@gmail.com
58
64
  executables: []
59
65
  extensions: []
60
66
  extra_rdoc_files: []
61
67
  files:
62
- - lib/font_awesome_tag_helper/version.rb
63
- - lib/font_awesome_tag_helper.rb
64
- - lib/tasks/font_awesome_tag_helper_tasks.rake
68
+ - .gitignore
69
+ - Gemfile
65
70
  - MIT-LICENSE
66
- - Rakefile
67
71
  - README.rdoc
72
+ - Rakefile
73
+ - font_awesome_tag_helper.gemspec
74
+ - lib/font_awesome_tag_helper.rb
75
+ - lib/font_awesome_tag_helper/version.rb
76
+ - lib/tasks/font_awesome_tag_helper_tasks.rake
77
+ - test/dummy/README.rdoc
78
+ - test/dummy/Rakefile
68
79
  - test/dummy/app/assets/javascripts/application.js
69
80
  - test/dummy/app/assets/stylesheets/application.css
70
81
  - test/dummy/app/controllers/application_controller.rb
71
82
  - test/dummy/app/controllers/font_awesome_tag_helper_controller.rb
72
83
  - test/dummy/app/helpers/application_helper.rb
84
+ - test/dummy/app/mailers/.gitkeep
85
+ - test/dummy/app/models/.gitkeep
73
86
  - test/dummy/app/views/font_awesome_tag_helper/index.html.erb
74
87
  - test/dummy/app/views/layouts/application.html.erb
88
+ - test/dummy/config.ru
75
89
  - test/dummy/config/application.rb
76
90
  - test/dummy/config/boot.rb
77
91
  - test/dummy/config/database.yml
@@ -87,51 +101,59 @@ files:
87
101
  - test/dummy/config/initializers/wrap_parameters.rb
88
102
  - test/dummy/config/locales/en.yml
89
103
  - test/dummy/config/routes.rb
90
- - test/dummy/config.ru
91
104
  - test/dummy/db/db
92
- - test/dummy/db/test.sqlite3
93
- - test/dummy/log/test.log
105
+ - test/dummy/lib/assets/.gitkeep
106
+ - test/dummy/log/.gitkeep
94
107
  - test/dummy/public/404.html
95
108
  - test/dummy/public/422.html
96
109
  - test/dummy/public/500.html
97
110
  - test/dummy/public/favicon.ico
98
- - test/dummy/Rakefile
99
- - test/dummy/README.rdoc
100
111
  - test/dummy/script/rails
101
112
  - test/font_awesome_tag_helper_controller_test.rb
102
113
  - test/font_awesome_tag_helper_test.rb
103
114
  - test/test_helper.rb
104
- homepage: ''
105
- licenses: []
106
- metadata: {}
115
+ homepage: http://github.com/chaunce/font_awesome_tag_helper
116
+ licenses:
117
+ - MIT
107
118
  post_install_message:
108
- rdoc_options: []
119
+ rdoc_options:
120
+ - --line-numbers
121
+ - --inline-source
122
+ - --main
123
+ - README.rdoc
109
124
  require_paths:
110
125
  - lib
111
126
  required_ruby_version: !ruby/object:Gem::Requirement
127
+ none: false
112
128
  requirements:
113
- - - '>='
129
+ - - ! '>='
114
130
  - !ruby/object:Gem::Version
115
131
  version: '0'
116
132
  required_rubygems_version: !ruby/object:Gem::Requirement
133
+ none: false
117
134
  requirements:
118
- - - '>='
135
+ - - ! '>='
119
136
  - !ruby/object:Gem::Version
120
137
  version: '0'
121
138
  requirements: []
122
139
  rubyforge_project:
123
- rubygems_version: 2.0.3
140
+ rubygems_version: 1.8.25
124
141
  signing_key:
125
- specification_version: 4
142
+ specification_version: 3
126
143
  summary: Adds Font Awesome tag helpers.
127
144
  test_files:
145
+ - test/dummy/README.rdoc
146
+ - test/dummy/Rakefile
128
147
  - test/dummy/app/assets/javascripts/application.js
129
148
  - test/dummy/app/assets/stylesheets/application.css
130
149
  - test/dummy/app/controllers/application_controller.rb
131
150
  - test/dummy/app/controllers/font_awesome_tag_helper_controller.rb
132
151
  - test/dummy/app/helpers/application_helper.rb
152
+ - test/dummy/app/mailers/.gitkeep
153
+ - test/dummy/app/models/.gitkeep
133
154
  - test/dummy/app/views/font_awesome_tag_helper/index.html.erb
134
155
  - test/dummy/app/views/layouts/application.html.erb
156
+ - test/dummy/config.ru
135
157
  - test/dummy/config/application.rb
136
158
  - test/dummy/config/boot.rb
137
159
  - test/dummy/config/database.yml
@@ -147,16 +169,13 @@ test_files:
147
169
  - test/dummy/config/initializers/wrap_parameters.rb
148
170
  - test/dummy/config/locales/en.yml
149
171
  - test/dummy/config/routes.rb
150
- - test/dummy/config.ru
151
172
  - test/dummy/db/db
152
- - test/dummy/db/test.sqlite3
153
- - test/dummy/log/test.log
173
+ - test/dummy/lib/assets/.gitkeep
174
+ - test/dummy/log/.gitkeep
154
175
  - test/dummy/public/404.html
155
176
  - test/dummy/public/422.html
156
177
  - test/dummy/public/500.html
157
178
  - test/dummy/public/favicon.ico
158
- - test/dummy/Rakefile
159
- - test/dummy/README.rdoc
160
179
  - test/dummy/script/rails
161
180
  - test/font_awesome_tag_helper_controller_test.rb
162
181
  - test/font_awesome_tag_helper_test.rb
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 48d163e41de0c4fdf69ec6096648e3b8f53c10f0
4
- data.tar.gz: 99bfe6ff1d0f90ce4de54a0f75d1b962a6e15de1
5
- SHA512:
6
- metadata.gz: b5e3d7a1017be6f43eba31438a9586acb88de371ec265cb4721a5e792a46366c67ae65ff0be53372fc2966faa1d5e8360373d3ae5ef50a9d9cc2ad57a87c7b43
7
- data.tar.gz: 8ef2240c6f93e0e8c2e93bf1ee40fdc3d1f376a3f0edbcb2265f193d45905d51ac3fff7deb0371c023c609c81274beebd5b3ae55426d9fc1774566c5961d9ece
@@ -1,1629 +0,0 @@
1
- Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
- Connecting to database specified by database.yml
5
- Connecting to database specified by database.yml
6
-  (0.2ms) begin transaction
7
- Processing by FontAwesomeTagHelperController#index as HTML
8
- Parameters: {"tag"=>"search"}
9
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.6ms)
10
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
11
-  (0.0ms) rollback transaction
12
-  (0.0ms) begin transaction
13
-  (0.0ms) rollback transaction
14
- Connecting to database specified by database.yml
15
-  (0.2ms) begin transaction
16
- Processing by FontAwesomeTagHelperController#index as HTML
17
- Parameters: {"tag"=>"search"}
18
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
19
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
20
-  (0.0ms) rollback transaction
21
-  (0.0ms) begin transaction
22
-  (0.0ms) rollback transaction
23
- Connecting to database specified by database.yml
24
-  (0.2ms) begin transaction
25
- Processing by FontAwesomeTagHelperController#index as HTML
26
- Parameters: {"tag"=>"search"}
27
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
28
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
29
-  (0.1ms) rollback transaction
30
-  (0.0ms) begin transaction
31
-  (0.0ms) rollback transaction
32
- Connecting to database specified by database.yml
33
-  (0.2ms) begin transaction
34
- Processing by FontAwesomeTagHelperController#index as HTML
35
- Parameters: {"tag"=>"search", "options"=>{"name"=>"search"}}
36
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (1.6ms)
37
- Completed 500 Internal Server Error in 5ms
38
-  (0.0ms) rollback transaction
39
-  (0.0ms) begin transaction
40
-  (0.0ms) rollback transaction
41
- Connecting to database specified by database.yml
42
-  (0.2ms) begin transaction
43
- Processing by FontAwesomeTagHelperController#index as HTML
44
- Parameters: {"tag"=>"search", "options"=>{"name"=>"search"}}
45
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
46
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
47
-  (0.0ms) rollback transaction
48
-  (0.0ms) begin transaction
49
-  (0.0ms) rollback transaction
50
- Connecting to database specified by database.yml
51
-  (0.2ms) begin transaction
52
- Processing by FontAwesomeTagHelperController#index as HTML
53
- Parameters: {"tag"=>"search", "options"=>{"name"=>"search"}}
54
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
55
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
56
-  (0.0ms) rollback transaction
57
-  (0.0ms) begin transaction
58
-  (0.0ms) rollback transaction
59
- Connecting to database specified by database.yml
60
-  (0.2ms) begin transaction
61
- Processing by FontAwesomeTagHelperController#index as HTML
62
- Parameters: {"tag"=>"search"}
63
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
64
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
65
-  (0.0ms) rollback transaction
66
-  (0.0ms) begin transaction
67
- Processing by FontAwesomeTagHelperController#index as HTML
68
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
69
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
70
-  (0.0ms) rollback transaction
71
-  (0.0ms) begin transaction
72
-  (0.0ms) rollback transaction
73
- Connecting to database specified by database.yml
74
-  (0.2ms) begin transaction
75
- Processing by FontAwesomeTagHelperController#index as HTML
76
- Parameters: {"tag"=>"search"}
77
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
78
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
79
-  (0.1ms) rollback transaction
80
-  (0.0ms) begin transaction
81
- Processing by FontAwesomeTagHelperController#index as HTML
82
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
83
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
84
-  (0.0ms) rollback transaction
85
-  (0.0ms) begin transaction
86
-  (0.0ms) rollback transaction
87
- Connecting to database specified by database.yml
88
-  (0.2ms) begin transaction
89
- Processing by FontAwesomeTagHelperController#index as HTML
90
- Parameters: {"tag"=>"search"}
91
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.6ms)
92
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
93
-  (0.0ms) rollback transaction
94
-  (0.0ms) begin transaction
95
- Processing by FontAwesomeTagHelperController#index as HTML
96
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
97
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
98
-  (0.0ms) rollback transaction
99
-  (0.0ms) begin transaction
100
- Processing by FontAwesomeTagHelperController#index as HTML
101
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
102
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
103
-  (0.0ms) rollback transaction
104
-  (0.0ms) begin transaction
105
- Processing by FontAwesomeTagHelperController#index as HTML
106
- Parameters: {"tag"=>"search"}
107
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
108
-  (0.0ms) rollback transaction
109
-  (0.0ms) begin transaction
110
-  (0.0ms) rollback transaction
111
- Connecting to database specified by database.yml
112
-  (0.2ms) begin transaction
113
- Processing by FontAwesomeTagHelperController#index as HTML
114
- Parameters: {"tag"=>"search"}
115
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.8ms)
116
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
117
-  (0.1ms) rollback transaction
118
-  (0.0ms) begin transaction
119
- Processing by FontAwesomeTagHelperController#index as HTML
120
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
121
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
122
-  (0.0ms) rollback transaction
123
-  (0.0ms) begin transaction
124
- Processing by FontAwesomeTagHelperController#index as HTML
125
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
126
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
127
-  (0.0ms) rollback transaction
128
-  (0.0ms) begin transaction
129
- Processing by FontAwesomeTagHelperController#index as HTML
130
- Parameters: {"tag"=>"search"}
131
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
132
-  (0.0ms) rollback transaction
133
-  (0.0ms) begin transaction
134
-  (0.0ms) rollback transaction
135
- Connecting to database specified by database.yml
136
-  (0.2ms) begin transaction
137
- Processing by FontAwesomeTagHelperController#index as HTML
138
- Parameters: {"tag"=>"search"}
139
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
140
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
141
-  (0.0ms) rollback transaction
142
-  (0.0ms) begin transaction
143
- Processing by FontAwesomeTagHelperController#index as HTML
144
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
145
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
146
-  (0.0ms) rollback transaction
147
-  (0.0ms) begin transaction
148
- Processing by FontAwesomeTagHelperController#index as HTML
149
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
150
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
151
-  (0.0ms) rollback transaction
152
-  (0.0ms) begin transaction
153
- Processing by FontAwesomeTagHelperController#index as HTML
154
- Parameters: {"tag"=>"search"}
155
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
156
-  (0.0ms) rollback transaction
157
-  (0.0ms) begin transaction
158
-  (0.0ms) rollback transaction
159
- Connecting to database specified by database.yml
160
-  (0.2ms) begin transaction
161
- Processing by FontAwesomeTagHelperController#index as HTML
162
- Parameters: {"tag"=>"search"}
163
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
164
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
165
-  (0.0ms) rollback transaction
166
-  (0.0ms) begin transaction
167
- Processing by FontAwesomeTagHelperController#index as HTML
168
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
169
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
170
-  (0.0ms) rollback transaction
171
-  (0.0ms) begin transaction
172
- Processing by FontAwesomeTagHelperController#index as HTML
173
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
174
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
175
-  (0.0ms) rollback transaction
176
-  (0.0ms) begin transaction
177
- Processing by FontAwesomeTagHelperController#index as HTML
178
- Parameters: {"tag"=>"search"}
179
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
180
-  (0.0ms) rollback transaction
181
-  (0.0ms) begin transaction
182
-  (0.0ms) rollback transaction
183
- Connecting to database specified by database.yml
184
-  (0.2ms) begin transaction
185
- Processing by FontAwesomeTagHelperController#index as HTML
186
- Parameters: {"tag"=>"search"}
187
-
188
- ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
189
-
190
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
191
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
192
-  (0.0ms) rollback transaction
193
-  (0.0ms) begin transaction
194
- Processing by FontAwesomeTagHelperController#index as HTML
195
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
196
-
197
- ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
198
-
199
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
200
-  (0.0ms) rollback transaction
201
-  (0.0ms) begin transaction
202
- Processing by FontAwesomeTagHelperController#index as HTML
203
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
204
-
205
- ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
206
-
207
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
208
-  (0.0ms) rollback transaction
209
-  (0.0ms) begin transaction
210
- Processing by FontAwesomeTagHelperController#index as HTML
211
- Parameters: {"tag"=>"search"}
212
-
213
- ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
214
-
215
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
216
-  (0.0ms) rollback transaction
217
-  (0.0ms) begin transaction
218
-  (0.0ms) rollback transaction
219
- Connecting to database specified by database.yml
220
-  (0.2ms) begin transaction
221
- Processing by FontAwesomeTagHelperController#index as HTML
222
- Parameters: {"tag"=>"search"}
223
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (38229.2ms)
224
- Completed 200 OK in 38236ms (Views: 38235.5ms | ActiveRecord: 0.0ms)
225
-  (0.1ms) rollback transaction
226
-  (0.0ms) begin transaction
227
- Processing by FontAwesomeTagHelperController#index as HTML
228
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
229
- Completed 200 OK in 3694ms (Views: 3694.2ms | ActiveRecord: 0.0ms)
230
-  (0.1ms) rollback transaction
231
-  (0.0ms) begin transaction
232
- Processing by FontAwesomeTagHelperController#index as HTML
233
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
234
- Connecting to database specified by database.yml
235
-  (0.2ms) begin transaction
236
- Processing by FontAwesomeTagHelperController#index as HTML
237
- Parameters: {"tag"=>"search"}
238
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (2296.0ms)
239
- Completed 200 OK in 2303ms (Views: 2302.2ms | ActiveRecord: 0.0ms)
240
-  (0.1ms) rollback transaction
241
-  (0.0ms) begin transaction
242
- Processing by FontAwesomeTagHelperController#index as HTML
243
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
244
- Completed 200 OK in 759ms (Views: 758.3ms | ActiveRecord: 0.0ms)
245
-  (0.1ms) rollback transaction
246
-  (0.0ms) begin transaction
247
- Processing by FontAwesomeTagHelperController#index as HTML
248
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
249
- Connecting to database specified by database.yml
250
-  (0.2ms) begin transaction
251
- Processing by FontAwesomeTagHelperController#index as HTML
252
- Parameters: {"tag"=>"search"}
253
- Connecting to database specified by database.yml
254
-  (0.2ms) begin transaction
255
- Processing by FontAwesomeTagHelperController#index as HTML
256
- Parameters: {"tag"=>"search"}
257
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
258
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
259
-  (0.1ms) rollback transaction
260
-  (0.0ms) begin transaction
261
- Processing by FontAwesomeTagHelperController#index as HTML
262
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
263
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
264
-  (0.0ms) rollback transaction
265
-  (0.0ms) begin transaction
266
- Processing by FontAwesomeTagHelperController#index as HTML
267
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed"}}
268
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
269
-  (0.0ms) rollback transaction
270
-  (0.0ms) begin transaction
271
- Processing by FontAwesomeTagHelperController#index as HTML
272
- Parameters: {"tag"=>"search"}
273
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
274
-  (0.0ms) rollback transaction
275
-  (0.0ms) begin transaction
276
-  (0.0ms) rollback transaction
277
- Connecting to database specified by database.yml
278
-  (0.2ms) begin transaction
279
- Processing by FontAwesomeTagHelperController#index as HTML
280
- Parameters: {"tag"=>"search"}
281
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
282
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
283
-  (0.0ms) rollback transaction
284
-  (0.0ms) begin transaction
285
- Processing by FontAwesomeTagHelperController#index as HTML
286
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
287
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
288
-  (0.0ms) rollback transaction
289
-  (0.0ms) begin transaction
290
- Processing by FontAwesomeTagHelperController#index as HTML
291
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
292
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
293
-  (0.0ms) rollback transaction
294
-  (0.0ms) begin transaction
295
- Processing by FontAwesomeTagHelperController#index as HTML
296
- Parameters: {"tag"=>"search"}
297
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
298
-  (0.0ms) rollback transaction
299
-  (0.0ms) begin transaction
300
-  (0.0ms) rollback transaction
301
- Connecting to database specified by database.yml
302
-  (0.2ms) begin transaction
303
- Processing by FontAwesomeTagHelperController#index as HTML
304
- Parameters: {"tag"=>"search"}
305
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
306
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
307
-  (0.1ms) rollback transaction
308
-  (0.0ms) begin transaction
309
- Processing by FontAwesomeTagHelperController#index as HTML
310
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
311
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
312
-  (0.0ms) rollback transaction
313
-  (0.0ms) begin transaction
314
- Processing by FontAwesomeTagHelperController#index as HTML
315
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
316
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
317
-  (0.0ms) rollback transaction
318
-  (0.0ms) begin transaction
319
- Processing by FontAwesomeTagHelperController#index as HTML
320
- Parameters: {"tag"=>"search"}
321
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
322
-  (0.0ms) rollback transaction
323
-  (0.0ms) begin transaction
324
-  (0.0ms) rollback transaction
325
- Connecting to database specified by database.yml
326
-  (0.2ms) begin transaction
327
- Processing by FontAwesomeTagHelperController#index as HTML
328
- Parameters: {"tag"=>"search"}
329
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
330
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
331
-  (0.1ms) rollback transaction
332
-  (0.0ms) begin transaction
333
- Processing by FontAwesomeTagHelperController#index as HTML
334
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
335
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
336
-  (0.0ms) rollback transaction
337
-  (0.0ms) begin transaction
338
- Processing by FontAwesomeTagHelperController#index as HTML
339
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
340
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
341
-  (0.0ms) rollback transaction
342
-  (0.0ms) begin transaction
343
- Processing by FontAwesomeTagHelperController#index as HTML
344
- Parameters: {"tag"=>"search"}
345
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
346
-  (0.0ms) rollback transaction
347
-  (0.0ms) begin transaction
348
-  (0.0ms) rollback transaction
349
- Connecting to database specified by database.yml
350
-  (0.2ms) begin transaction
351
- Processing by FontAwesomeTagHelperController#index as HTML
352
- Parameters: {"tag"=>"search"}
353
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
354
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
355
-  (0.1ms) rollback transaction
356
-  (0.0ms) begin transaction
357
- Processing by FontAwesomeTagHelperController#index as HTML
358
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
359
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
360
-  (0.0ms) rollback transaction
361
-  (0.0ms) begin transaction
362
- Processing by FontAwesomeTagHelperController#index as HTML
363
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
364
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
365
-  (0.0ms) rollback transaction
366
-  (0.0ms) begin transaction
367
- Processing by FontAwesomeTagHelperController#index as HTML
368
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
369
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
370
-  (0.0ms) rollback transaction
371
-  (0.0ms) begin transaction
372
- Processing by FontAwesomeTagHelperController#index as HTML
373
- Parameters: {"tag"=>"search"}
374
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
375
-  (0.0ms) rollback transaction
376
-  (0.0ms) begin transaction
377
-  (0.0ms) rollback transaction
378
- Connecting to database specified by database.yml
379
-  (0.2ms) begin transaction
380
- Processing by FontAwesomeTagHelperController#index as HTML
381
- Parameters: {"tag"=>"search"}
382
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (1970.8ms)
383
- Completed 200 OK in 1977ms (Views: 1977.1ms | ActiveRecord: 0.0ms)
384
-  (0.1ms) rollback transaction
385
-  (0.0ms) begin transaction
386
- Processing by FontAwesomeTagHelperController#index as HTML
387
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
388
- Completed 200 OK in 600ms (Views: 600.1ms | ActiveRecord: 0.0ms)
389
-  (0.1ms) rollback transaction
390
-  (0.0ms) begin transaction
391
- Processing by FontAwesomeTagHelperController#index as HTML
392
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
393
- Completed 200 OK in 592ms (Views: 591.8ms | ActiveRecord: 0.0ms)
394
-  (0.1ms) rollback transaction
395
-  (0.1ms) begin transaction
396
- Processing by FontAwesomeTagHelperController#index as HTML
397
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
398
- Completed 200 OK in 10969ms (Views: 10969.1ms | ActiveRecord: 0.0ms)
399
-  (0.1ms) rollback transaction
400
-  (0.1ms) begin transaction
401
- Processing by FontAwesomeTagHelperController#index as HTML
402
- Parameters: {"tag"=>"search"}
403
- Completed 200 OK in 2806ms (Views: 2806.1ms | ActiveRecord: 0.0ms)
404
-  (0.1ms) rollback transaction
405
-  (0.1ms) begin transaction
406
-  (0.1ms) rollback transaction
407
- Connecting to database specified by database.yml
408
-  (0.2ms) begin transaction
409
- Processing by FontAwesomeTagHelperController#index as HTML
410
- Parameters: {"tag"=>"search"}
411
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (4098.9ms)
412
- Completed 200 OK in 4105ms (Views: 4104.8ms | ActiveRecord: 0.0ms)
413
-  (0.1ms) rollback transaction
414
-  (0.0ms) begin transaction
415
- Processing by FontAwesomeTagHelperController#index as HTML
416
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
417
- Connecting to database specified by database.yml
418
-  (0.2ms) begin transaction
419
- Processing by FontAwesomeTagHelperController#index as HTML
420
- Parameters: {"tag"=>"search"}
421
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
422
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
423
-  (0.0ms) rollback transaction
424
-  (0.1ms) begin transaction
425
- Processing by FontAwesomeTagHelperController#index as HTML
426
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
427
- Connecting to database specified by database.yml
428
-  (0.2ms) begin transaction
429
- Processing by FontAwesomeTagHelperController#index as HTML
430
- Parameters: {"tag"=>"search"}
431
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
432
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
433
-  (0.1ms) rollback transaction
434
-  (0.0ms) begin transaction
435
- Processing by FontAwesomeTagHelperController#index as HTML
436
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
437
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
438
-  (0.0ms) rollback transaction
439
-  (0.0ms) begin transaction
440
- Processing by FontAwesomeTagHelperController#index as HTML
441
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
442
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
443
-  (0.0ms) rollback transaction
444
-  (0.0ms) begin transaction
445
- Processing by FontAwesomeTagHelperController#index as HTML
446
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
447
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
448
-  (0.0ms) rollback transaction
449
-  (0.0ms) begin transaction
450
- Processing by FontAwesomeTagHelperController#index as HTML
451
- Parameters: {"tag"=>"search"}
452
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
453
-  (0.0ms) rollback transaction
454
-  (0.0ms) begin transaction
455
-  (0.0ms) rollback transaction
456
- Connecting to database specified by database.yml
457
-  (0.2ms) begin transaction
458
- Processing by FontAwesomeTagHelperController#index as HTML
459
- Parameters: {"tag"=>"search"}
460
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
461
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
462
-  (0.0ms) rollback transaction
463
-  (0.0ms) begin transaction
464
- Processing by FontAwesomeTagHelperController#index as HTML
465
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
466
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
467
-  (0.0ms) rollback transaction
468
-  (0.0ms) begin transaction
469
- Processing by FontAwesomeTagHelperController#index as HTML
470
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
471
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
472
-  (0.0ms) rollback transaction
473
-  (0.0ms) begin transaction
474
- Processing by FontAwesomeTagHelperController#index as HTML
475
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
476
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
477
-  (0.0ms) rollback transaction
478
-  (0.0ms) begin transaction
479
- Processing by FontAwesomeTagHelperController#index as HTML
480
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
481
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
482
-  (0.0ms) rollback transaction
483
-  (0.0ms) begin transaction
484
- Processing by FontAwesomeTagHelperController#index as HTML
485
- Parameters: {"tag"=>"search"}
486
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
487
-  (0.0ms) rollback transaction
488
-  (0.0ms) begin transaction
489
-  (0.0ms) rollback transaction
490
- Connecting to database specified by database.yml
491
-  (0.2ms) begin transaction
492
- Processing by FontAwesomeTagHelperController#index as HTML
493
- Parameters: {"tag"=>"search"}
494
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
495
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
496
-  (0.1ms) rollback transaction
497
-  (0.0ms) begin transaction
498
- Processing by FontAwesomeTagHelperController#index as HTML
499
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
500
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
501
-  (0.0ms) rollback transaction
502
-  (0.0ms) begin transaction
503
- Processing by FontAwesomeTagHelperController#index as HTML
504
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
505
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
506
-  (0.0ms) rollback transaction
507
-  (0.0ms) begin transaction
508
- Processing by FontAwesomeTagHelperController#index as HTML
509
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
510
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
511
-  (0.0ms) rollback transaction
512
-  (0.0ms) begin transaction
513
- Processing by FontAwesomeTagHelperController#index as HTML
514
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
515
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
516
-  (0.0ms) rollback transaction
517
-  (0.0ms) begin transaction
518
- Processing by FontAwesomeTagHelperController#index as HTML
519
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
520
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
521
-  (0.0ms) rollback transaction
522
-  (0.0ms) begin transaction
523
- Processing by FontAwesomeTagHelperController#index as HTML
524
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
525
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
526
-  (0.0ms) rollback transaction
527
-  (0.0ms) begin transaction
528
- Processing by FontAwesomeTagHelperController#index as HTML
529
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
530
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
531
-  (0.0ms) rollback transaction
532
-  (0.0ms) begin transaction
533
- Processing by FontAwesomeTagHelperController#index as HTML
534
- Parameters: {"tag"=>"search"}
535
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
536
-  (0.0ms) rollback transaction
537
-  (0.0ms) begin transaction
538
-  (0.0ms) rollback transaction
539
- Connecting to database specified by database.yml
540
-  (0.2ms) begin transaction
541
- Processing by FontAwesomeTagHelperController#index as HTML
542
- Parameters: {"tag"=>"search"}
543
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
544
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
545
-  (0.0ms) rollback transaction
546
-  (0.0ms) begin transaction
547
- Processing by FontAwesomeTagHelperController#index as HTML
548
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
549
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
550
-  (0.0ms) rollback transaction
551
-  (0.0ms) begin transaction
552
- Processing by FontAwesomeTagHelperController#index as HTML
553
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
554
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
555
-  (0.0ms) rollback transaction
556
-  (0.0ms) begin transaction
557
- Processing by FontAwesomeTagHelperController#index as HTML
558
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
559
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
560
-  (0.0ms) rollback transaction
561
-  (0.0ms) begin transaction
562
- Processing by FontAwesomeTagHelperController#index as HTML
563
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
564
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
565
-  (0.0ms) rollback transaction
566
-  (0.0ms) begin transaction
567
- Processing by FontAwesomeTagHelperController#index as HTML
568
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
569
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
570
-  (0.0ms) rollback transaction
571
-  (0.0ms) begin transaction
572
- Processing by FontAwesomeTagHelperController#index as HTML
573
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
574
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
575
-  (0.0ms) rollback transaction
576
-  (0.0ms) begin transaction
577
- Processing by FontAwesomeTagHelperController#index as HTML
578
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
579
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
580
-  (0.0ms) rollback transaction
581
-  (0.0ms) begin transaction
582
- Processing by FontAwesomeTagHelperController#index as HTML
583
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
584
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
585
-  (0.0ms) rollback transaction
586
-  (0.0ms) begin transaction
587
- Processing by FontAwesomeTagHelperController#index as HTML
588
- Parameters: {"tag"=>"search"}
589
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
590
-  (0.0ms) rollback transaction
591
-  (0.0ms) begin transaction
592
-  (0.0ms) rollback transaction
593
- Connecting to database specified by database.yml
594
-  (0.2ms) begin transaction
595
- Processing by FontAwesomeTagHelperController#index as HTML
596
- Parameters: {"tag"=>"search"}
597
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
598
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
599
-  (0.1ms) rollback transaction
600
-  (0.0ms) begin transaction
601
- Processing by FontAwesomeTagHelperController#index as HTML
602
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
603
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
604
-  (0.0ms) rollback transaction
605
-  (0.0ms) begin transaction
606
- Processing by FontAwesomeTagHelperController#index as HTML
607
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
608
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
609
-  (0.0ms) rollback transaction
610
-  (0.0ms) begin transaction
611
- Processing by FontAwesomeTagHelperController#index as HTML
612
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
613
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
614
-  (0.0ms) rollback transaction
615
-  (0.0ms) begin transaction
616
- Processing by FontAwesomeTagHelperController#index as HTML
617
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
618
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
619
-  (0.0ms) rollback transaction
620
-  (0.0ms) begin transaction
621
- Processing by FontAwesomeTagHelperController#index as HTML
622
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
623
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
624
-  (0.0ms) rollback transaction
625
-  (0.0ms) begin transaction
626
- Processing by FontAwesomeTagHelperController#index as HTML
627
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
628
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
629
-  (0.0ms) rollback transaction
630
-  (0.0ms) begin transaction
631
- Processing by FontAwesomeTagHelperController#index as HTML
632
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
633
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
634
-  (0.0ms) rollback transaction
635
-  (0.0ms) begin transaction
636
- Processing by FontAwesomeTagHelperController#index as HTML
637
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"yes", "list"=>"li", "width"=>"fixed-width", "rotate"=>"44", "flip"=>"horizontal"}}
638
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
639
-  (0.0ms) rollback transaction
640
-  (0.0ms) begin transaction
641
- Processing by FontAwesomeTagHelperController#index as HTML
642
- Parameters: {"tag"=>"search"}
643
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
644
-  (0.0ms) rollback transaction
645
-  (0.0ms) begin transaction
646
-  (0.0ms) rollback transaction
647
- Connecting to database specified by database.yml
648
-  (0.2ms) begin transaction
649
- Processing by FontAwesomeTagHelperController#index as HTML
650
- Parameters: {"tag"=>"search"}
651
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
652
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
653
-  (0.1ms) rollback transaction
654
-  (0.0ms) begin transaction
655
- Processing by FontAwesomeTagHelperController#index as HTML
656
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
657
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
658
-  (0.0ms) rollback transaction
659
-  (0.0ms) begin transaction
660
- Processing by FontAwesomeTagHelperController#index as HTML
661
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
662
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
663
-  (0.0ms) rollback transaction
664
-  (0.0ms) begin transaction
665
- Processing by FontAwesomeTagHelperController#index as HTML
666
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
667
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
668
-  (0.0ms) rollback transaction
669
-  (0.0ms) begin transaction
670
- Processing by FontAwesomeTagHelperController#index as HTML
671
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
672
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
673
-  (0.0ms) rollback transaction
674
-  (0.0ms) begin transaction
675
- Processing by FontAwesomeTagHelperController#index as HTML
676
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
677
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
678
-  (0.0ms) rollback transaction
679
-  (0.0ms) begin transaction
680
- Processing by FontAwesomeTagHelperController#index as HTML
681
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
682
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
683
-  (0.0ms) rollback transaction
684
-  (0.0ms) begin transaction
685
- Processing by FontAwesomeTagHelperController#index as HTML
686
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
687
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
688
-  (0.0ms) rollback transaction
689
-  (0.0ms) begin transaction
690
- Processing by FontAwesomeTagHelperController#index as HTML
691
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"yes", "list"=>"li", "width"=>"fixed-width", "rotate"=>"44", "flip"=>"horizontal"}}
692
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
693
-  (0.0ms) rollback transaction
694
-  (0.0ms) begin transaction
695
- Processing by FontAwesomeTagHelperController#index as HTML
696
- Parameters: {"tag"=>"search"}
697
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
698
-  (0.0ms) rollback transaction
699
-  (0.0ms) begin transaction
700
-  (0.0ms) rollback transaction
701
- Connecting to database specified by database.yml
702
-  (0.2ms) begin transaction
703
- Processing by FontAwesomeTagHelperController#index as HTML
704
- Parameters: {"tag"=>"search"}
705
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
706
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
707
-  (0.1ms) rollback transaction
708
-  (0.0ms) begin transaction
709
- Processing by FontAwesomeTagHelperController#index as HTML
710
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
711
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
712
-  (0.0ms) rollback transaction
713
-  (0.0ms) begin transaction
714
- Processing by FontAwesomeTagHelperController#index as HTML
715
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
716
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
717
-  (0.0ms) rollback transaction
718
-  (0.0ms) begin transaction
719
- Processing by FontAwesomeTagHelperController#index as HTML
720
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
721
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
722
-  (0.0ms) rollback transaction
723
-  (0.0ms) begin transaction
724
- Processing by FontAwesomeTagHelperController#index as HTML
725
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
726
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
727
-  (0.0ms) rollback transaction
728
-  (0.0ms) begin transaction
729
- Processing by FontAwesomeTagHelperController#index as HTML
730
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
731
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
732
-  (0.0ms) rollback transaction
733
-  (0.0ms) begin transaction
734
- Processing by FontAwesomeTagHelperController#index as HTML
735
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
736
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
737
-  (0.0ms) rollback transaction
738
-  (0.0ms) begin transaction
739
- Processing by FontAwesomeTagHelperController#index as HTML
740
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
741
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
742
-  (0.0ms) rollback transaction
743
-  (0.0ms) begin transaction
744
- Processing by FontAwesomeTagHelperController#index as HTML
745
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"yes", "list"=>"li", "width"=>"fixed-width", "rotate"=>"44", "flip"=>"horizontal"}}
746
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
747
-  (0.0ms) rollback transaction
748
-  (0.0ms) begin transaction
749
- Processing by FontAwesomeTagHelperController#index as HTML
750
- Parameters: {"tag"=>"search"}
751
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
752
-  (0.0ms) rollback transaction
753
-  (0.0ms) begin transaction
754
-  (0.0ms) rollback transaction
755
- Connecting to database specified by database.yml
756
-  (0.2ms) begin transaction
757
- Processing by FontAwesomeTagHelperController#index as HTML
758
- Parameters: {"tag"=>"search"}
759
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
760
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
761
-  (0.0ms) rollback transaction
762
-  (0.0ms) begin transaction
763
- Processing by FontAwesomeTagHelperController#index as HTML
764
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
765
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
766
-  (0.0ms) rollback transaction
767
-  (0.0ms) begin transaction
768
- Processing by FontAwesomeTagHelperController#index as HTML
769
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
770
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
771
-  (0.0ms) rollback transaction
772
-  (0.0ms) begin transaction
773
- Processing by FontAwesomeTagHelperController#index as HTML
774
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
775
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
776
-  (0.0ms) rollback transaction
777
-  (0.0ms) begin transaction
778
- Processing by FontAwesomeTagHelperController#index as HTML
779
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
780
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
781
-  (0.0ms) rollback transaction
782
-  (0.0ms) begin transaction
783
- Processing by FontAwesomeTagHelperController#index as HTML
784
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"yes", "list"=>"li", "width"=>"fixed-width", "rotate"=>"44", "flip"=>"horizontal"}}
785
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
786
-  (0.0ms) rollback transaction
787
-  (0.0ms) begin transaction
788
- Processing by FontAwesomeTagHelperController#index as HTML
789
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
790
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
791
-  (0.0ms) rollback transaction
792
-  (0.0ms) begin transaction
793
- Processing by FontAwesomeTagHelperController#index as HTML
794
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
795
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
796
-  (0.0ms) rollback transaction
797
-  (0.0ms) begin transaction
798
- Processing by FontAwesomeTagHelperController#index as HTML
799
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"horizontal"}}
800
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
801
-  (0.0ms) rollback transaction
802
-  (0.0ms) begin transaction
803
- Processing by FontAwesomeTagHelperController#index as HTML
804
- Parameters: {"tag"=>"search"}
805
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
806
-  (0.0ms) rollback transaction
807
-  (0.0ms) begin transaction
808
-  (0.0ms) rollback transaction
809
- Connecting to database specified by database.yml
810
-  (0.2ms) begin transaction
811
- Processing by FontAwesomeTagHelperController#index as HTML
812
- Parameters: {"tag"=>"search"}
813
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.8ms)
814
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
815
-  (0.1ms) rollback transaction
816
-  (0.0ms) begin transaction
817
- Processing by FontAwesomeTagHelperController#index as HTML
818
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
819
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
820
-  (0.0ms) rollback transaction
821
-  (0.0ms) begin transaction
822
- Processing by FontAwesomeTagHelperController#index as HTML
823
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
824
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
825
-  (0.0ms) rollback transaction
826
-  (0.0ms) begin transaction
827
- Processing by FontAwesomeTagHelperController#index as HTML
828
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
829
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
830
-  (0.0ms) rollback transaction
831
-  (0.0ms) begin transaction
832
- Processing by FontAwesomeTagHelperController#index as HTML
833
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
834
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
835
-  (0.0ms) rollback transaction
836
-  (0.0ms) begin transaction
837
- Processing by FontAwesomeTagHelperController#index as HTML
838
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
839
- Completed 500 Internal Server Error in 2ms
840
-  (0.0ms) rollback transaction
841
-  (0.0ms) begin transaction
842
- Processing by FontAwesomeTagHelperController#index as HTML
843
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
844
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
845
-  (0.0ms) rollback transaction
846
-  (0.0ms) begin transaction
847
- Processing by FontAwesomeTagHelperController#index as HTML
848
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
849
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
850
-  (0.0ms) rollback transaction
851
-  (0.0ms) begin transaction
852
- Processing by FontAwesomeTagHelperController#index as HTML
853
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
854
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
855
-  (0.0ms) rollback transaction
856
-  (0.0ms) begin transaction
857
- Processing by FontAwesomeTagHelperController#index as HTML
858
- Parameters: {"tag"=>"search"}
859
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
860
-  (0.0ms) rollback transaction
861
-  (0.0ms) begin transaction
862
-  (0.0ms) rollback transaction
863
- Connecting to database specified by database.yml
864
-  (0.2ms) begin transaction
865
- Processing by FontAwesomeTagHelperController#index as HTML
866
- Parameters: {"tag"=>"search"}
867
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
868
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
869
-  (0.1ms) rollback transaction
870
-  (0.0ms) begin transaction
871
- Processing by FontAwesomeTagHelperController#index as HTML
872
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
873
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
874
-  (0.0ms) rollback transaction
875
-  (0.0ms) begin transaction
876
- Processing by FontAwesomeTagHelperController#index as HTML
877
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
878
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
879
-  (0.0ms) rollback transaction
880
-  (0.0ms) begin transaction
881
- Processing by FontAwesomeTagHelperController#index as HTML
882
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
883
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
884
-  (0.0ms) rollback transaction
885
-  (0.0ms) begin transaction
886
- Processing by FontAwesomeTagHelperController#index as HTML
887
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
888
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
889
-  (0.0ms) rollback transaction
890
-  (0.0ms) begin transaction
891
- Processing by FontAwesomeTagHelperController#index as HTML
892
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
893
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
894
-  (0.0ms) rollback transaction
895
-  (0.0ms) begin transaction
896
- Processing by FontAwesomeTagHelperController#index as HTML
897
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
898
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
899
-  (0.0ms) rollback transaction
900
-  (0.0ms) begin transaction
901
- Processing by FontAwesomeTagHelperController#index as HTML
902
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
903
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
904
-  (0.0ms) rollback transaction
905
-  (0.0ms) begin transaction
906
- Processing by FontAwesomeTagHelperController#index as HTML
907
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
908
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
909
-  (0.0ms) rollback transaction
910
-  (0.0ms) begin transaction
911
- Processing by FontAwesomeTagHelperController#index as HTML
912
- Parameters: {"tag"=>"search"}
913
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
914
-  (0.0ms) rollback transaction
915
-  (0.0ms) begin transaction
916
-  (0.0ms) rollback transaction
917
- Connecting to database specified by database.yml
918
-  (0.2ms) begin transaction
919
- Processing by FontAwesomeTagHelperController#index as HTML
920
- Parameters: {"tag"=>"search"}
921
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
922
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
923
-  (0.1ms) rollback transaction
924
-  (0.0ms) begin transaction
925
- Processing by FontAwesomeTagHelperController#index as HTML
926
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
927
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
928
-  (0.0ms) rollback transaction
929
-  (0.0ms) begin transaction
930
- Processing by FontAwesomeTagHelperController#index as HTML
931
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
932
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
933
-  (0.0ms) rollback transaction
934
-  (0.0ms) begin transaction
935
- Processing by FontAwesomeTagHelperController#index as HTML
936
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
937
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
938
-  (0.0ms) rollback transaction
939
-  (0.0ms) begin transaction
940
- Processing by FontAwesomeTagHelperController#index as HTML
941
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
942
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
943
-  (0.0ms) rollback transaction
944
-  (0.0ms) begin transaction
945
- Processing by FontAwesomeTagHelperController#index as HTML
946
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
947
- Completed 500 Internal Server Error in 5ms
948
-  (0.0ms) rollback transaction
949
-  (0.0ms) begin transaction
950
- Processing by FontAwesomeTagHelperController#index as HTML
951
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
952
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
953
-  (0.0ms) rollback transaction
954
-  (0.0ms) begin transaction
955
- Processing by FontAwesomeTagHelperController#index as HTML
956
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
957
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
958
-  (0.0ms) rollback transaction
959
-  (0.0ms) begin transaction
960
- Processing by FontAwesomeTagHelperController#index as HTML
961
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
962
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
963
-  (0.0ms) rollback transaction
964
-  (0.0ms) begin transaction
965
- Processing by FontAwesomeTagHelperController#index as HTML
966
- Parameters: {"tag"=>"search"}
967
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
968
-  (0.0ms) rollback transaction
969
-  (0.1ms) begin transaction
970
-  (0.0ms) rollback transaction
971
- Connecting to database specified by database.yml
972
-  (0.2ms) begin transaction
973
- Processing by FontAwesomeTagHelperController#index as HTML
974
- Parameters: {"tag"=>"search"}
975
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
976
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
977
-  (0.1ms) rollback transaction
978
-  (0.0ms) begin transaction
979
- Processing by FontAwesomeTagHelperController#index as HTML
980
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
981
- Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
982
-  (0.0ms) rollback transaction
983
-  (0.0ms) begin transaction
984
- Processing by FontAwesomeTagHelperController#index as HTML
985
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
986
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
987
-  (0.0ms) rollback transaction
988
-  (0.0ms) begin transaction
989
- Processing by FontAwesomeTagHelperController#index as HTML
990
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
991
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
992
-  (0.0ms) rollback transaction
993
-  (0.0ms) begin transaction
994
- Processing by FontAwesomeTagHelperController#index as HTML
995
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
996
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
997
-  (0.0ms) rollback transaction
998
-  (0.0ms) begin transaction
999
- Processing by FontAwesomeTagHelperController#index as HTML
1000
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1001
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1002
-  (0.0ms) rollback transaction
1003
-  (0.0ms) begin transaction
1004
- Processing by FontAwesomeTagHelperController#index as HTML
1005
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1006
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1007
-  (0.0ms) rollback transaction
1008
-  (0.0ms) begin transaction
1009
- Processing by FontAwesomeTagHelperController#index as HTML
1010
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1011
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1012
-  (0.0ms) rollback transaction
1013
-  (0.0ms) begin transaction
1014
- Processing by FontAwesomeTagHelperController#index as HTML
1015
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1016
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1017
-  (0.0ms) rollback transaction
1018
-  (0.0ms) begin transaction
1019
- Processing by FontAwesomeTagHelperController#index as HTML
1020
- Parameters: {"tag"=>"search"}
1021
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1022
-  (0.0ms) rollback transaction
1023
-  (0.0ms) begin transaction
1024
-  (0.0ms) rollback transaction
1025
- Connecting to database specified by database.yml
1026
-  (0.2ms) begin transaction
1027
- Processing by FontAwesomeTagHelperController#index as HTML
1028
- Parameters: {"tag"=>"search"}
1029
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1030
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1031
-  (0.1ms) rollback transaction
1032
-  (0.0ms) begin transaction
1033
- Processing by FontAwesomeTagHelperController#index as HTML
1034
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1035
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1036
-  (0.0ms) rollback transaction
1037
-  (0.0ms) begin transaction
1038
- Processing by FontAwesomeTagHelperController#index as HTML
1039
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1040
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1041
-  (0.0ms) rollback transaction
1042
-  (0.0ms) begin transaction
1043
- Processing by FontAwesomeTagHelperController#index as HTML
1044
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1045
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1046
-  (0.0ms) rollback transaction
1047
-  (0.0ms) begin transaction
1048
- Processing by FontAwesomeTagHelperController#index as HTML
1049
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1050
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1051
-  (0.0ms) rollback transaction
1052
-  (0.0ms) begin transaction
1053
- Processing by FontAwesomeTagHelperController#index as HTML
1054
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1055
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1056
-  (0.0ms) rollback transaction
1057
-  (0.0ms) begin transaction
1058
- Processing by FontAwesomeTagHelperController#index as HTML
1059
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1060
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1061
-  (0.0ms) rollback transaction
1062
-  (0.0ms) begin transaction
1063
- Processing by FontAwesomeTagHelperController#index as HTML
1064
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1065
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1066
-  (0.0ms) rollback transaction
1067
-  (0.0ms) begin transaction
1068
- Processing by FontAwesomeTagHelperController#index as HTML
1069
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1070
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1071
-  (0.0ms) rollback transaction
1072
-  (0.0ms) begin transaction
1073
- Processing by FontAwesomeTagHelperController#index as HTML
1074
- Parameters: {"tag"=>"search"}
1075
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1076
-  (0.0ms) rollback transaction
1077
-  (0.0ms) begin transaction
1078
-  (0.0ms) rollback transaction
1079
- Connecting to database specified by database.yml
1080
-  (0.2ms) begin transaction
1081
- Processing by FontAwesomeTagHelperController#index as HTML
1082
- Parameters: {"tag"=>"search"}
1083
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1084
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1085
-  (0.0ms) rollback transaction
1086
-  (0.0ms) begin transaction
1087
- Processing by FontAwesomeTagHelperController#index as HTML
1088
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1089
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1090
-  (0.0ms) rollback transaction
1091
-  (0.0ms) begin transaction
1092
- Processing by FontAwesomeTagHelperController#index as HTML
1093
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1094
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1095
-  (0.0ms) rollback transaction
1096
-  (0.0ms) begin transaction
1097
- Processing by FontAwesomeTagHelperController#index as HTML
1098
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1099
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1100
-  (0.0ms) rollback transaction
1101
-  (0.0ms) begin transaction
1102
- Processing by FontAwesomeTagHelperController#index as HTML
1103
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1104
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1105
-  (0.0ms) rollback transaction
1106
-  (0.0ms) begin transaction
1107
- Processing by FontAwesomeTagHelperController#index as HTML
1108
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1109
- Completed 500 Internal Server Error in 5ms
1110
-  (0.0ms) rollback transaction
1111
-  (0.0ms) begin transaction
1112
- Processing by FontAwesomeTagHelperController#index as HTML
1113
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1114
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1115
-  (0.0ms) rollback transaction
1116
-  (0.0ms) begin transaction
1117
- Processing by FontAwesomeTagHelperController#index as HTML
1118
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1119
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1120
-  (0.0ms) rollback transaction
1121
-  (0.0ms) begin transaction
1122
- Processing by FontAwesomeTagHelperController#index as HTML
1123
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1124
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1125
-  (0.0ms) rollback transaction
1126
-  (0.0ms) begin transaction
1127
- Processing by FontAwesomeTagHelperController#index as HTML
1128
- Parameters: {"tag"=>"search"}
1129
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1130
-  (0.0ms) rollback transaction
1131
-  (0.0ms) begin transaction
1132
-  (0.0ms) rollback transaction
1133
- Connecting to database specified by database.yml
1134
-  (0.2ms) begin transaction
1135
- Processing by FontAwesomeTagHelperController#index as HTML
1136
- Parameters: {"tag"=>"search"}
1137
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1138
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1139
-  (0.0ms) rollback transaction
1140
-  (0.0ms) begin transaction
1141
- Processing by FontAwesomeTagHelperController#index as HTML
1142
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1143
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1144
-  (0.0ms) rollback transaction
1145
-  (0.0ms) begin transaction
1146
- Processing by FontAwesomeTagHelperController#index as HTML
1147
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1148
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1149
-  (0.0ms) rollback transaction
1150
-  (0.0ms) begin transaction
1151
- Processing by FontAwesomeTagHelperController#index as HTML
1152
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1153
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1154
-  (0.0ms) rollback transaction
1155
-  (0.0ms) begin transaction
1156
- Processing by FontAwesomeTagHelperController#index as HTML
1157
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1158
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1159
-  (0.0ms) rollback transaction
1160
-  (0.0ms) begin transaction
1161
- Processing by FontAwesomeTagHelperController#index as HTML
1162
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1163
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1164
-  (0.0ms) rollback transaction
1165
-  (0.0ms) begin transaction
1166
- Processing by FontAwesomeTagHelperController#index as HTML
1167
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1168
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1169
-  (0.0ms) rollback transaction
1170
-  (0.0ms) begin transaction
1171
- Processing by FontAwesomeTagHelperController#index as HTML
1172
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1173
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1174
-  (0.0ms) rollback transaction
1175
-  (0.0ms) begin transaction
1176
- Processing by FontAwesomeTagHelperController#index as HTML
1177
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1178
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1179
-  (0.0ms) rollback transaction
1180
-  (0.0ms) begin transaction
1181
- Processing by FontAwesomeTagHelperController#index as HTML
1182
- Parameters: {"tag"=>"search"}
1183
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1184
-  (0.0ms) rollback transaction
1185
-  (0.0ms) begin transaction
1186
-  (0.0ms) rollback transaction
1187
- Connecting to database specified by database.yml
1188
-  (0.2ms) begin transaction
1189
- Processing by FontAwesomeTagHelperController#index as HTML
1190
- Parameters: {"tag"=>"search"}
1191
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1192
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1193
-  (0.0ms) rollback transaction
1194
-  (0.1ms) begin transaction
1195
- Processing by FontAwesomeTagHelperController#index as HTML
1196
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1197
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1198
-  (0.0ms) rollback transaction
1199
-  (0.0ms) begin transaction
1200
- Processing by FontAwesomeTagHelperController#index as HTML
1201
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1202
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1203
-  (0.0ms) rollback transaction
1204
-  (0.0ms) begin transaction
1205
- Processing by FontAwesomeTagHelperController#index as HTML
1206
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1207
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1208
-  (0.0ms) rollback transaction
1209
-  (0.0ms) begin transaction
1210
- Processing by FontAwesomeTagHelperController#index as HTML
1211
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1212
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1213
-  (0.0ms) rollback transaction
1214
-  (0.0ms) begin transaction
1215
- Processing by FontAwesomeTagHelperController#index as HTML
1216
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1217
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1218
-  (0.0ms) rollback transaction
1219
-  (0.0ms) begin transaction
1220
- Processing by FontAwesomeTagHelperController#index as HTML
1221
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1222
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1223
-  (0.0ms) rollback transaction
1224
-  (0.0ms) begin transaction
1225
- Processing by FontAwesomeTagHelperController#index as HTML
1226
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1227
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1228
-  (0.0ms) rollback transaction
1229
-  (0.0ms) begin transaction
1230
- Processing by FontAwesomeTagHelperController#index as HTML
1231
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1232
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1233
-  (0.0ms) rollback transaction
1234
-  (0.0ms) begin transaction
1235
- Processing by FontAwesomeTagHelperController#index as HTML
1236
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1237
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1238
-  (0.0ms) rollback transaction
1239
-  (0.1ms) begin transaction
1240
- Processing by FontAwesomeTagHelperController#index as HTML
1241
- Parameters: {"tag"=>"search"}
1242
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1243
-  (0.0ms) rollback transaction
1244
-  (0.0ms) begin transaction
1245
-  (0.0ms) rollback transaction
1246
- Connecting to database specified by database.yml
1247
-  (0.2ms) begin transaction
1248
- Processing by FontAwesomeTagHelperController#index as HTML
1249
- Parameters: {"tag"=>"searcher", "options"=>{"id"=>"search-box", "name"=>"search"}}
1250
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1251
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1252
-  (0.1ms) rollback transaction
1253
-  (0.0ms) begin transaction
1254
- Processing by FontAwesomeTagHelperController#index as HTML
1255
- Parameters: {"tag"=>"search"}
1256
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1257
-  (0.0ms) rollback transaction
1258
-  (0.0ms) begin transaction
1259
- Processing by FontAwesomeTagHelperController#index as HTML
1260
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1261
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1262
-  (0.0ms) rollback transaction
1263
-  (0.0ms) begin transaction
1264
- Processing by FontAwesomeTagHelperController#index as HTML
1265
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1266
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1267
-  (0.0ms) rollback transaction
1268
-  (0.0ms) begin transaction
1269
- Processing by FontAwesomeTagHelperController#index as HTML
1270
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1271
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1272
-  (0.0ms) rollback transaction
1273
-  (0.0ms) begin transaction
1274
- Processing by FontAwesomeTagHelperController#index as HTML
1275
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1276
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1277
-  (0.0ms) rollback transaction
1278
-  (0.0ms) begin transaction
1279
- Processing by FontAwesomeTagHelperController#index as HTML
1280
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1281
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1282
-  (0.0ms) rollback transaction
1283
-  (0.0ms) begin transaction
1284
- Processing by FontAwesomeTagHelperController#index as HTML
1285
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1286
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1287
-  (0.0ms) rollback transaction
1288
-  (0.0ms) begin transaction
1289
- Processing by FontAwesomeTagHelperController#index as HTML
1290
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1291
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1292
-  (0.0ms) rollback transaction
1293
-  (0.0ms) begin transaction
1294
- Processing by FontAwesomeTagHelperController#index as HTML
1295
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1296
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1297
-  (0.0ms) rollback transaction
1298
-  (0.0ms) begin transaction
1299
- Processing by FontAwesomeTagHelperController#index as HTML
1300
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1301
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1302
-  (0.0ms) rollback transaction
1303
-  (0.0ms) begin transaction
1304
- Processing by FontAwesomeTagHelperController#index as HTML
1305
- Parameters: {"tag"=>"search"}
1306
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1307
-  (0.0ms) rollback transaction
1308
-  (0.0ms) begin transaction
1309
-  (0.0ms) rollback transaction
1310
- Connecting to database specified by database.yml
1311
-  (0.2ms) begin transaction
1312
- Processing by FontAwesomeTagHelperController#index as HTML
1313
- Parameters: {"tag"=>"searcher", "options"=>{"id"=>"searcher-box", "name"=>"searcher"}}
1314
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1315
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1316
-  (0.0ms) rollback transaction
1317
-  (0.0ms) begin transaction
1318
- Processing by FontAwesomeTagHelperController#index as HTML
1319
- Parameters: {"tag"=>"search"}
1320
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1321
-  (0.0ms) rollback transaction
1322
-  (0.0ms) begin transaction
1323
- Processing by FontAwesomeTagHelperController#index as HTML
1324
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1325
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1326
-  (0.0ms) rollback transaction
1327
-  (0.0ms) begin transaction
1328
- Processing by FontAwesomeTagHelperController#index as HTML
1329
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1330
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1331
-  (0.0ms) rollback transaction
1332
-  (0.0ms) begin transaction
1333
- Processing by FontAwesomeTagHelperController#index as HTML
1334
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1335
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1336
-  (0.0ms) rollback transaction
1337
-  (0.0ms) begin transaction
1338
- Processing by FontAwesomeTagHelperController#index as HTML
1339
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1340
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1341
-  (0.0ms) rollback transaction
1342
-  (0.0ms) begin transaction
1343
- Processing by FontAwesomeTagHelperController#index as HTML
1344
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1345
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1346
-  (0.0ms) rollback transaction
1347
-  (0.0ms) begin transaction
1348
- Processing by FontAwesomeTagHelperController#index as HTML
1349
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1350
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1351
-  (0.0ms) rollback transaction
1352
-  (0.0ms) begin transaction
1353
- Processing by FontAwesomeTagHelperController#index as HTML
1354
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1355
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1356
-  (0.0ms) rollback transaction
1357
-  (0.0ms) begin transaction
1358
- Processing by FontAwesomeTagHelperController#index as HTML
1359
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1360
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1361
-  (0.0ms) rollback transaction
1362
-  (0.0ms) begin transaction
1363
- Processing by FontAwesomeTagHelperController#index as HTML
1364
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1365
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1366
-  (0.0ms) rollback transaction
1367
-  (0.0ms) begin transaction
1368
- Processing by FontAwesomeTagHelperController#index as HTML
1369
- Parameters: {"tag"=>"search"}
1370
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1371
-  (0.0ms) rollback transaction
1372
-  (0.0ms) begin transaction
1373
-  (0.0ms) rollback transaction
1374
- Connecting to database specified by database.yml
1375
-  (0.2ms) begin transaction
1376
- Processing by FontAwesomeTagHelperController#index as HTML
1377
- Parameters: {"tag"=>"searcher", "options"=>{"id"=>"searcher-box", "name"=>"searcher"}}
1378
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1379
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1380
-  (0.1ms) rollback transaction
1381
-  (0.0ms) begin transaction
1382
- Processing by FontAwesomeTagHelperController#index as HTML
1383
- Parameters: {"tag"=>"search"}
1384
- Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1385
-  (0.0ms) rollback transaction
1386
-  (0.1ms) begin transaction
1387
- Processing by FontAwesomeTagHelperController#index as HTML
1388
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1389
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1390
-  (0.0ms) rollback transaction
1391
-  (0.1ms) begin transaction
1392
- Processing by FontAwesomeTagHelperController#index as HTML
1393
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1394
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1395
-  (0.0ms) rollback transaction
1396
-  (0.0ms) begin transaction
1397
- Processing by FontAwesomeTagHelperController#index as HTML
1398
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1399
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1400
-  (0.0ms) rollback transaction
1401
-  (0.0ms) begin transaction
1402
- Processing by FontAwesomeTagHelperController#index as HTML
1403
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1404
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1405
-  (0.0ms) rollback transaction
1406
-  (0.0ms) begin transaction
1407
- Processing by FontAwesomeTagHelperController#index as HTML
1408
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1409
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1410
-  (0.0ms) rollback transaction
1411
-  (0.0ms) begin transaction
1412
- Processing by FontAwesomeTagHelperController#index as HTML
1413
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1414
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1415
-  (0.0ms) rollback transaction
1416
-  (0.0ms) begin transaction
1417
- Processing by FontAwesomeTagHelperController#index as HTML
1418
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1419
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1420
-  (0.0ms) rollback transaction
1421
-  (0.0ms) begin transaction
1422
- Processing by FontAwesomeTagHelperController#index as HTML
1423
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1424
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1425
-  (0.0ms) rollback transaction
1426
-  (0.0ms) begin transaction
1427
- Processing by FontAwesomeTagHelperController#index as HTML
1428
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1429
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1430
-  (0.1ms) rollback transaction
1431
-  (0.0ms) begin transaction
1432
- Processing by FontAwesomeTagHelperController#index as HTML
1433
- Parameters: {"tag"=>"search"}
1434
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1435
-  (0.0ms) rollback transaction
1436
-  (0.0ms) begin transaction
1437
-  (0.0ms) rollback transaction
1438
- Connecting to database specified by database.yml
1439
-  (0.2ms) begin transaction
1440
- Processing by FontAwesomeTagHelperController#index as HTML
1441
- Parameters: {"tag"=>"search-invalid", "options"=>{"id"=>"search-invalid-box", "name"=>"search_invalid"}}
1442
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1443
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1444
-  (0.0ms) rollback transaction
1445
-  (0.0ms) begin transaction
1446
- Processing by FontAwesomeTagHelperController#index as HTML
1447
- Parameters: {"tag"=>"search"}
1448
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1449
-  (0.0ms) rollback transaction
1450
-  (0.0ms) begin transaction
1451
- Processing by FontAwesomeTagHelperController#index as HTML
1452
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1453
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1454
-  (0.0ms) rollback transaction
1455
-  (0.0ms) begin transaction
1456
- Processing by FontAwesomeTagHelperController#index as HTML
1457
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1458
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1459
-  (0.0ms) rollback transaction
1460
-  (0.0ms) begin transaction
1461
- Processing by FontAwesomeTagHelperController#index as HTML
1462
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1463
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1464
-  (0.0ms) rollback transaction
1465
-  (0.0ms) begin transaction
1466
- Processing by FontAwesomeTagHelperController#index as HTML
1467
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1468
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1469
-  (0.0ms) rollback transaction
1470
-  (0.0ms) begin transaction
1471
- Processing by FontAwesomeTagHelperController#index as HTML
1472
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1473
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1474
-  (0.0ms) rollback transaction
1475
-  (0.0ms) begin transaction
1476
- Processing by FontAwesomeTagHelperController#index as HTML
1477
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1478
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1479
-  (0.0ms) rollback transaction
1480
-  (0.0ms) begin transaction
1481
- Processing by FontAwesomeTagHelperController#index as HTML
1482
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1483
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1484
-  (0.0ms) rollback transaction
1485
-  (0.0ms) begin transaction
1486
- Processing by FontAwesomeTagHelperController#index as HTML
1487
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1488
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1489
-  (0.0ms) rollback transaction
1490
-  (0.0ms) begin transaction
1491
- Processing by FontAwesomeTagHelperController#index as HTML
1492
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1493
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1494
-  (0.0ms) rollback transaction
1495
-  (0.0ms) begin transaction
1496
- Processing by FontAwesomeTagHelperController#index as HTML
1497
- Parameters: {"tag"=>"search"}
1498
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1499
-  (0.0ms) rollback transaction
1500
-  (0.0ms) begin transaction
1501
-  (0.0ms) rollback transaction
1502
- Connecting to database specified by database.yml
1503
-  (0.2ms) begin transaction
1504
- Processing by FontAwesomeTagHelperController#index as HTML
1505
- Parameters: {"tag"=>"search-invalid", "options"=>{"id"=>"search-invalid-box", "name"=>"search-invalid"}}
1506
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1507
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1508
-  (0.1ms) rollback transaction
1509
-  (0.0ms) begin transaction
1510
- Processing by FontAwesomeTagHelperController#index as HTML
1511
- Parameters: {"tag"=>"search"}
1512
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1513
-  (0.0ms) rollback transaction
1514
-  (0.0ms) begin transaction
1515
- Processing by FontAwesomeTagHelperController#index as HTML
1516
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1517
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1518
-  (0.0ms) rollback transaction
1519
-  (0.0ms) begin transaction
1520
- Processing by FontAwesomeTagHelperController#index as HTML
1521
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1522
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1523
-  (0.0ms) rollback transaction
1524
-  (0.0ms) begin transaction
1525
- Processing by FontAwesomeTagHelperController#index as HTML
1526
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1527
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1528
-  (0.0ms) rollback transaction
1529
-  (0.0ms) begin transaction
1530
- Processing by FontAwesomeTagHelperController#index as HTML
1531
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1532
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1533
-  (0.0ms) rollback transaction
1534
-  (0.0ms) begin transaction
1535
- Processing by FontAwesomeTagHelperController#index as HTML
1536
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1537
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1538
-  (0.0ms) rollback transaction
1539
-  (0.0ms) begin transaction
1540
- Processing by FontAwesomeTagHelperController#index as HTML
1541
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1542
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1543
-  (0.0ms) rollback transaction
1544
-  (0.0ms) begin transaction
1545
- Processing by FontAwesomeTagHelperController#index as HTML
1546
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1547
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1548
-  (0.0ms) rollback transaction
1549
-  (0.0ms) begin transaction
1550
- Processing by FontAwesomeTagHelperController#index as HTML
1551
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1552
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1553
-  (0.0ms) rollback transaction
1554
-  (0.0ms) begin transaction
1555
- Processing by FontAwesomeTagHelperController#index as HTML
1556
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1557
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1558
-  (0.0ms) rollback transaction
1559
-  (0.0ms) begin transaction
1560
- Processing by FontAwesomeTagHelperController#index as HTML
1561
- Parameters: {"tag"=>"search"}
1562
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1563
-  (0.0ms) rollback transaction
1564
-  (0.0ms) begin transaction
1565
-  (0.0ms) rollback transaction
1566
- Connecting to database specified by database.yml
1567
-  (0.2ms) begin transaction
1568
- Processing by FontAwesomeTagHelperController#index as HTML
1569
- Parameters: {"tag"=>"search-invalid", "options"=>{"id"=>"search-invalid-box", "name"=>"search-invalid"}}
1570
- Rendered font_awesome_tag_helper/index.html.erb within layouts/application (0.7ms)
1571
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1572
-  (0.1ms) rollback transaction
1573
-  (0.0ms) begin transaction
1574
- Processing by FontAwesomeTagHelperController#index as HTML
1575
- Parameters: {"tag"=>"search"}
1576
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1577
-  (0.0ms) rollback transaction
1578
-  (0.0ms) begin transaction
1579
- Processing by FontAwesomeTagHelperController#index as HTML
1580
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "size"=>"2x"}}
1581
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1582
-  (0.0ms) rollback transaction
1583
-  (0.0ms) begin transaction
1584
- Processing by FontAwesomeTagHelperController#index as HTML
1585
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search"}}
1586
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1587
-  (0.0ms) rollback transaction
1588
-  (0.0ms) begin transaction
1589
- Processing by FontAwesomeTagHelperController#index as HTML
1590
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>true}}
1591
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1592
-  (0.0ms) rollback transaction
1593
-  (0.0ms) begin transaction
1594
- Processing by FontAwesomeTagHelperController#index as HTML
1595
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"true"}}
1596
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1597
-  (0.0ms) rollback transaction
1598
-  (0.0ms) begin transaction
1599
- Processing by FontAwesomeTagHelperController#index as HTML
1600
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>true, "li"=>"yes", "list"=>"li", "rotate"=>"180", "flip"=>"horizontal"}}
1601
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1602
-  (0.0ms) rollback transaction
1603
-  (0.0ms) begin transaction
1604
- Processing by FontAwesomeTagHelperController#index as HTML
1605
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>false}}
1606
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1607
-  (0.0ms) rollback transaction
1608
-  (0.0ms) begin transaction
1609
- Processing by FontAwesomeTagHelperController#index as HTML
1610
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "width"=>"fixed", "large"=>"false"}}
1611
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1612
-  (0.0ms) rollback transaction
1613
-  (0.0ms) begin transaction
1614
- Processing by FontAwesomeTagHelperController#index as HTML
1615
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "popup"=>true, "flash"=>"Yes!", "hidden"=>"okay"}}
1616
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1617
-  (0.0ms) rollback transaction
1618
-  (0.0ms) begin transaction
1619
- Processing by FontAwesomeTagHelperController#index as HTML
1620
- Parameters: {"tag"=>"search", "options"=>{"id"=>"search-box", "name"=>"search", "size"=>"4x", "large"=>false, "border"=>"true", "pull"=>"left", "spin"=>true, "li"=>"false", "list"=>"li", "width"=>"fixed-width", "rotate"=>"180", "flip"=>"none"}}
1621
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1622
-  (0.0ms) rollback transaction
1623
-  (0.0ms) begin transaction
1624
- Processing by FontAwesomeTagHelperController#index as HTML
1625
- Parameters: {"tag"=>"search"}
1626
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1627
-  (0.0ms) rollback transaction
1628
-  (0.0ms) begin transaction
1629
-  (0.0ms) rollback transaction