fatkitten/Gemfile

31 lines
374 B
Ruby
Raw Normal View History

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