readme
changelog
version
This commit is contained in:
Cesidio Di Landa
2013-04-19 20:00:54 +02:00
parent 3e96be498e
commit f070fa45d4
6 changed files with 89 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
Changelog
=========
0.1
---
* First version
+9
View File
@@ -0,0 +1,9 @@
Starter App
===========
* Ruby 2
* Rails 4
* PostgreSQL
* Twitter Bootstrap
* Heroku
* RSpec
+1
View File
@@ -0,0 +1 @@
0.1
+8
View File
@@ -0,0 +1,8 @@
require 'spec_helper'
describe 'Home' do
it "shows Hello World message" do
visit root_path
expect(page).to have_content I18n.t('hello')
end
end