Files
9minutes/Gemfile
T

61 lines
1.1 KiB
Ruby
Raw Normal View History

2011-04-20 15:56:04 +02:00
source 'http://rubygems.org'
gem 'rake' #, '0.8.7'
2011-04-20 15:56:04 +02:00
gem 'rails', '3.0.5'
2011-04-20 17:09:55 +02:00
gem 'jquery-rails', '>= 0.2.6'
2011-04-20 15:56:04 +02:00
2011-06-08 03:49:13 +02:00
gem 'sqlite3'
gem 'sqlite3-ruby', :require => 'sqlite3'
# templating
gem 'haml-rails'
2011-06-06 14:25:16 +02:00
gem "sass"
# for searching youtube
2011-06-09 06:22:13 +02:00
gem "youtube_it"
# for using last.fm api
gem 'typhoeus'
2011-06-08 03:49:13 +02:00
# for object caching
gem 'redis'
2011-06-10 02:12:43 +02:00
gem 'redis-namespace'
# for using 7digital api
gem '7digital'
# for asset packaging
2011-06-12 16:56:39 +02:00
gem 'closure'
gem 'jammit', :git => "git://github.com/documentcloud/jammit.git"
gem 'win32-open3-19' # win32-open3 in order to use POpen4 on Win32 (dependency of jammit)
# for converting json/xml to object
gem 'json'
gem 'hashie'
2011-06-08 03:49:13 +02:00
# authentication
gem 'devise'
gem 'oa-oauth', :require => 'omniauth/oauth'
gem 'oa-openid', :require => 'omniauth/openid'
# for file upload ( -> avatar )
gem 'paperclip', '~> 2.3'
2011-05-10 10:16:16 +02:00
# youtube search
gem 'youtube_it'
2011-06-05 22:35:28 +02:00
group :development, :test do
# for html2haml
2011-06-05 22:35:28 +02:00
# gem 'hpricot'
gem 'ruby_parser'
2011-06-05 22:35:28 +02:00
# alternative servers (because openID URIs are too long for WEBRick)
gem 'mongrel', '1.2.0.pre2'
2011-06-08 03:49:13 +02:00
end
2011-04-20 15:56:04 +02:00
# Deploy with Capistrano
# gem 'capistrano'