Project

frame

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Frame will setup various Ruby on Rails projects with an instantly usable application. The user can choose if they want authentication with devise, omniauth, and uses active_admin.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Frame

Frame is used to instantly setup websites with just a couple of commands. Frame uses several other gems to build the websites. Once they are created, then they can be fully customized and grow independent of frame.

Getting Started

To just see what frame was designed to do, create a new project:

rails new tester
cd tester

You must add frame as a gem:

# Gemfile
gem 'frame'#, :path => '/home/admin/frame/'

Then run the bundler:

bundle

To just see what frame was designed to do run (you must hit y/a for the overwrites):

rails generate frame:all
rails generate frame:omniauth
rails server