fatkitten/Gemfile

23 lines
247 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'
# 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-09 15:04:03 +07:00
# Sugar
2013-07-08 21:04:59 +07:00
gem 'haml'
gem 'sass'
2013-07-09 14:53:49 +07:00
2013-07-09 15:04:03 +07:00