Skip to content

Commit

Permalink
Bumped VERSION to 0.1.3
Browse files Browse the repository at this point in the history
Updated CHANGELOG
Added LICENSE file
Added Travis CI
Added Coveralls
Added badges
Removed unneeded gem
  • Loading branch information
cesidio committed Apr 20, 2013
1 parent 7e3fe4e commit 02b08a7
Show file tree
Hide file tree
Showing 10 changed files with 89 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .coveralls.yml
@@ -0,0 +1,2 @@
repo_token: A7Lqg8jeO7rhmK7XVR8Suagc5LzpuM2pZ

8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: ruby
rvm:
- 2.0.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- psql -c 'create database starterapp_test;' -U postgres
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
Changelog
=========

0.1.3
-----
* Added LICENSE file
* Added Travis CI
* Added Coveralls
* Added badges
* Removed unneeded gem

0.1.2
-----
* Trying to solve assets issue on heroku
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -19,7 +19,6 @@ gem 'pg'
# Performance and Exception management
gem 'airbrake'
gem 'newrelic_rpm'
gem 'newrelic_moped'

# Security
gem 'secure_headers'
Expand Down
5 changes: 0 additions & 5 deletions Gemfile.lock
Expand Up @@ -137,11 +137,7 @@ GEM
mime-types (1.22)
minitest (4.7.2)
mono_logger (1.0.1)
moped (1.4.5)
multi_json (1.7.2)
newrelic_moped (0.0.6)
moped
newrelic_rpm (~> 3.6.0)
newrelic_rpm (3.6.0.83)
nokogiri (1.5.9)
pg (0.15.1)
Expand Down Expand Up @@ -305,7 +301,6 @@ DEPENDENCIES
launchy
less-rails
meta_request
newrelic_moped
newrelic_rpm
nokogiri
pg
Expand Down
65 changes: 65 additions & 0 deletions LICENSE
@@ -0,0 +1,65 @@
Copyright (c) 2013, diowa
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


airbrake is licensed by Airbrake

FontAwesome is licensed under the MIT License

FontAwesome font is licensed under the SIL Open Font License

FontAwesome pictograms are licensed under the CC BY 3.0 License

haml is licensed under the MIT License

google-analytics-rails is licensed under the MIT license

http_accept_language is licensed under the MIT License

i18n-js is licensed under the MIT License

jquery-rails is licensed under the MIT License

jquery is licensed under the MIT License

kaminari is licensed under the MIT License

newrelic_rpm is licensed by New Relic

nokogiri is licensed under the MIT License

pg is licensed under the 2-clause BSD License

resque is licensed under the MIT License

rabl is licensed under the MIT License

rest-client is licensed under the MIT License

simpleconfig is licensed under the MIT License

Twitter Bootstrap is licensed under the Apache License, Version 2.0

unicorn is licensed under the GPLv2 License

validates_timeliness is licensed under the MIT License
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
Starter App
Starter App [![Build Status](https://travis-ci.org/diowa/ruby2-rails4-bootstrap-heroku.png?branch=master)](https://travis-ci.org/diowa/ruby2-rails4-bootstrap-heroku) [![Dependency Status](https://gemnasium.com/diowa/ruby2-rails4-bootstrap-heroku.png)](https://gemnasium.com/diowa/ruby2-rails4-bootstrap-heroku) [![Code Climate](https://codeclimate.com/github/diowa/ruby2-rails4-bootstrap-heroku.png)](https://codeclimate.com/github/diowa/ruby2-rails4-bootstrap-heroku) [![Coverage Status](https://coveralls.io/repos/diowa/ruby2-rails4-bootstrap-heroku/badge.png?branch=master)](https://coveralls.io/r/diowa/ruby2-rails4-bootstrap-heroku)
===========

* Ruby 2
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.2
0.1.3
1 change: 1 addition & 0 deletions app/views/pages/home.html.haml
@@ -1 +1,2 @@
- title t('hello')
%h1= t('hello')
6 changes: 3 additions & 3 deletions config/database.yml
Expand Up @@ -19,7 +19,7 @@ development:
encoding: unicode
database: starterapp_development
pool: 5
username: starterapp
username: postgres
password:

# Connect on a TCP socket. Omitted by default since the client uses a
Expand Down Expand Up @@ -48,13 +48,13 @@ test:
encoding: unicode
database: starterapp_test
pool: 5
username: starterapp
username: postgres
password:

production:
adapter: postgresql
encoding: unicode
database: starterapp_production
pool: 5
username: starterapp
username: postgres
password:

0 comments on commit 02b08a7

Please sign in to comment.