Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renderedtext/testapp-private-gems
https://github.com/renderedtext/testapp-private-gems
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/renderedtext/testapp-private-gems
- Owner: renderedtext
- License: mit
- Created: 2013-09-03T08:35:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-03T12:56:14.000Z (over 11 years ago)
- Last Synced: 2023-03-11T00:53:51.423Z (almost 2 years ago)
- Language: Ruby
- Size: 168 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
- License: LICENSE
Awesome Lists containing this project
README
h1. base-app
A base Rails application. Features a user and admin system with Facebook login. It is instadeployable to Heroku.
Here's one "deployed to heroku":http://rtbaseapp.herokuapp.com/. *Note*: Environment variables for Facebook login are not set so logging in that way will not work.
h2. Gemfile
* "pg":http://rubygems.org/gems/pg for PostgreSQL
* "jQuery":https://github.com/rails/jquery-ujs
* "Devise":https://github.com/plataformatec/devise for authenticating users with "OmniAuth":https://github.com/intridea/omniauth for Facebook login
* "Kaminari":https://github.com/amatsuda/kaminari for pagination
* "CarrierWave":https://github.com/jnicklas/carrierwave for file uploads
* "MetaSearch":https://github.com/ernie/meta_search for searching usersFor testing and development:
* "Rspec":https://github.com/dchelimsky/rspec
* "Cucumber":https://github.com/aslakhellesoy/cucumber with "Capybara":https://github.com/jnicklas/capybara
* "Database Cleaner":https://github.com/bmabey/database_cleaner
* "Debugger":https://github.com/cldwalker/debugger
* "Factory Girl":https://github.com/thoughtbot/factory_girl_rails
* "Awesome Print":https://github.com/michaeldv/awesome_print
* "Email Spec":https://github.com/bmabey/email-spec
* "Shoulda":https://github.com/thoughtbot/shoulda
* "Thin":https://github.com/macournoyer/thinh2. Setup
* Make sure you have rvm and Ruby 1.9.2.
* Install dependencies from Gemfile: @bundle install --path vendor/bundle@.
* Create your @config/database.yml@, create the database and run the migrations.
* For Facebook login to work, export environment variables @FACEBOOK_APP_ID@ and @FACEBOOK_APP_SECRET@.h2. License
base-app is Copyright © 2012 Rendered Text. It is free software, and may be redistributed under the terms specified in the LICENSE file.