Skip to content

Integralist/Passage

Repository files navigation

#Passage

Live example: http://furious-wind-9309.herokuapp.com/
Hosting: Heroku

##Description

Since learning Ruby (along with the Sinatra framework) I wanted to set-up a template project that I could refer to whenever starting up a new web based Ruby project.

The name "Passage" is an associated word related to "routing" (which in principle is what the Sinatra framework is most notorious for).

For an introduction to Ruby then read my blog post here

For more information on building a site using Ruby and Sinatra then read my blog post here

##Features

  • Object-Oriented CSS
    (no framework provided - any CSS I've written will be object-oriented with additional assistance from the Sass CSS pre-processor)
  • Modular JavaScript
    (via AMD and RequireJs)
  • Built to be modular
    (via use of ERB templates)
  • Can load content from Markdown files
  • Performance conscientious
  • Mobile First approach
  • Useful utilities pre-packaged
    (well, only one Rack::Utils's escape method - but you have facility to add more)

##Requirements

  • Bundler (gem install bundler)
  • Sinatra (gem install sinatra)
  • Thin (gem install thin)
  • Red Carpet (gem install redcarpet)
  • Shotgun (gem install shotgun - for testing purposes: it reloads server on every request)

##TODO

  • Look to make loading of Markdown files more 'dynamic'
  • Look at automatically building an XML site map

##Heroku Hosting

  • Set-up account (heroku.com)
  • Install toolbelt (toolbelt.heroku.com)
  • Open your Command Line Interface (e.g. Terminal on Mac OS) and enter:
    • heroku login (follow instructions)
    • If you need add additional SSH keys then use: heroku keys:add
    • heroku create --stack cedar (you can also do: heroku create yourappname --stack cedar)
  • Create a config.ru file and add the following content:
require 'app' # app being the name of your main file that initializes your web application
run Sinatra::Application
  • Create a Gemfile (no file extension) and add the content:
source 'http://rubygems.org'
gem 'sinatra', '1.3.2'
gem 'thin', '1.3.1'
gem 'redcarpet', '2.1.1'

Open Command Line Interface and enter:

  • bundle install

  • Create a Procfile (no file extension) and add the content:
    web: bundle exec ruby app.rb -p $PORT

     e.g.  
     `touch Procfile`  
     `echo web: bundle exec ruby app.rb -p $PORT > Procfile`  
    
  • Commit your files using Git (for help with Git read this)

  • If you haven't created a remote yet then do so now: git remote add heroku [email protected]:xxxxx.git

  • git push heroku master

  • heroku open will open your default browser to the relevant URL

About

Ruby/Sinatra Project Template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages