fixes conflicts

This commit is contained in:
Juanjo Bazán
2015-08-07 10:12:58 +02:00
29 changed files with 430 additions and 124 deletions

View File

@@ -51,6 +51,7 @@ group :development, :test do
gem 'launchy' gem 'launchy'
gem 'quiet_assets' gem 'quiet_assets'
gem 'letter_opener_web', '~> 1.2.0' gem 'letter_opener_web', '~> 1.2.0'
gem 'i18n-tasks'
end end
group :test do group :test do

View File

@@ -94,6 +94,10 @@ GEM
docile (1.1.5) docile (1.1.5)
domain_name (0.5.24) domain_name (0.5.24)
unf (>= 0.0.5, < 1.0.0) unf (>= 0.0.5, < 1.0.0)
easy_translate (0.5.0)
json
thread
thread_safe
erubis (2.7.0) erubis (2.7.0)
execjs (2.5.2) execjs (2.5.2)
factory_girl (4.5.0) factory_girl (4.5.0)
@@ -106,9 +110,18 @@ GEM
sass (>= 3.3.0, < 3.5) sass (>= 3.3.0, < 3.5)
globalid (0.3.5) globalid (0.3.5)
activesupport (>= 4.1.0) activesupport (>= 4.1.0)
highline (1.7.3)
http-cookie (1.0.2) http-cookie (1.0.2)
domain_name (~> 0.5) domain_name (~> 0.5)
i18n (0.7.0) i18n (0.7.0)
i18n-tasks (0.8.6)
activesupport
easy_translate (>= 0.5.0)
erubis
highline
i18n
term-ansicolor
terminal-table (>= 1.5.1)
jbuilder (2.3.1) jbuilder (2.3.1)
activesupport (>= 3.0.0, < 5) activesupport (>= 3.0.0, < 5)
multi_json (~> 1.2) multi_json (~> 1.2)
@@ -221,7 +234,9 @@ GEM
sprockets (>= 2.8, < 4.0) sprockets (>= 2.8, < 4.0)
term-ansicolor (1.3.2) term-ansicolor (1.3.2)
tins (~> 1.0) tins (~> 1.0)
terminal-table (1.5.2)
thor (0.19.1) thor (0.19.1)
thread (0.2.2)
thread_safe (0.3.5) thread_safe (0.3.5)
tilt (1.4.1) tilt (1.4.1)
tins (1.5.4) tins (1.5.4)
@@ -264,6 +279,7 @@ DEPENDENCIES
devise devise
factory_girl_rails factory_girl_rails
foundation-rails foundation-rails
i18n-tasks
jbuilder (~> 2.0) jbuilder (~> 2.0)
jquery-rails jquery-rails
launchy launchy
@@ -283,4 +299,4 @@ DEPENDENCIES
web-console (~> 2.0) web-console (~> 2.0)
BUNDLED WITH BUNDLED WITH
1.10.5 1.10.6

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -673,14 +673,45 @@ header {
// 08.1. Login // 08.1. Login
// - - - - - - - - - - - - // - - - - - - - - - - - -
.auth-page {
background: url('auth_bg.jpg');
margin-top: $line-height;
@media (min-width: 480px) {
margin-top: $line-height*2;
}
h1 {
a {
color: white;
font-family: 'Lato';
font-size: rem-calc(20);
font-weight: lighter;
line-height: $line-height*4;
padding-left: rem-calc(6);
span {
font-size: rem-calc(16);
font-weight: lighter;
vertical-align: top;
}
@media (min-width: 480px) {
font-size: rem-calc(30);
span {
font-size: rem-calc(20);
}
}
}
}
}
.auth { .auth {
background: $background;
box-shadow: 0px -4px 5px $background;
min-height: $line-height*20; min-height: $line-height*20;
.panel { .panel {
background: white; background: white;
margin-top: $line-height*2;
h1 { h1 {
font-size: rem-calc(30); font-size: rem-calc(30);
@@ -725,7 +756,6 @@ form {
} }
} }
// 10. Alerts // 10. Alerts
// - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -755,5 +785,3 @@ form {
color: $alert-color; color: $alert-color;
} }
} }

View File

@@ -17,7 +17,7 @@ class AccountController < ApplicationController
end end
def account_params def account_params
params.require(:account).permit(:first_name, :last_name) params.require(:account).permit(:first_name, :last_name, :nickname, :use_nickname)
end end
end end

View File

@@ -5,6 +5,7 @@ class ApplicationController < ActionController::Base
respond_to :html respond_to :html
before_action :set_locale before_action :set_locale
layout :set_layout
# Prevent CSRF attacks by raising an exception. # Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead. # For APIs, you may want to use :null_session instead.
@@ -22,8 +23,17 @@ class ApplicationController < ActionController::Base
I18n.locale = session[:locale] I18n.locale = session[:locale]
end end
def set_layout
if devise_controller?
"devise"
else
"application"
end
end
def verify_captcha?(resource) def verify_captcha?(resource)
return true unless recaptcha_keys? return true unless recaptcha_keys?
verify_recaptcha(model: resource) verify_recaptcha(model: resource)
end end
end end

View File

@@ -15,7 +15,7 @@ class RegistrationsController < Devise::RegistrationsController
private private
def sign_up_params def sign_up_params
params.require(:user).permit(:first_name, :last_name, :email, :password, :password_confirmation) params.require(:user).permit(:first_name, :last_name, :email, :password, :password_confirmation, :use_nickname, :nickname)
end end
end end

View File

@@ -4,8 +4,12 @@ class User < ActiveRecord::Base
acts_as_voter acts_as_voter
validates :first_name, presence: true, unless: :use_nickname?
validates :last_name, presence: true, unless: :use_nickname?
validates :nickname, presence: true, if: :use_nickname?
def name def name
"#{first_name} #{last_name}" use_nickname? ? nickname : "#{first_name} #{last_name}"
end end
def votes_on_debates(debates_ids = []) def votes_on_debates(debates_ids = [])

View File

@@ -1,11 +1,20 @@
<h1><%= t("account.show.title") %></h1> <h1><%= t("account.show.title") %></h1>
<%= form_for @account, as: :account, url: account_path do |f| %> <%= form_for @account, as: :account, url: account_path do |f| %>
<%= f.label :first_name, t("account.show.first_name_label") %> <%= f.label :first_name, t("account.show.first_name_label") %>
<%= f.text_field :first_name %> <%= f.text_field :first_name %>
<%= f.label :last_name, t("account.show.last_name_label") %> <%= f.label :last_name, t("account.show.last_name_label") %>
<%= f.text_field :last_name %> <%= f.text_field :last_name %>
<div>
<%= f.check_box :use_nickname %>
<%= t("account.show.use_nickname_label") %>
</div>
<%= f.label :nickname, t("account.show.nickname_label") %>
<%= f.text_field :nickname %>
<%= f.submit t("account.show.save_changes_submit"), class: "button radius" %> <%= f.submit t("account.show.save_changes_submit"), class: "button radius" %>
<% end %> <% end %>

View File

@@ -1,16 +1,24 @@
<h2><%= t("devise_views.confirmations.title") %></h2> <div class="auth row">
<div class="small-12 medium-8 large-5 column small-centered">
<div class="panel">
<h1 class="text-center"><%= t("devise_views.confirmations.title") %></h1>
<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> <%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %>
<%= devise_error_messages! %> <%= devise_error_messages! %>
<div class="field"> <div class="row">
<%= f.label :email, t("devise_views.confirmations.email_label") %><br /> <div class="small-12 columns">
<%= f.email_field :email, autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %> <%= f.label :email, t("devise_views.confirmations.email_label") %>
<%= f.email_field :email, autofocus: true, placeholder: t("devise_views.confirmations.email_label"), value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
</div> </div>
<div class="actions"> <div class="small-12 columns">
<%= f.submit(t("devise_views.confirmations.submit"), class: "button radius") %> <%= f.submit(t("devise_views.confirmations.submit"), class: "button radius expand") %>
</div>
</div> </div>
<% end %> <% end %>
<%= render "devise/shared/links" %> <%= render "devise/shared/links" %>
</div>
</div>
</div>

View File

@@ -1,22 +1,17 @@
<div class="row-full auth"> <div class="row auth">
<div class="row"> <div class="small-12 medium-8 large-5 column small-centered">
<div class="small-12 medium-8 large-8 column small-centered">
<div class="panel"> <div class="panel">
<h1 class="text-center"><%= t("devise_views.passwords.new.title") %></h1> <h1 class="text-center"><%= t("devise_views.passwords.new.title") %></h1>
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> <%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
<%= devise_error_messages! %> <%= devise_error_messages! %>
<div class="row"> <div class="row">
<div class="small-12 column"> <div class="small-12 column">
<%= f.label :email, t("devise_views.passwords.new.email_label") %> <%= f.label :email, t("devise_views.passwords.new.email_label") %>
<%= f.email_field :email, autofocus: true, placeholder: t("devise_views.passwords.new.email_label") %> <%= f.email_field :email, autofocus: true, placeholder: t("devise_views.passwords.new.email_label") %>
</div> </div>
</div>
<div class="row">
<div class="small-12 column text-center"> <div class="small-12 column text-center">
<%= f.submit t("devise_views.passwords.new.send_submit"), class: "button radius" %> <%= f.submit t("devise_views.passwords.new.send_submit"), class: "button radius expand" %>
</div> </div>
</div> </div>
<% end %> <% end %>
@@ -25,4 +20,3 @@
</div> </div>
</div> </div>
</div> </div>
</div>

View File

@@ -21,6 +21,20 @@
</div> </div>
</div> </div>
<div class="row">
<div class="small-12 columns">
<%= f.check_box :use_nickname %>
<%= t("devise_views.registrations.new.use_nickname_label") %>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<%= f.label :nickname, t("devise_views.registrations.new.nickname_label") %>
<%= f.text_field :nickname, placeholder: t("devise_views.registrations.new.nickname_label") %>
</div>
</div>
<div class="row"> <div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
<%= f.label :email, t("devise_views.registrations.new.email_label") %> <%= f.label :email, t("devise_views.registrations.new.email_label") %>

View File

@@ -1,5 +1,4 @@
<div class="row-full auth"> <div class="auth row">
<div class="row">
<div class="small-12 medium-8 large-5 column small-centered"> <div class="small-12 medium-8 large-5 column small-centered">
<div class="panel"> <div class="panel">
<h1 class="text-center"><%= t("devise_views.sessions.new.title") %></h1> <h1 class="text-center"><%= t("devise_views.sessions.new.title") %></h1>
@@ -10,25 +9,19 @@
<%= f.label :email, t("devise_views.sessions.new.email_label") %> <%= f.label :email, t("devise_views.sessions.new.email_label") %>
<%= f.email_field :email, autofocus: true, placeholder: t("devise_views.sessions.new.email_label") %> <%= f.email_field :email, autofocus: true, placeholder: t("devise_views.sessions.new.email_label") %>
</div> </div>
</div>
<div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
<%= f.label :password, t("devise_views.sessions.new.password_label") %> <%= f.label :password, t("devise_views.sessions.new.password_label") %>
<%= f.password_field :password, autocomplete: "off", placeholder: t("devise_views.sessions.new.password_label") %> <%= f.password_field :password, autocomplete: "off", placeholder: t("devise_views.sessions.new.password_label") %>
</div> </div>
</div>
<% if devise_mapping.rememberable? -%> <% if devise_mapping.rememberable? -%>
<div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
<%= f.check_box :remember_me %> <%= f.check_box :remember_me %>
<%= f.label :remember_me, t("devise_views.sessions.new.remember_me") %> <%= f.label :remember_me, t("devise_views.sessions.new.remember_me") %>
</div> </div>
</div>
<% end -%> <% end -%>
<div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
<%= f.submit(t("devise_views.sessions.new.submit"), class: "button radius expand") %> <%= f.submit(t("devise_views.sessions.new.submit"), class: "button radius expand") %>
</div> </div>
@@ -39,4 +32,3 @@
</div> </div>
</div> </div>
</div> </div>
</div>

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= content_for?(:title) ? yield(:title) : "Participación" %></title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "vendor/modernizr" %>
<%= javascript_include_tag "application", 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
<script src="https://www.google.com/recaptcha/api.js?hl=<%= I18n.locale %>"></script>
</head>
<body class="auth-page">
<% if notice %>
<p class="alert-box success"><%= notice %></p>
<% end %>
<% if alert %>
<p class="alert-box"><%= alert %></p>
<% end %>
<div class="row">
<div class="small-12 medium-8 large-5 column small-centered">
<h1>
<%= link_to root_path do %>
<%= image_tag('logo_madrid_white.png', class: 'left', size: '96x96') %>
<%= t("layouts.header.open_gov", open: "<strong>#{t('layouts.header.open')}</strong>").html_safe %> | <span><%= t("layouts.header.participation") %></span>
<% end %>
</h1>
</div>
</div>
<%= yield %>
</body>
</html>

View File

@@ -20,6 +20,11 @@ module Participacion
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
config.i18n.default_locale = :es config.i18n.default_locale = :es
config.i18n.available_locales = [:en, :es]
# Add the new directories to the locales load path
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
config.assets.paths << Rails.root.join("app", "assets", "fonts") config.assets.paths << Rails.root.join("app", "assets", "fonts")
# Do not swallow errors in after_commit/after_rollback callbacks. # Do not swallow errors in after_commit/after_rollback callbacks.

106
config/i18n-tasks.yml Normal file
View File

@@ -0,0 +1,106 @@
# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks
# The "main" locale.
base_locale: en
## All available locales are inferred from the data by default. Alternatively, specify them explicitly:
# locales: [es, fr]
## Reporting locale, default: en. Available: en, ru.
# internal_locale: en
# Read and write translations.
data:
## Translations are read from the file system. Supported format: YAML, JSON.
## Provide a custom adapter:
# adapter: I18n::Tasks::Data::FileSystem
# Locale files or `File.find` patterns where translations are read from:
read:
## Default:
# - config/locales/%{locale}.yml
## More files:
# - config/locales/**/*.%{locale}.yml
## Another gem (replace %#= with %=):
# - "<%#= %x[bundle show vagrant].chomp %>/templates/locales/%{locale}.yml"
- config/locales/%{locale}.yml
- config/locales/devise_views.%{locale}.yml
- config/locales/responders.%{locale}.yml
# Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:
# `i18n-tasks normalize -p` will force move the keys according to these rules
write:
## For example, write devise and simple form keys to their respective files:
# - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']
## Catch-all default:
# - config/locales/%{locale}.yml
## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.
# router: convervative_router
yaml:
write:
# do not wrap lines at 80 characters
line_width: -1
## Pretty-print JSON:
# json:
# write:
# indent: ' '
# space: ' '
# object_nl: "\n"
# array_nl: "\n"
# Find translate calls
search:
## Paths or `File.find` patterns to search in:
# paths:
# - app/
## Root directories for relative keys resolution.
# relative_roots:
# - app/controllers
# - app/helpers
# - app/mailers
# - app/presenters
# - app/views
## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:
## %w(*.jpg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less *.yml *.json)
exclude:
- app/assets/images
- app/assets/fonts
## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:
## If specified, this settings takes priority over `exclude`, but `exclude` still applies.
# include: ["*.rb", "*.html.slim"]
## Default scanner finds t() and I18n.t() calls.
# scanner: I18n::Tasks::Scanners::PatternWithScopeScanner
## Google Translate
# translation:
# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate
# api_key: "AbC-dEf5"
## Do not consider these keys missing:
# ignore_missing:
# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
# - '{devise,simple_form}.*'
## Consider these keys used:
# ignore_unused:
# - 'activerecord.attributes.*'
# - '{devise,kaminari,will_paginate}.*'
# - 'simple_form.{yes,no}'
# - 'simple_form.{placeholders,hints,labels}.*'
# - 'simple_form.{error_notification,required}.:'
## Exclude these keys from the `i18n-tasks eq-base' report:
# ignore_eq_base:
# all:
# - common.ok
# fr,es:
# - common.brand
## Ignore these keys completely:
# ignore:
# - kaminari.*

View File

@@ -1,6 +0,0 @@
I18n.available_locales = [:en, :es]
I18n.default_locale = :es
# Add the new directories to the locales load path
I18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]

View File

@@ -56,6 +56,8 @@ en:
title: "Sign up" title: "Sign up"
first_name_label: "First name" first_name_label: "First name"
last_name_label: "Last name" last_name_label: "Last name"
nickname_label: "Nickname"
use_nickname_label: "Use nickname"
email_label: "Email" email_label: "Email"
password_label: "Password" password_label: "Password"
min_length: "(%{min} characters minimum)" min_length: "(%{min} characters minimum)"

View File

@@ -55,7 +55,9 @@ es:
new: new:
title: "Registrarse" title: "Registrarse"
first_name_label: "Nombre" first_name_label: "Nombre"
last_name_label: "Apellido" last_name_label: "Apellidos"
nickname_label: "Pseudónimo"
use_nickname_label: "Usar pseudónimo"
email_label: "Email" email_label: "Email"
password_label: "Contraseña" password_label: "Contraseña"
min_length: "(mínimo %{min} caracteres)" min_length: "(mínimo %{min} caracteres)"

View File

@@ -20,9 +20,6 @@ en:
votes: votes votes: votes
comment: Comment comment: Comment
comments: Comments comments: Comments
agree: I agree
disagree: I disagree
leave_comment: Comment
form: form:
error: error error: error
errors: errors errors: errors
@@ -48,7 +45,7 @@ en:
new: new:
publish_new: Publish new debate publish_new: Publish new debate
back_link: Back back_link: Back
recommendations_tite: Tips for creating a debate recommendations_title: Tips for creating a debate
recommendation_one: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore" recommendation_one: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore"
recommendation_two: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore" recommendation_two: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore"
recommendation_three: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore" recommendation_three: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore"
@@ -61,12 +58,18 @@ en:
agree: I agree agree: I agree
disagree: I disagree disagree: I disagree
supports: Supports supports: Supports
notice_thanks: "Thanks for voting."
notice_already_registered: "Your vote is already registered."
account: account:
show: show:
title: "My account" title: "My account"
save_changes_submit: "Save changes" save_changes_submit: "Save changes"
change_credentials_link: "Change my credentials"
first_name_label: "First Name"
last_name_label: "Last Name"
use_nickname_label: "Use nickname"
nickname_label: "Nickname"
recaptcha:
errors:
verification_failed: "The captcha verification failed"
shared: shared:
tags_cloud: tags_cloud:
tags: Tags tags: Tags

View File

@@ -20,9 +20,6 @@ es:
votes: votos votes: votos
comment: Comentario comment: Comentario
comments: Comentarios comments: Comentarios
agree: Estoy de acuerdo
disagree: No estoy de acuerdo
leave_comment: Comentar
form: form:
error: error error: error
errors: errores errors: errores
@@ -61,12 +58,19 @@ es:
agree: Estoy de acuerdo agree: Estoy de acuerdo
disagree: No estoy de acuerdo disagree: No estoy de acuerdo
supports: Apoyos supports: Apoyos
notice_thanks: "Gracias por votar."
notice_already_registered: "Tu voto ya ha sido registrado."
account: account:
show: show:
title: "Mi cuenta" title: "Mi cuenta"
save_changes_submit: "Guardar cambios" save_changes_submit: "Guardar cambios"
change_credentials_link: "Cambiar mi contraseña"
first_name_label: "Nombre"
last_name_label: "Apellidos"
use_nickname_label: "Usar pseudónimo"
nickname_label: "Pseudónimo"
recaptcha:
errors:
verification_failed: "La verificación por captcha falló"
shared: shared:
tags_cloud: tags_cloud:
tags: Etiquetas tags: Etiquetas

View File

@@ -4,12 +4,12 @@ en:
create: create:
notice: '%{resource_name} was successfully created.' notice: '%{resource_name} was successfully created.'
# alert: '%{resource_name} could not be created.' # alert: '%{resource_name} could not be created.'
update: # update:
notice: '%{resource_name} was successfully updated.' # notice: '%{resource_name} was successfully updated.'
# alert: '%{resource_name} could not be updated.' # alert: '%{resource_name} could not be updated.'
destroy: # destroy:
notice: '%{resource_name} was successfully destroyed.' # notice: '%{resource_name} was successfully destroyed.'
alert: '%{resource_name} could not be destroyed.' # alert: '%{resource_name} could not be destroyed.'
save_changes: save_changes:
notice: "Saved" notice: "Saved"

View File

@@ -3,10 +3,10 @@ es:
actions: actions:
create: create:
notice: "%{resource_name} creado correctamente." notice: "%{resource_name} creado correctamente."
update: # update:
notice: "%{resource_name} actualizado correctamente." # notice: "%{resource_name} actualizado correctamente."
destroy: # destroy:
notice: "%{resource_name} borrado correctamente." # notice: "%{resource_name} borrado correctamente."
alert: "%{resource_name} no ha podido ser borrado." # alert: "%{resource_name} no ha podido ser borrado."
save_changes: save_changes:
notice: "Cambios guardados" notice: "Cambios guardados"

View File

@@ -0,0 +1,5 @@
class AddNicknameToUser < ActiveRecord::Migration
def change
add_column :users, :nickname, :string
end
end

View File

@@ -0,0 +1,5 @@
class AddUseNicknameToUsers < ActiveRecord::Migration
def change
add_column :users, :use_nickname, :boolean, null: false, default: false
end
end

View File

@@ -11,7 +11,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150806111435) do ActiveRecord::Schema.define(version: 20150806140048) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql" enable_extension "plpgsql"
@@ -80,6 +80,8 @@ ActiveRecord::Schema.define(version: 20150806111435) do
t.datetime "confirmed_at" t.datetime "confirmed_at"
t.datetime "confirmation_sent_at" t.datetime "confirmation_sent_at"
t.string "unconfirmed_email" t.string "unconfirmed_email"
t.string "nickname"
t.boolean "use_nickname", default: false, null: false
end end
add_index "users", ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree add_index "users", ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree

17
spec/i18n_spec.rb Normal file
View File

@@ -0,0 +1,17 @@
require 'i18n/tasks'
RSpec.describe 'I18n' do
let(:i18n) { I18n::Tasks::BaseTask.new }
let(:missing_keys) { i18n.missing_keys }
let(:unused_keys) { i18n.unused_keys }
it 'does not have missing keys' do
expect(missing_keys).to be_empty,
"Missing #{missing_keys.leaves.count} i18n keys, run `i18n-tasks missing' to show them"
end
it 'does not have unused keys' do
expect(unused_keys).to be_empty,
"#{unused_keys.leaves.count} unused i18n keys, run `i18n-tasks unused' to show them"
end
end

View File

@@ -2,11 +2,11 @@ require 'rails_helper'
describe User do describe User do
describe "#votes_on_debates" do
before(:each) do before(:each) do
@user = create(:user) @user = create(:user)
end end
describe "#votes_on_debates" do
it "should return {} if no debate" do it "should return {} if no debate" do
expect(@user.votes_on_debates()).to eq({}) expect(@user.votes_on_debates()).to eq({})
expect(@user.votes_on_debates([])).to eq({}) expect(@user.votes_on_debates([])).to eq({})
@@ -27,4 +27,50 @@ describe User do
expect(voted[debate3.id]).to eq(false) expect(voted[debate3.id]).to eq(false)
end end
end end
subject { build(:user) }
it "is valid" do
expect(subject).to be_valid
end
describe 'use_nickname' do
describe 'when true' do
before { subject.use_nickname = true }
it "activates the validation of nickname" do
subject.nickname = nil
expect(subject).to_not be_valid
subject.nickname = "dredd"
expect(subject).to be_valid
end
it "calculates the name using the nickname" do
subject.nickname = "dredd"
expect(subject.name).to eq("dredd")
end
end
describe 'when false' do
before { subject.use_nickname = false }
it "activates the validation of first_name and last_name" do
subject.first_name = nil
subject.last_name = nil
expect(subject).to_not be_valid
subject.first_name = "Joseph"
subject.last_name = "Dredd"
expect(subject).to be_valid
end
it "calculates the name using first_name and last_name" do
subject.first_name = "Joseph"
subject.last_name = "Dredd"
expect(subject.name).to eq("Joseph Dredd")
end
end
end
end end