<%= notice %>
<%= alert %>
@@ -32,4 +40,4 @@diff --git a/Gemfile.lock b/Gemfile.lock
index fd905dc..53fc807 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -60,7 +60,7 @@ GEM
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.18)
- multi_json (1.3.1)
+ multi_json (1.3.2)
orm_adapter (0.0.7)
paperclip (3.0.2)
activemodel (>= 3.0.0)
@@ -95,7 +95,7 @@ GEM
rake (0.9.2.2)
rdoc (3.12)
json (~> 1.4)
- sass (3.1.15)
+ sass (3.1.16)
sass-rails (3.2.5)
railties (~> 3.2.0)
sass (>= 3.1.10)
@@ -104,7 +104,7 @@ GEM
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
- sqlite3 (1.3.5)
+ sqlite3 (1.3.6)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
diff --git a/app/assets/stylesheets/planet.css b/app/assets/stylesheets/planet.css
index ead053a..a4f4c8d 100644
--- a/app/assets/stylesheets/planet.css
+++ b/app/assets/stylesheets/planet.css
@@ -104,8 +104,9 @@
float: left;
padding-top: 1em;
padding-left: 1em;
+ padding-right: 1em;
padding-bottom: 1em;
- width: 8em; /* Ajuste de borde izquierdo */
+ width: 14em; /* Ajuste de borde izquierdo */
background: #446;
}
diff --git a/app/controllers/planet_controller.rb b/app/controllers/planet_controller.rb
index a8636bd..041e512 100644
--- a/app/controllers/planet_controller.rb
+++ b/app/controllers/planet_controller.rb
@@ -29,5 +29,9 @@ def contact
# Método que define una acción vacía del controlador
def ejemplo
end
-
+ # Acción vacía para la búsqueda
+ def search
+ end
+ def doc_app_index_html
+ end
end
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index e4c9e36..4025431 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -25,6 +25,14 @@
<%= link_to "Viajes", trips_path %>
<%= link_to "Contact", planet_contact_path %>
<%= link_to "Sign up", new_user_registration_path unless current_user %>
+ <%= link_to "Documentation", "http://localhost:3000/doc/app/index.html" %>
+
<%= notice %>
<%= alert %>
@@ -32,4 +40,4 @@