Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
giamir committed Jan 3, 2016
1 parent bd537cc commit 763bec6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Chitter Challenge [![Build Status](https://travis-ci.org/giamir/chitter-challenge.svg?branch=master)](https://travis-ci.org/giamir/chitter-challenge)
Chitter Challenge [![Build Status](https://travis-ci.org/giamir/chitter-challenge.svg?branch=master)](https://travis-ci.org/giamir/chitter-challenge) [![Coverage Status](https://coveralls.io/repos/giamir/chitter-challenge/badge.svg?branch=master&service=github)](https://coveralls.io/github/giamir/chitter-challenge?branch=master)
=================

We are going to write a little Twitter clone that will allow the users to post messages to a public stream.
Expand Down Expand Up @@ -32,8 +32,16 @@ So that I can better appreciate the context of a peep
I want to see the time at which it was made
```

Screenshot
----------
![Alt text](screenshot.jpg 'screenshot app')

Installation
------------
You can try the app remotely:
>[https://chitter-giamir.herokuapp.com](https://chitter-giamir.herokuapp.com)
or install it locally:
```
$ git clone git@github.com:giamir/chitter-challenge.git
$ cd chitter-challenge
Expand All @@ -43,6 +51,15 @@ $ rake db:migrate
$ rackup
```

Technologies
-------------
- Ruby
- Sinatra
- Postgres
- DataMapper
- Bootstrap


Contributors
-------------
[Giamir Buoncristiani](https://github.com/giamir)
2 changes: 1 addition & 1 deletion app/controllers/users.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Chitter < Sinatra::Base

get '/users/:username' do
@user = User.first(username: params[:username])
@peeps = @user.peeps
@peeps = @user.peeps(order: [ :created_at.desc ])
erb :'users/user'
end
end
Binary file added screenshot.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 763bec6

Please sign in to comment.