Merge branch 'hotfix/0.5.1'

This commit is contained in:
Geremia Taglialatela 2013-06-13 18:41:45 +02:00
commit 0fe1c80c2b
3 changed files with 11 additions and 3 deletions

View File

@ -1,8 +1,16 @@
Changelog
=========
0.5.1
-----
* Fixed specs
* Fixed changelog
0.5.0
-----
* Puma server
* Bootstrap 2.3.2
* Fontawesome 3.2.0
0.4.1
-----

View File

@ -1 +1 @@
0.5.0
0.5.1

View File

@ -1,8 +1,8 @@
require 'spec_helper'
describe 'Home' do
it "shows Hello World message" do
it "has Hello World in title" do
visit root_path
expect(page).to have_content I18n.t('hello')
expect(page).to have_title I18n.t('hello')
end
end