Files
9minutes/Gemfile
T

53 lines
856 B
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"
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'
# for using 7digital api
gem '7digital'
# 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'