1
0
Fork 0
fatkitten/Gemfile

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