1
0
Fork 0
fatkitten/Gemfile

31 lines
374 B
Ruby
Raw Permalink Normal View History

2013-07-08 14:04:59 +00:00
source 'https://rubygems.org'
2013-07-09 08:04:03 +00:00
# Application / Server
2013-07-08 14:04:59 +00:00
gem 'sinatra'
2013-07-09 08:04:03 +00:00
gem 'shotgun'
gem 'unicorn'
2013-07-12 10:40:26 +00:00
gem 'rake'
2013-07-09 08:04:03 +00:00
# Database
2013-07-08 14:04:59 +00:00
gem 'sequel'
gem 'pg'
2013-07-09 08:04:03 +00:00
# Encryption / Decryption
gem 'encryptor'
# Syntax Highlighting
2013-07-08 14:04:59 +00:00
gem 'pygments.rb'
2013-07-10 09:46:37 +00:00
# JS
gem 'execjs'
gem 'therubyracer'
2013-07-09 08:04:03 +00:00
2013-07-12 10:40:26 +00:00
# Assets & Sugar
gem 'sinatra-assetpack'
2013-07-10 09:46:37 +00:00
gem 'coffee-script'
gem 'slim'
gem 'stylus'
2013-07-12 10:40:26 +00:00
# Deployment
gem 'mina'