fixing conflicts [#5]

This commit is contained in:
rgarcia
2015-07-16 20:18:33 +02:00
6 changed files with 1512 additions and 13 deletions

View File

@@ -33,6 +33,7 @@ gem 'sdoc', '~> 0.4.0', group: :doc
# gem 'capistrano-rails', group: :development
gem "responders"
gem 'foundation-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console

View File

@@ -65,6 +65,9 @@ GEM
factory_girl_rails (4.5.0)
factory_girl (~> 4.5.0)
railties (>= 3.0.0)
foundation-rails (5.5.2.1)
railties (>= 3.1.0)
sass (>= 3.3.0, < 3.5)
globalid (0.3.5)
activesupport (>= 4.1.0)
i18n (0.7.0)
@@ -178,6 +181,7 @@ DEPENDENCIES
capybara
coffee-rails (~> 4.1.0)
factory_girl_rails
foundation-rails
jbuilder (~> 2.0)
jquery-rails
rails (= 4.2.3)

View File

@@ -12,5 +12,8 @@
//
//= require jquery
//= require jquery_ujs
//= require foundation
//= require turbolinks
//= require_tree .
$(function(){ $(document).foundation(); });

View File

@@ -12,4 +12,6 @@
*
*= require_tree .
*= require_self
*= require foundation_and_overrides
*/

File diff suppressed because it is too large Load Diff

View File

@@ -1,17 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Participacion</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<body style="margin-left:50px">
<p id="notice"><%= notice %></p>
<div>
<title><%= content_for?(:title) ? yield(:title) : "foundation-rails" %></title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "vendor/modernizr" %>
<%= javascript_include_tag "application", 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body style="margin-left:50px">
<%= yield %>
</div>
</body>
</body>
</html>