Commit 1ce50b41782ddd9017b7413443e42493a9b37b4e

Authored by Victor Costa
2 parents 39a8005d 9d1d73d6

Merge branch 'master' into staging

debian/changelog
  1 +noosfero (1.4~rc3) jessie-test; urgency=medium
  2 +
  3 + * Noosfero 1.4 RC3
  4 +
  5 + -- Antonio Terceiro <terceiro@colivre.coop.br> Thu, 28 Jan 2016 16:58:32 -0200
  6 +
1 7 noosfero (1.4~rc2) jessie-test; urgency=medium
2 8  
3 9 * Noosfero 1.4 RC2
... ...
lib/noosfero/version.rb
1 1 module Noosfero
2 2 PROJECT = 'noosfero'
3   - VERSION = '1.4~rc2'
  3 + VERSION = '1.4~rc3'
4 4 end
5 5  
6 6 root = File.expand_path(File.dirname(__FILE__) + '/../..')
... ...
plugins/oauth_client/lib/ext/user.rb
... ... @@ -9,6 +9,7 @@ class User
9 9 after_create :store_oauth_providers
10 10  
11 11 def initialize_with_oauth_client(attributes = {}, options = {})
  12 + attributes ||= {}
12 13 @oauth_providers = attributes.delete(:oauth_providers) || []
13 14 initialize_without_oauth_client(attributes, options)
14 15 end
... ...
plugins/oauth_client/test/functional/oauth_client_plugin_account_controller_test.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +require 'test_helper'
  2 +
  3 +class AccountControllerTest < ActionController::TestCase
  4 +
  5 + should 'render signup page' do
  6 + get :signup
  7 + end
  8 +
  9 +end
... ...